1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 11:54:54 +01:00
file/test/UvDriverTest.php

38 lines
791 B
PHP
Raw Permalink Normal View History

<?php
2015-07-11 03:59:39 +02:00
2015-08-05 16:55:56 +02:00
namespace Amp\File\Test;
2015-07-11 03:59:39 +02:00
2017-06-20 19:37:41 +02:00
use Amp\File;
use Amp\Loop;
2017-06-20 19:37:41 +02:00
use function Amp\asyncCall;
class UvDriverTest extends DriverTest
{
protected function execute(callable $cb)
{
2017-06-20 19:37:41 +02:00
if (!\extension_loaded("uv")) {
2015-07-17 16:27:38 +02:00
$this->markTestSkipped(
"php-uv extension not loaded"
);
}
2017-06-20 19:37:41 +02:00
$loop = new Loop\UvDriver;
Loop::set($loop);
Loop::run(function () use ($cb, $loop) {
File\filesystem(new File\UvDriver($loop));
asyncCall($cb);
});
2015-07-11 03:59:39 +02:00
}
/**
* @dataProvider readlinkPathProvider
*
* @param \Closure $linkResolver
*/
public function testReadlinkError(\Closure $linkResolver)
{
$this->markTestSkipped('UvDriver Test Skipped: Causes Crash');
}
2015-08-08 16:09:07 +02:00
}