1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/CallTest.php
Niklas Keller fe88413a17 Upgrade to PHPUnit 6
This commit removes Humbug, as it's no longer maintained and not
compatible with PHPUnit 6.
2017-03-11 14:57:03 +01:00

79 lines
2.1 KiB
PHP

<?php
namespace Amp\Test;
use Amp;
use Amp\Coroutine;
use Amp\Success;
use Amp\Promise;
class CallTest extends \PHPUnit\Framework\TestCase {
public function testCallWithFunctionReturningPromise() {
$value = 1;
$promise = Amp\call(function ($value) {
return new Success($value);
}, $value);
$this->assertInstanceOf(Promise::class, $promise);
$promise->when(function ($exception, $value) use (&$reason, &$result) {
$reason = $exception;
$result = $value;
});
$this->assertNull($reason);
$this->assertSame($value, $result);
}
public function testCallWithFunctionReturningValue() {
$value = 1;
$promise = Amp\call(function ($value) {
return $value;
}, $value);
$this->assertInstanceOf(Promise::class, $promise);
$promise->when(function ($exception, $value) use (&$reason, &$result) {
$reason = $exception;
$result = $value;
});
$this->assertNull($reason);
$this->assertSame($value, $result);
}
public function testCallWithThrowingFunction() {
$exception = new \Exception;
$promise = Amp\call(function () use ($exception) {
throw $exception;
});
$this->assertInstanceOf(Promise::class, $promise);
$promise->when(function ($exception, $value) use (&$reason, &$result) {
$reason = $exception;
$result = $value;
});
$this->assertSame($exception, $reason);
$this->assertNull($result);
}
public function testCallWithGeneratorFunction() {
$value = 1;
$promise = Amp\call(function ($value) {
return yield new Success($value);
}, $value);
$this->assertInstanceOf(Coroutine::class, $promise);
$promise->when(function ($exception, $value) use (&$reason, &$result) {
$reason = $exception;
$result = $value;
});
$this->assertNull($reason);
$this->assertSame($value, $result);
}
}