1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/test/UvHandleTest.php

45 lines
1.3 KiB
PHP
Raw Normal View History

2016-08-24 07:01:41 +02:00
<?php declare(strict_types = 1);
2015-08-13 01:02:41 +02:00
namespace Amp\File\Test;
use Amp as amp;
use Amp\File as file;
class UvHandleTest extends HandleTest {
2016-07-21 01:33:03 +02:00
protected function lRun(callable $cb) {
2015-08-13 01:02:41 +02:00
if (\extension_loaded("uv")) {
2016-07-21 01:33:03 +02:00
$loop = new \Amp\Loop\UvLoop;
\Interop\Async\Loop::execute(function() use ($cb, $loop) {
\Amp\File\filesystem(new \Amp\File\UvDriver($loop));
\Amp\rethrow(new \Amp\Coroutine($cb()));
}, $loop);
2015-08-13 01:02:41 +02:00
} else {
$this->markTestSkipped(
"php-uv extension not loaded"
);
}
}
public function testQueuedWritesOverrideEachOtherIfNotWaitedUpon() {
2016-07-21 01:33:03 +02:00
$this->lRun(function () {
2015-08-13 01:02:41 +02:00
$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);
});
}
}