1
0
mirror of https://github.com/danog/loop.git synced 2024-11-27 04:14:50 +01:00
loop/test/LoopTest.php

109 lines
2.7 KiB
PHP
Raw Normal View History

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;
use danog\Loop\ResumableLoop;
use danog\Loop\ResumableSignalLoop;
use danog\Loop\SignalLoop;
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
{
/**
* Test basic loop.
*
* @param BasicInterface $loop Loop
*
2022-12-24 15:03:00 +01:00
*
2020-07-21 18:06:19 +02:00
*
* @dataProvider provideBasic
*/
2022-12-24 15:03:00 +01:00
public function testLoop(BasicInterface $loop): void
2020-07-21 18:06:19 +02: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
*
* @param BasicInterface $loop Loop
*
*
2020-07-21 19:53:57 +02:00
* @dataProvider provideBasicExceptions
2020-07-21 19:12:11 +02:00
*/
2022-12-24 18:30:29 +01:00
/*public function testException(BasicInterface $loop): void
2020-07-21 19:12:11 +02:00
{
2020-07-21 19:53:57 +02:00
$this->expectException(\RuntimeException::class);
2020-07-21 18:06:19 +02:00
2020-07-21 19:53:57 +02:00
$this->assertPreStart($loop);
$this->assertTrue($loop->start());
2022-12-24 18:16:45 +01:00
delay(0.001);
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:30:29 +01:00
}*/
2020-07-21 19:53:57 +02:00
2020-07-21 18:06:19 +02:00
/**
* Provide loop implementations.
*
*/
public function provideBasic(): array
{
return [
[new class() extends Loop implements BasicInterface {
use Basic;
}],
[new class() extends SignalLoop implements BasicInterface {
use Basic;
}],
[new class() extends ResumableLoop implements BasicInterface {
use Basic;
}],
[new class() extends ResumableSignalLoop implements BasicInterface {
use Basic;
2020-07-21 19:12:11 +02:00
}]
];
}
/**
2020-07-21 19:53:57 +02:00
* Provide loop implementations.
2020-07-21 19:12:11 +02:00
*
*/
2020-07-21 19:53:57 +02:00
public function provideBasicExceptions(): array
2020-07-21 19:12:11 +02:00
{
return [
2020-07-21 19:53:57 +02:00
[new class() extends Loop implements BasicInterface {
use BasicException;
2020-07-21 18:06:19 +02:00
}],
2020-07-21 19:53:57 +02:00
[new class() extends SignalLoop implements BasicInterface {
use BasicException;
}],
[new class() extends ResumableLoop implements BasicInterface {
use BasicException;
2020-07-21 18:06:19 +02:00
}],
2020-07-21 19:53:57 +02:00
[new class() extends ResumableSignalLoop implements BasicInterface {
use BasicException;
}]
2020-07-21 18:06:19 +02:00
];
}
}