ext-uv/tests/320-fs-sendfile.phpt
Shuhei Tanuma 515e4071fa add uv_fs_sendfile test case.
TODO: obtain file handle from php_uv resource.
2012-07-15 00:45:06 +09:00

15 lines
405 B
PHP

--TEST--
Check for fs_send_file
--FILE--
<?php
define("FIXTURE_PATH", dirname(__FILE__) . "/fixtures/hello.data");
uv_fs_open(uv_default_loop(), FIXTURE_PATH, UV::O_RDONLY, 0, function($read_fd){
$std_err = 1; // phpt doesn't catch stdout as uv_fs_sendfile uses stdout directly.
uv_fs_sendfile(uv_default_loop(),$std_err, $read_fd, 0, 6, function($result){
});
});
uv_run();
--EXPECT--
Hello