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;
|
2023-01-24 12:23:10 +01:00
|
|
|
use Revolt\EventLoop;
|
|
|
|
use RuntimeException;
|
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 12:23:10 +01:00
|
|
|
/**
|
|
|
|
* Execute pre-start assertions.
|
|
|
|
*/
|
|
|
|
protected function assertPreStart(BasicInterface&Loop $loop): void
|
2023-01-24 03:49:03 +01:00
|
|
|
{
|
2023-01-24 12:23:10 +01:00
|
|
|
$this->assertEquals(self::LOOP_NAME, "$loop");
|
|
|
|
|
|
|
|
$this->assertFalse($loop->isRunning());
|
|
|
|
$this->assertFalse($loop->ran());
|
|
|
|
|
|
|
|
$this->assertFalse($loop->inited());
|
|
|
|
|
|
|
|
$this->assertEquals(0, $loop->startCounter());
|
|
|
|
$this->assertEquals(0, $loop->endCounter());
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Execute after-start assertions.
|
|
|
|
*
|
|
|
|
* @param bool $running Whether we should expect the loop to be running
|
|
|
|
* @param bool $running Whether we should actually start the loop by returning control to the event loop
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
protected function assertAfterStart(BasicInterface&Loop $loop, bool $running = true, bool $start = true): void
|
|
|
|
{
|
|
|
|
if ($start) {
|
|
|
|
self::waitTick();
|
|
|
|
}
|
|
|
|
$this->assertTrue($loop->inited());
|
|
|
|
|
|
|
|
if ($running) {
|
|
|
|
$this->assertFalse($loop->ran());
|
|
|
|
}
|
|
|
|
$this->assertEquals($running, $loop->isRunning());
|
|
|
|
|
|
|
|
$this->assertEquals(1, $loop->startCounter());
|
|
|
|
$this->assertEquals($running ? 0 : 1, $loop->endCounter());
|
|
|
|
|
|
|
|
$this->assertEquals($running, !$loop->start());
|
2023-01-24 12:31:57 +01:00
|
|
|
$this->assertEquals($running, !$loop->isPaused());
|
2023-01-24 12:23:10 +01:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Execute final assertions.
|
|
|
|
*/
|
|
|
|
protected function assertFinal(BasicInterface&Loop $loop): void
|
|
|
|
{
|
|
|
|
$this->assertTrue($loop->ran());
|
|
|
|
$this->assertFalse($loop->isRunning());
|
|
|
|
|
|
|
|
$this->assertTrue($loop->inited());
|
|
|
|
|
|
|
|
$this->assertEquals(1, $loop->startCounter());
|
|
|
|
$this->assertEquals(1, $loop->endCounter());
|
2023-01-24 03:49:03 +01:00
|
|
|
}
|
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 12:23:10 +01:00
|
|
|
|
|
|
|
$e_thrown = null;
|
|
|
|
EventLoop::setErrorHandler(function (\RuntimeException $e) use (&$e_thrown): void {
|
|
|
|
$e_thrown = $e;
|
|
|
|
});
|
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());
|
2023-01-24 12:23:10 +01:00
|
|
|
|
|
|
|
$this->assertInstanceOf(RuntimeException::class, $e_thrown);
|
2023-01-24 12:31:57 +01:00
|
|
|
|
|
|
|
EventLoop::setErrorHandler(null);
|
2022-12-24 18:49:23 +01:00
|
|
|
}
|
2020-07-21 18:06:19 +02:00
|
|
|
}
|