2017-02-22 22:52:30 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Test;
|
|
|
|
|
|
|
|
use Amp;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Coroutine;
|
2017-05-03 15:21:49 +02:00
|
|
|
use Amp\Failure;
|
|
|
|
use Amp\Loop;
|
|
|
|
use Amp\PHPUnit\TestException;
|
2017-03-10 21:58:46 +01:00
|
|
|
use Amp\Promise;
|
2017-04-23 14:39:19 +02:00
|
|
|
use Amp\Success;
|
2017-03-14 22:15:36 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use React\Promise\FulfilledPromise as FulfilledReactPromise;
|
2017-02-22 22:52:30 +01:00
|
|
|
|
2017-03-14 22:15:36 +01:00
|
|
|
class CallTest extends TestCase {
|
2017-02-22 22:52:30 +01:00
|
|
|
public function testCallWithFunctionReturningPromise() {
|
|
|
|
$value = 1;
|
|
|
|
$promise = Amp\call(function ($value) {
|
|
|
|
return new Success($value);
|
|
|
|
}, $value);
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Promise::class, $promise);
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
$promise->onResolve(function ($exception, $value) use (&$reason, &$result) {
|
2017-02-22 22:52:30 +01:00
|
|
|
$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);
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
$promise->onResolve(function ($exception, $value) use (&$reason, &$result) {
|
2017-02-22 22:52:30 +01:00
|
|
|
$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);
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
$promise->onResolve(function ($exception, $value) use (&$reason, &$result) {
|
2017-02-22 22:52:30 +01:00
|
|
|
$reason = $exception;
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
$this->assertNull($result);
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:15:36 +01:00
|
|
|
public function testCallWithFunctionReturningReactPromise() {
|
|
|
|
$value = 1;
|
|
|
|
$promise = Amp\call(function ($value) {
|
|
|
|
return new FulfilledReactPromise($value);
|
|
|
|
}, $value);
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Promise::class, $promise);
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
$promise->onResolve(function ($exception, $value) use (&$reason, &$result) {
|
2017-03-14 22:15:36 +01:00
|
|
|
$reason = $exception;
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertNull($reason);
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
|
|
|
|
2017-02-22 22:52:30 +01:00
|
|
|
public function testCallWithGeneratorFunction() {
|
|
|
|
$value = 1;
|
|
|
|
$promise = Amp\call(function ($value) {
|
|
|
|
return yield new Success($value);
|
|
|
|
}, $value);
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Coroutine::class, $promise);
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
$promise->onResolve(function ($exception, $value) use (&$reason, &$result) {
|
2017-02-22 22:52:30 +01:00
|
|
|
$reason = $exception;
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertNull($reason);
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
2017-05-03 15:21:49 +02:00
|
|
|
|
|
|
|
public function testAsyncCallFunctionWithFailure() {
|
|
|
|
\Amp\asyncCall(function ($value) {
|
|
|
|
return new Failure(new TestException);
|
|
|
|
}, 42);
|
|
|
|
|
|
|
|
$this->expectException(TestException::class);
|
|
|
|
|
|
|
|
Loop::run();
|
|
|
|
}
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|