1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/test/CancellationToken/TimeoutCancellationTokenTest.php

46 lines
1.4 KiB
PHP
Raw Normal View History

2017-06-13 19:41:47 +02:00
<?php
2021-09-06 06:47:06 +02:00
namespace Amp\CancellationToken;
2017-06-13 19:41:47 +02:00
use Amp\CancelledException;
2020-09-28 05:19:52 +02:00
use Amp\PHPUnit\AsyncTestCase;
2017-06-13 19:41:47 +02:00
use Amp\TimeoutCancellationToken;
use Amp\TimeoutException;
2021-10-15 00:50:40 +02:00
use Revolt\EventLoop;
use function Amp\delay;
2017-06-13 19:41:47 +02:00
2020-09-28 05:19:52 +02:00
class TimeoutCancellationTokenTest extends AsyncTestCase
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
public function testTimeout(): void
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
$line = __LINE__ + 1;
$token = new TimeoutCancellationToken(0.01);
2017-06-13 19:41:47 +02:00
2021-03-26 22:34:32 +01:00
self::assertFalse($token->isRequested());
delay(0.02);
2021-03-26 22:34:32 +01:00
self::assertTrue($token->isRequested());
2017-06-13 19:41:47 +02:00
2020-09-28 05:19:52 +02:00
try {
$token->throwIfRequested();
} catch (CancelledException $exception) {
2021-03-26 22:34:32 +01:00
self::assertInstanceOf(TimeoutException::class, $exception->getPrevious());
2020-09-28 05:19:52 +02:00
$message = $exception->getPrevious()->getMessage();
if ((int)ini_get('zend.assertions') > 0) {
self::assertStringContainsString('TimeoutCancellationToken was created here', $message);
self::assertStringContainsString('TimeoutCancellationTokenTest.php:' . $line, $message);
}
2020-09-28 05:19:52 +02:00
}
2017-06-13 19:41:47 +02:00
}
2020-09-28 05:19:52 +02:00
public function testWatcherCancellation(): void
2018-06-18 20:00:01 +02:00
{
2021-10-15 00:50:40 +02:00
$enabled = EventLoop::getInfo()["delay"]["enabled"];
$token = new TimeoutCancellationToken(0.001);
2021-10-15 00:50:40 +02:00
self::assertSame($enabled + 1, EventLoop::getInfo()["delay"]["enabled"]);
2020-09-28 05:19:52 +02:00
unset($token);
2021-10-15 00:50:40 +02:00
self::assertSame($enabled, EventLoop::getInfo()["delay"]["enabled"]);
2017-06-13 19:41:47 +02:00
}
}