2017-02-22 22:52:30 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Test;
|
|
|
|
|
2017-05-03 15:21:49 +02:00
|
|
|
use Amp\Failure;
|
2020-09-28 05:19:52 +02:00
|
|
|
use Amp\PHPUnit\AsyncTestCase;
|
2017-05-03 15:21:49 +02:00
|
|
|
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;
|
2020-09-28 05:19:52 +02:00
|
|
|
use function Amp\await;
|
|
|
|
use function Amp\call;
|
|
|
|
use function React\Promise\resolve;
|
2017-02-22 22:52:30 +01:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
class CallTest extends AsyncTestCase
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testCallWithFunctionReturningPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2017-02-22 22:52:30 +01:00
|
|
|
$value = 1;
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function ($value) {
|
2017-02-22 22:52:30 +01:00
|
|
|
return new Success($value);
|
|
|
|
}, $value);
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame($value, await($promise));
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testCallWithFunctionReturningValue(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2017-02-22 22:52:30 +01:00
|
|
|
$value = 1;
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function ($value) {
|
2017-02-22 22:52:30 +01:00
|
|
|
return $value;
|
|
|
|
}, $value);
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame($value, await($promise));
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testCallWithThrowingFunction(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2017-02-22 22:52:30 +01:00
|
|
|
$exception = new \Exception;
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function () use ($exception) {
|
2017-02-22 22:52:30 +01:00
|
|
|
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;
|
|
|
|
});
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
try {
|
|
|
|
await($promise);
|
|
|
|
} catch (\Exception $reason) {
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->fail("Returned promise was not failed");
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testCallWithFunctionReturningReactPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2017-03-14 22:15:36 +01:00
|
|
|
$value = 1;
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function ($value) {
|
|
|
|
return resolve($value);
|
2017-03-14 22:15:36 +01:00
|
|
|
}, $value);
|
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame($value, await($promise));
|
2017-03-14 22:15:36 +01:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testCallWithGeneratorFunction()
|
|
|
|
{
|
2017-02-22 22:52:30 +01:00
|
|
|
$value = 1;
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function ($value) {
|
2017-02-22 22:52:30 +01:00
|
|
|
return yield new Success($value);
|
|
|
|
}, $value);
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame($value, await($promise));
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|
2017-05-03 15:21:49 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testCallFunctionWithFailure()
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = call(function () {
|
2017-05-03 15:21:49 +02:00
|
|
|
return new Failure(new TestException);
|
2020-09-28 05:19:52 +02:00
|
|
|
});
|
2017-05-03 15:21:49 +02:00
|
|
|
|
|
|
|
$this->expectException(TestException::class);
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
await($promise);
|
2017-05-03 15:21:49 +02:00
|
|
|
}
|
2017-02-22 22:52:30 +01:00
|
|
|
}
|