X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fclient029.phpt;h=a95508c27bc47974817ffe5c4c68a28fa9e193f2;hp=e2cd6450f41b7d31f94b8d982022c2da790b0daa;hb=HEAD;hpb=e3976774f27b4129cbfd7d227aaa7e177f1b735c diff --git a/tests/client029.phpt b/tests/client029.phpt index e2cd645..a95508c 100644 --- a/tests/client029.phpt +++ b/tests/client029.phpt @@ -1,13 +1,13 @@ --TEST-- client curl user handler --SKIPIF-- - +?> --FILE-- -evbase = $evbase; $this->client = $client; } - + function init($run) { $this->run = $run; } - + function timer(int $timeout_ms) { echo "T"; if (isset($this->timeout)) { @@ -44,10 +44,10 @@ class UserHandler implements http\Client\Curl\User $this->timeout->add($timeout_ms/1000); } } - + function socket($socket, int $action) { echo "S"; - + switch ($action) { case self::POLL_NONE: break; @@ -58,7 +58,7 @@ class UserHandler implements http\Client\Curl\User unset($this->ios[(int) $socket]); } break; - + default: $ev = 0; if ($action & self::POLL_IN) { @@ -68,16 +68,16 @@ class UserHandler implements http\Client\Curl\User $ev |= Event::WRITE; } if (isset($this->ios[(int) $socket])) { - $this->ios[(int) $socket]->set($this->evbase, + $this->ios[(int) $socket]->set($this->evbase, $socket, $ev, $this->onEvent($socket)); } else { - $this->ios[(int) $socket] = new Event($this->evbase, + $this->ios[(int) $socket] = new Event($this->evbase, $socket, $ev, $this->onEvent($socket)); } break; } } - + function onEvent($socket) { return function($watcher, $events) use($socket) { $action = 0; @@ -95,15 +95,15 @@ class UserHandler implements http\Client\Curl\User } }; } - + function once() { throw new BadMethodCallException("this test uses EventBase::loop()"); } - + function wait(int $timeout_ms = null) { throw new BadMethodCallException("this test uses EventBase::loop()"); } - + function send() { throw new BadMethodCallException("this test uses EventBase::loop()"); } @@ -128,5 +128,5 @@ server("proxy.inc", function($port) { ===DONE=== --EXPECTREGEX-- Test -([ST]+U+T*)+int\(200\) +T*[ST]+U+T*int\(200\) ===DONE===