1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/test/Cancellation/SignalCancellationTest.php
2022-06-14 18:21:55 -05:00

56 lines
1.6 KiB
PHP

<?php
namespace Amp\Cancellation;
use Amp\CancelledException;
use Amp\PHPUnit\AsyncTestCase;
use Amp\SignalCancellation;
use Amp\SignalException;
use Revolt\EventLoop;
use function Amp\delay;
/**
* @requires ext-pcntl
* @requires ext-posix
*/
class SignalCancellationTest extends AsyncTestCase
{
public function testSignal(): void
{
$line = __LINE__ + 1;
$cancellation = new SignalCancellation([\SIGUSR1, \SIGUSR2]);
self::assertFalse($cancellation->isRequested());
EventLoop::defer(function (): void {
\posix_kill(\getmypid(), \SIGUSR1);
});
delay(0.1);
self::assertTrue($cancellation->isRequested());
try {
$cancellation->throwIfRequested();
} catch (CancelledException $exception) {
self::assertInstanceOf(SignalException::class, $exception->getPrevious());
$message = $exception->getPrevious()->getMessage();
if ((int) \ini_get('zend.assertions') > 0) {
self::assertStringContainsString('SignalCancellation was created here', $message);
self::assertStringContainsString('SignalCancellationTest.php:' . $line, $message);
}
}
}
public function testWatcherCancellation(): void
{
$enabled = EventLoop::getInfo()["on_signal"]["enabled"];
$cancellation = new SignalCancellation([\SIGUSR1, \SIGUSR2]);
self::assertSame($enabled + 2, EventLoop::getInfo()["on_signal"]["enabled"]);
unset($cancellation);
self::assertSame($enabled, EventLoop::getInfo()["on_signal"]["enabled"]);
}
}