mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\File as file;
|
|
use Amp\Loop;
|
|
|
|
class UvHandleTest extends HandleTest {
|
|
protected function execute(callable $cb) {
|
|
if (\extension_loaded("uv")) {
|
|
$loop = new Loop\UvDriver;
|
|
Loop::set($loop);
|
|
Loop::run(function () use ($cb, $loop) {
|
|
\Amp\File\filesystem(new \Amp\File\UvDriver($loop));
|
|
\Amp\Promise\rethrow(new \Amp\Coroutine($cb()));
|
|
});
|
|
} else {
|
|
$this->markTestSkipped(
|
|
"php-uv extension not loaded"
|
|
);
|
|
}
|
|
}
|
|
|
|
public function testQueuedWritesOverrideEachOtherIfNotWaitedUpon() {
|
|
$this->execute(function () {
|
|
$path = Fixture::path() . "/write";
|
|
$handle = (yield file\open($path, "c+"));
|
|
$this->assertSame(0, $handle->tell());
|
|
|
|
$write1 = $handle->write("foo");
|
|
$write2 = $handle->write("bar");
|
|
|
|
yield \Amp\Promise\all([$write1, $write2]);
|
|
|
|
$handle->seek(0);
|
|
$contents = (yield $handle->read(8192));
|
|
$this->assertSame(3, $handle->tell());
|
|
$this->assertTrue($handle->eof());
|
|
$this->assertSame("bar", $contents);
|
|
|
|
yield $handle->close();
|
|
yield file\unlink($path);
|
|
});
|
|
}
|
|
}
|