1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/test/PlaceholderTraitTest.php

384 lines
9.6 KiB
PHP
Raw Normal View History

<?php
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
use Amp\Loop;
use Amp\Promise;
2016-07-12 18:20:06 +02:00
2018-06-18 20:00:01 +02:00
class Placeholder
{
2016-08-18 04:17:31 +02:00
use \Amp\Internal\Placeholder {
resolve as public;
fail as public;
}
}
class PlaceholderTraitTest extends BaseTest
2018-06-18 20:00:01 +02:00
{
/** @var Placeholder */
2016-08-18 04:17:31 +02:00
private $placeholder;
2016-07-12 18:20:06 +02:00
2018-06-18 20:00:01 +02:00
public function setUp()
{
2016-08-18 04:17:31 +02:00
$this->placeholder = new Placeholder;
2016-07-12 18:20:06 +02:00
}
2018-06-18 20:00:01 +02:00
public function testOnResolveOnSuccess()
{
2016-07-12 18:20:06 +02:00
$value = "Resolution value";
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $value;
++$invoked;
2016-07-12 18:20:06 +02:00
};
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($value);
2016-07-12 18:20:06 +02:00
$this->assertSame(1, $invoked);
$this->assertSame($value, $result);
}
/**
* @depends testOnResolveOnSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testMultipleOnResolvesOnSuccess()
{
2016-07-12 18:20:06 +02:00
$value = "Resolution value";
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $value;
++$invoked;
2016-07-12 18:20:06 +02:00
};
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($value);
2016-07-12 18:20:06 +02:00
$this->assertSame(3, $invoked);
$this->assertSame($value, $result);
}
/**
* @depends testOnResolveOnSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveAfterSuccess()
{
2016-07-12 18:20:06 +02:00
$value = "Resolution value";
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $value;
++$invoked;
2016-07-12 18:20:06 +02:00
};
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($value);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame(1, $invoked);
$this->assertSame($value, $result);
}
/**
* @depends testOnResolveAfterSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testMultipleOnResolveAfterSuccess()
{
2016-07-12 18:20:06 +02:00
$value = "Resolution value";
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $value;
++$invoked;
2016-07-12 18:20:06 +02:00
};
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($value);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame(3, $invoked);
$this->assertSame($value, $result);
}
/**
* @depends testOnResolveOnSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveThrowingForwardsToLoopHandlerOnSuccess()
{
Loop::run(function () use (&$invoked) {
2016-07-12 18:20:06 +02:00
$invoked = 0;
$expected = new \Exception;
Loop::setErrorHandler(function ($exception) use (&$invoked, $expected) {
$this->assertSame($expected, $exception);
++$invoked;
2016-07-12 18:20:06 +02:00
});
$callback = function () use ($expected) {
throw $expected;
};
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($expected);
2016-07-12 18:20:06 +02:00
});
$this->assertSame(1, $invoked);
}
/**
* @depends testOnResolveAfterSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveThrowingForwardsToLoopHandlerAfterSuccess()
{
Loop::run(function () use (&$invoked) {
2016-07-12 18:20:06 +02:00
$invoked = 0;
$expected = new \Exception;
Loop::setErrorHandler(function ($exception) use (&$invoked, $expected) {
$this->assertSame($expected, $exception);
++$invoked;
2016-07-12 18:20:06 +02:00
});
$callback = function () use ($expected) {
throw $expected;
};
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve($expected);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
});
$this->assertSame(1, $invoked);
}
2018-06-18 20:00:01 +02:00
public function testOnResolveOnFail()
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $exception;
++$invoked;
2016-07-12 18:20:06 +02:00
};
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->fail($exception);
2016-07-12 18:20:06 +02:00
$this->assertSame(1, $invoked);
$this->assertSame($exception, $result);
}
/**
* @depends testOnResolveOnFail
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testMultipleOnResolvesOnFail()
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $exception;
++$invoked;
2016-07-12 18:20:06 +02:00
};
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->fail($exception);
2016-07-12 18:20:06 +02:00
$this->assertSame(3, $invoked);
$this->assertSame($exception, $result);
}
/**
* @depends testOnResolveOnFail
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveAfterFail()
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $exception;
++$invoked;
2016-07-12 18:20:06 +02:00
};
2016-08-18 04:17:31 +02:00
$this->placeholder->fail($exception);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame(1, $invoked);
$this->assertSame($exception, $result);
}
/**
* @depends testOnResolveAfterFail
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testMultipleOnResolvesAfterFail()
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$result) {
$result = $exception;
++$invoked;
2016-07-12 18:20:06 +02:00
};
2016-08-18 04:17:31 +02:00
$this->placeholder->fail($exception);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame(3, $invoked);
$this->assertSame($exception, $result);
}
/**
* @depends testOnResolveOnSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveThrowingForwardsToLoopHandlerOnFail()
{
Loop::run(function () use (&$invoked) {
2016-07-12 18:20:06 +02:00
$invoked = 0;
$expected = new \Exception;
Loop::setErrorHandler(function ($exception) use (&$invoked, $expected) {
$this->assertSame($expected, $exception);
++$invoked;
2016-07-12 18:20:06 +02:00
});
$callback = function () use ($expected) {
throw $expected;
};
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
2016-08-18 04:17:31 +02:00
$this->placeholder->fail(new \Exception);
2016-07-12 18:20:06 +02:00
});
$this->assertSame(1, $invoked);
}
/**
* @depends testOnResolveOnSuccess
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveThrowingForwardsToLoopHandlerAfterFail()
{
Loop::run(function () use (&$invoked) {
2016-07-12 18:20:06 +02:00
$invoked = 0;
$expected = new \Exception;
Loop::setErrorHandler(function ($exception) use (&$invoked, $expected) {
$this->assertSame($expected, $exception);
++$invoked;
2016-07-12 18:20:06 +02:00
});
$callback = function () use ($expected) {
throw $expected;
};
2016-08-18 04:17:31 +02:00
$this->placeholder->fail(new \Exception);
2016-07-12 18:20:06 +02:00
$this->placeholder->onResolve($callback);
2016-07-12 18:20:06 +02:00
});
$this->assertSame(1, $invoked);
}
2018-06-18 20:00:01 +02:00
public function testResolveWithPromiseBeforeOnResolve()
{
2016-11-14 20:59:21 +01:00
$promise = $this->getMockBuilder(Promise::class)->getMock();
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise->expects($this->once())
->method("onResolve")
2016-07-12 18:20:06 +02:00
->with($this->callback("is_callable"));
2016-11-14 20:59:21 +01:00
$this->placeholder->resolve($promise);
2016-07-12 18:20:06 +02:00
2018-06-18 20:00:01 +02:00
$this->placeholder->onResolve(function () {
});
2016-07-12 18:20:06 +02:00
}
2018-06-18 20:00:01 +02:00
public function testResolveWithPromiseAfterOnResolve()
{
2016-11-14 20:59:21 +01:00
$promise = $this->getMockBuilder(Promise::class)->getMock();
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$promise->expects($this->once())
->method("onResolve")
2016-07-12 18:20:06 +02:00
->with($this->callback("is_callable"));
2018-06-18 20:00:01 +02:00
$this->placeholder->onResolve(function () {
});
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$this->placeholder->resolve($promise);
2016-07-12 18:20:06 +02:00
}
/**
2016-08-11 21:35:58 +02:00
* @expectedException \Error
* @expectedExceptionMessage Promise has already been resolved
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testDoubleResolve()
{
2016-08-18 04:17:31 +02:00
$this->placeholder->resolve();
$this->placeholder->resolve();
2016-07-12 18:20:06 +02:00
}
/**
* @expectedException \Error
* @expectedExceptionMessage Promise has already been resolved
*/
2018-06-18 20:00:01 +02:00
public function testResolveAgainWithinOnResolveCallback()
{
Loop::run(function () {
$this->placeholder->onResolve(function () {
$this->placeholder->resolve();
});
$this->placeholder->resolve();
});
}
2018-06-18 20:00:01 +02:00
public function testOnResolveWithGenerator()
{
$invoked = false;
$this->placeholder->onResolve(function ($exception, $value) use (&$invoked) {
$invoked = true;
return $value;
yield; // Unreachable, but makes function a generator.
});
$this->placeholder->resolve(1);
$this->assertTrue($invoked);
}
/**
* @depends testOnResolveWithGenerator
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveWithGeneratorAfterResolve()
{
$this->placeholder->resolve(1);
$invoked = false;
$this->placeholder->onResolve(function ($exception, $value) use (&$invoked) {
$invoked = true;
return $value;
yield; // Unreachable, but makes function a generator.
});
$this->assertTrue($invoked);
}
2016-07-12 18:20:06 +02:00
}