summaryrefslogtreecommitdiff
path: root/tests/it_url_slow.t
diff options
context:
space:
mode:
authorUrban Müller2015-08-10 16:01:12 +0200
committerUrban Müller2015-08-10 16:01:12 +0200
commit21205b1d20a4c0325e3b4484f1501078f6dd6846 (patch)
tree1be02b63c03c3c41deb7896742200218b284a6e0 /tests/it_url_slow.t
parent160f67d68300cb5bc49f305c16c0d4da5d551821 (diff)
downloaditools-21205b1d20a4c0325e3b4484f1501078f6dd6846.tar.gz
itools-21205b1d20a4c0325e3b4484f1501078f6dd6846.tar.bz2
itools-21205b1d20a4c0325e3b4484f1501078f6dd6846.zip
php 5.3 compatibility
Diffstat (limited to 'tests/it_url_slow.t')
-rwxr-xr-xtests/it_url_slow.t12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/it_url_slow.t b/tests/it_url_slow.t
index aa85a80..22aae10 100755
--- a/tests/it_url_slow.t
+++ b/tests/it_url_slow.t
@@ -11,18 +11,18 @@ handle_server(
is(
it_url::get('http://localhost:8000/short_sleep'),
"Testserver output after short sleep",
- 'it_url::get() waits for 4 seconds',
+ 'it_url::get() waits for 4 seconds'
)
);
$start = microtime(true);
$res = ok(
!it_url::get(array('url' => 'http://localhost:8000/long_sleep', 'timeout' => 5, 'retries' => 0)),
- 'it_url::get() fails after timeout seconds with no output',
+ 'it_url::get() fails after timeout seconds with no output'
);
$res2 = is(
intval(microtime(true) - $start), 5,
- '... and fails as soon as timeout is surpassed',
+ '... and fails as soon as timeout is surpassed'
);
sleep(1); # wait for testserver
$output = server_output();
@@ -33,14 +33,14 @@ handle_server(
is(
it_url::get('http://localhost:8000/slow_response'),
join('', it::map('"Testserver slow output $v\n"', range(0, 5))),
- 'it_url::get() waits for slow response with continuous output',
+ 'it_url::get() waits for slow response with continuous output'
)
);
$start = microtime(true);
$res = ok(
!it_url::get(array('url' => 'http://localhost:8000/slow_response', 'totaltimeout' => 5, 'retries' => 0)),
- 'it_url::get() fails for response slower than totaltimeout',
+ 'it_url::get() fails for response slower than totaltimeout'
);
$res2 = is(
intval(microtime(true) - $start), 5,
@@ -54,7 +54,7 @@ if (!$res || !$res2)
handle_server(
ok(
it_url::get(U('http://localhost:8000/repeat', 'string' => "abc", 'num' => 1024 * 1024)) == str_repeat("abc", 1024 * 1024),
- 'it_url::get() handles large response',
+ 'it_url::get() handles large response'
)
);