1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/test/AdaptTest.php

103 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
2017-03-11 14:43:57 +01:00
use Amp\Failure;
use Amp\Success;
use Amp\Promise;
2016-07-12 18:20:06 +02:00
class PromiseMock {
/** @var \Amp\Promise */
2016-11-14 20:59:21 +01:00
private $promise;
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
public function __construct(Promise $promise) {
$this->promise = $promise;
2016-07-12 18:20:06 +02:00
}
public function then(callable $onFulfilled = null, callable $onRejected = null) {
2016-11-14 20:59:21 +01:00
$this->promise->when(function ($exception, $value) use ($onFulfilled, $onRejected) {
2016-07-12 18:20:06 +02:00
if ($exception) {
if ($onRejected) {
$onRejected($exception);
}
return;
}
if ($onFulfilled) {
$onFulfilled($value);
}
});
}
}
class AdaptTest extends \PHPUnit\Framework\TestCase {
2016-07-12 18:20:06 +02:00
public function testThenCalled() {
$mock = $this->getMockBuilder(PromiseMock::class)
->disableOriginalConstructor()
->getMock();
2016-07-12 18:20:06 +02:00
$mock->expects($this->once())
->method("then")
->with(
$this->callback(function ($resolve) {
return is_callable($resolve);
}),
$this->callback(function ($reject) {
return is_callable($reject);
})
);
$promise = Promise\adapt($mock);
2016-11-14 20:59:21 +01:00
$this->assertInstanceOf(Promise::class, $promise);
2016-07-12 18:20:06 +02:00
}
2016-07-12 18:20:06 +02:00
/**
* @depends testThenCalled
*/
2016-11-14 20:59:21 +01:00
public function testPromiseFulfilled() {
2016-07-12 18:20:06 +02:00
$value = 1;
$promise = new PromiseMock(new Success($value));
$promise = Promise\adapt($promise);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise->when(function ($exception, $value) use (&$result) {
2016-07-12 18:20:06 +02:00
$result = $value;
});
$this->assertSame($value, $result);
}
2016-07-12 18:20:06 +02:00
/**
* @depends testThenCalled
*/
2016-11-14 20:59:21 +01:00
public function testPromiseRejected() {
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$promise = new PromiseMock(new Failure($exception));
$promise = Promise\adapt($promise);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise->when(function ($exception, $value) use (&$reason) {
2016-07-12 18:20:06 +02:00
$reason = $exception;
});
$this->assertSame($exception, $reason);
}
/**
2016-08-11 21:35:58 +02:00
* @expectedException \Error
2016-07-12 18:20:06 +02:00
*/
public function testScalarValue() {
Promise\adapt(1);
2016-07-12 18:20:06 +02:00
}
/**
2016-08-11 21:35:58 +02:00
* @expectedException \Error
2016-07-12 18:20:06 +02:00
*/
public function testNonThenableObject() {
Promise\adapt(new \stdClass);
2016-07-12 18:20:06 +02:00
}
}