1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/test/EioHandleTest.php
Aaron Piotrowski c6e6c32aaf Drop strict types
Dropping strict types so it is not enforced in callbacks provided by application code.
2016-12-29 20:59:59 -06:00

44 lines
1.2 KiB
PHP

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