1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/test/EioHandleTest.php
2017-06-16 18:12:42 -05:00

43 lines
1.2 KiB
PHP

<?php
namespace Amp\File\Test;
use Amp\File as file;
class EioHandleTest extends HandleTest {
protected function execute(callable $cb) {
if (\extension_loaded("eio")) {
\Amp\Loop::run(function() use ($cb) {
\Amp\File\filesystem(new \Amp\File\EioDriver);
\Amp\Promise\rethrow(new \Amp\Coroutine($cb()));
});
} else {
$this->markTestSkipped(
"eio 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);
});
}
}