1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<?php
declare(strict_types=1);
namespace GuzzleHttp\Promise\Tests;
use GuzzleHttp\Promise as P;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\PromiseInterface;
use GuzzleHttp\Promise\RejectedPromise;
use PHPUnit\Framework\TestCase;
class CreateTest extends TestCase
{
public function testCreatesPromiseForValue(): void
{
$p = P\Create::promiseFor('foo');
$this->assertInstanceOf(FulfilledPromise::class, $p);
}
public function testReturnsPromiseForPromise(): void
{
$p = new Promise();
$this->assertSame($p, P\Create::promiseFor($p));
}
public function testReturnsPromiseForThennable(): void
{
$p = new Thennable();
$wrapped = P\Create::promiseFor($p);
$this->assertNotSame($p, $wrapped);
$this->assertInstanceOf(PromiseInterface::class, $wrapped);
$p->resolve('foo');
P\Utils::queue()->run();
$this->assertSame('foo', $wrapped->wait());
}
public function testReturnsRejection(): void
{
$p = P\Create::rejectionFor('fail');
$this->assertInstanceOf(RejectedPromise::class, $p);
$this->assertSame('fail', PropertyHelper::get($p, 'reason'));
}
public function testReturnsPromisesAsIsInRejectionFor(): void
{
$a = new Promise();
$b = P\Create::rejectionFor($a);
$this->assertSame($a, $b);
}
public function testIterForReturnsIterator(): void
{
$iter = new \ArrayIterator();
$this->assertSame($iter, P\Create::iterFor($iter));
}
}
|