1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/WrapTest.php
Niklas Keller c12828081f Fix exceptions bubbling from Coroutine::__destruct
This has been an edge case potentially hiding some exceptions. The tests have been refactored to error if the loop has watchers leaking from one test to another test.
2019-05-31 11:38:02 -05:00

42 lines
777 B
PHP

<?php
namespace Amp\Test;
use Amp\Deferred;
use Amp\Promise;
class WrapTest extends BaseTest
{
public function testSuccess()
{
$deferred = new Deferred();
$promise = Promise\wrap($deferred->promise(), function () {
return 2;
});
$deferred->resolve(1);
$result = Promise\wait($promise);
$this->assertSame(2, $result);
}
/**
* @expectedException \Exception
* @expectedExceptionMessage bar
*/
public function testFailure()
{
$deferred = new Deferred();
$promise = Promise\wrap($deferred->promise(), function () {
throw new \Exception('bar');
});
$deferred->fail(new \Exception('foo'));
Promise\wait($promise);
}
}