1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/TimeoutTest.php

121 lines
2.9 KiB
PHP
Raw Normal View History

<?php
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
use Amp;
use Amp\Failure;
use Amp\Loop;
use Amp\Pause;
use Amp\Success;
use Amp\Promise;
use function React\Promise\resolve;
2016-07-12 18:20:06 +02:00
class TimeoutTest extends \PHPUnit\Framework\TestCase {
2016-11-14 20:59:21 +01:00
public function testSuccessfulPromise() {
Loop::run(function () {
2016-07-12 18:20:06 +02:00
$value = 1;
2016-11-14 20:59:21 +01:00
$promise = new Success($value);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise = Amp\timeout($promise, 100);
$this->assertInstanceOf(Promise::class, $promise);
2016-07-12 18:20:06 +02:00
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
2016-11-14 20:59:21 +01:00
$promise->when($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame($value, $result);
});
}
2016-11-14 20:59:21 +01:00
public function testFailedPromise() {
Loop::run(function () {
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
2016-11-14 20:59:21 +01:00
$promise = new Failure($exception);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise = Amp\timeout($promise, 100);
$this->assertInstanceOf(Promise::class, $promise);
2016-07-12 18:20:06 +02:00
$callback = function ($exception, $value) use (&$reason) {
$reason = $exception;
};
2016-11-14 20:59:21 +01:00
$promise->when($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame($exception, $reason);
});
}
2016-07-12 18:20:06 +02:00
/**
2016-11-14 20:59:21 +01:00
* @depends testSuccessfulPromise
2016-07-12 18:20:06 +02:00
*/
public function testFastPending() {
$value = 1;
Loop::run(function () use (&$result, $value) {
2016-11-14 20:59:21 +01:00
$promise = new Pause(50, $value);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise = Amp\timeout($promise, 100);
$this->assertInstanceOf(Promise::class, $promise);
2016-07-12 18:20:06 +02:00
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
2016-11-14 20:59:21 +01:00
$promise->when($callback);
2016-07-12 18:20:06 +02:00
});
$this->assertSame($value, $result);
}
/**
2016-11-14 20:59:21 +01:00
* @depends testSuccessfulPromise
2016-07-12 18:20:06 +02:00
*/
public function testSlowPending() {
Loop::run(function () use (&$reason) {
2016-11-14 20:59:21 +01:00
$promise = new Pause(200);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise = Amp\timeout($promise, 100);
$this->assertInstanceOf(Promise::class, $promise);
2016-07-12 18:20:06 +02:00
$callback = function ($exception, $value) use (&$reason) {
$reason = $exception;
};
2016-11-14 20:59:21 +01:00
$promise->when($callback);
2016-07-12 18:20:06 +02:00
});
$this->assertInstanceOf(Amp\TimeoutException::class, $reason);
}
/**
* @depends testSuccessfulPromise
*/
public function testReactPromise() {
Loop::run(function () {
$value = 1;
$promise = resolve($value);
$promise = Amp\timeout($promise, 100);
$this->assertInstanceOf(Promise::class, $promise);
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
$promise->when($callback);
$this->assertSame($value, $result);
});
}
2017-03-14 22:15:36 +01:00
public function testNonPromise() {
$this->expectException(Amp\UnionTypeError::class);
Amp\timeout(42, 42);
}
2016-07-12 18:20:06 +02:00
}