mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp as amp;
|
|
use Amp\File as file;
|
|
|
|
class EioHandleTest extends HandleTest {
|
|
protected function setUp() {
|
|
if (\extension_loaded("eio")) {
|
|
amp\reactor(amp\driver());
|
|
file\filesystem(new file\EioDriver);
|
|
parent::setUp();
|
|
} else {
|
|
$this->markTestSkipped(
|
|
"eio extension not loaded"
|
|
);
|
|
}
|
|
}
|
|
|
|
public function testQueuedWritesOverrideEachOtherIfNotWaitedUpon() {
|
|
amp\run(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);
|
|
});
|
|
}
|
|
}
|