1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 02:17:54 +01:00
amp/test/TimeoutCancellationTokenTest.php

41 lines
1.0 KiB
PHP
Raw Normal View History

2017-06-13 19:41:47 +02:00
<?php
namespace Amp\Test;
use Amp\CancelledException;
use Amp\Delayed;
use Amp\Loop;
use Amp\PHPUnit\TestCase;
use Amp\TimeoutCancellationToken;
use Amp\TimeoutException;
2018-06-18 20:00:01 +02:00
class TimeoutCancellationTokenTest extends TestCase
{
public function testTimeout()
{
2017-06-13 19:41:47 +02:00
Loop::run(function () {
$token = new TimeoutCancellationToken(10);
$this->assertFalse($token->isRequested());
yield new Delayed(20);
$this->assertTrue($token->isRequested());
try {
$token->throwIfRequested();
} catch (CancelledException $exception) {
$this->assertInstanceOf(TimeoutException::class, $exception->getPrevious());
}
});
}
2018-06-18 20:00:01 +02:00
public function testWatcherCancellation()
{
2017-06-13 19:41:47 +02:00
Loop::run(function () {
$token = new TimeoutCancellationToken(1);
$this->assertSame(1, Loop::getInfo()["delay"]["enabled"]);
unset($token);
$this->assertSame(0, Loop::getInfo()["delay"]["enabled"]);
});
}
}