2022-12-24 14:36:39 +01:00
|
|
|
<?php declare(strict_types=1);
|
2020-07-21 18:06:19 +02:00
|
|
|
/**
|
|
|
|
* Loop test.
|
|
|
|
*
|
|
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
|
|
* @copyright 2016-2020 Daniil Gentili <daniil@daniil.it>
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace danog\Loop\Test;
|
|
|
|
|
2020-07-21 21:45:22 +02:00
|
|
|
use danog\Loop\Loop;
|
2020-07-21 19:53:57 +02:00
|
|
|
use danog\Loop\Test\Interfaces\BasicInterface;
|
2020-07-21 18:06:19 +02:00
|
|
|
use danog\Loop\Test\Traits\Basic;
|
2020-07-21 19:53:57 +02:00
|
|
|
use danog\Loop\Test\Traits\BasicException;
|
2020-07-21 18:06:19 +02:00
|
|
|
|
|
|
|
use function Amp\delay;
|
|
|
|
|
2020-07-21 19:53:57 +02:00
|
|
|
class LoopTest extends Fixtures
|
2020-07-21 18:06:19 +02:00
|
|
|
{
|
2023-01-24 03:49:03 +01:00
|
|
|
public static function waitTick(): void
|
|
|
|
{
|
|
|
|
$f = new \Amp\DeferredFuture;
|
|
|
|
\Revolt\EventLoop::defer(fn () => $f->complete());
|
|
|
|
$f->getFuture()->await();
|
|
|
|
}
|
2020-07-21 18:06:19 +02:00
|
|
|
/**
|
|
|
|
* Test basic loop.
|
|
|
|
*/
|
2023-01-23 16:17:49 +01:00
|
|
|
public function testLoop(): void
|
2020-07-21 18:06:19 +02:00
|
|
|
{
|
2023-01-23 16:17:49 +01:00
|
|
|
$loop = new class() extends Loop implements BasicInterface {
|
|
|
|
use Basic;
|
|
|
|
};
|
|
|
|
$this->assertPreStart($loop);
|
|
|
|
$this->assertTrue($loop->start());
|
|
|
|
$this->assertAfterStart($loop);
|
|
|
|
|
|
|
|
delay(0.110);
|
|
|
|
|
|
|
|
$this->assertFinal($loop);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Test basic loop.
|
|
|
|
*/
|
|
|
|
public function testLoopStopFromInside(): void
|
|
|
|
{
|
|
|
|
$loop = new class() extends Loop implements BasicInterface {
|
|
|
|
use Basic;
|
|
|
|
/**
|
|
|
|
* Loop implementation.
|
|
|
|
*/
|
|
|
|
public function loop(): ?float
|
|
|
|
{
|
|
|
|
$this->inited = true;
|
|
|
|
delay(0.1);
|
|
|
|
$this->stop();
|
|
|
|
$this->ran = true;
|
2023-01-24 03:49:03 +01:00
|
|
|
return 1000.0;
|
2023-01-23 16:17:49 +01:00
|
|
|
}
|
|
|
|
};
|
2020-07-21 19:12:11 +02:00
|
|
|
$this->assertPreStart($loop);
|
|
|
|
$this->assertTrue($loop->start());
|
|
|
|
$this->assertAfterStart($loop);
|
|
|
|
|
2022-12-24 17:30:32 +01:00
|
|
|
delay(0.110);
|
2020-07-21 19:12:11 +02:00
|
|
|
|
|
|
|
$this->assertFinal($loop);
|
|
|
|
}
|
|
|
|
/**
|
2020-07-21 19:53:57 +02:00
|
|
|
* Test basic exception in loop.
|
2020-07-21 19:12:11 +02:00
|
|
|
*/
|
2023-01-23 16:17:49 +01:00
|
|
|
public function testException(): void
|
2020-07-21 19:12:11 +02:00
|
|
|
{
|
2023-01-23 16:17:49 +01:00
|
|
|
$loop = new class() extends Loop implements BasicInterface {
|
|
|
|
use BasicException;
|
|
|
|
};
|
2023-01-24 03:49:03 +01:00
|
|
|
$this->expectException(\Revolt\EventLoop\UncaughtThrowable::class);
|
2020-07-21 18:06:19 +02:00
|
|
|
|
2020-07-21 19:53:57 +02:00
|
|
|
$this->assertPreStart($loop);
|
|
|
|
$this->assertTrue($loop->start());
|
2023-01-24 03:49:03 +01:00
|
|
|
self::waitTick();
|
2020-07-21 18:06:19 +02:00
|
|
|
$this->assertFalse($loop->isRunning());
|
|
|
|
|
2020-07-21 19:12:11 +02:00
|
|
|
$this->assertTrue($loop->inited());
|
2020-07-21 21:45:22 +02:00
|
|
|
|
2020-07-21 19:12:11 +02:00
|
|
|
$this->assertEquals(1, $loop->startCounter());
|
|
|
|
$this->assertEquals(1, $loop->endCounter());
|
2022-12-24 18:49:23 +01:00
|
|
|
}
|
2020-07-21 18:06:19 +02:00
|
|
|
}
|