2016-07-12 18:20:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icicle\Tests\Coroutine;
|
|
|
|
|
|
|
|
use Amp;
|
|
|
|
use Amp\Coroutine;
|
|
|
|
use Amp\Failure;
|
2016-08-11 21:35:58 +02:00
|
|
|
use Amp\InvalidYieldError;
|
2016-07-12 18:20:06 +02:00
|
|
|
use Amp\Pause;
|
|
|
|
use Amp\Success;
|
|
|
|
use Interop\Async\Loop;
|
|
|
|
|
|
|
|
class CoroutineTest extends \PHPUnit_Framework_TestCase {
|
|
|
|
const TIMEOUT = 0.1;
|
|
|
|
|
|
|
|
public function testYieldSuccessfulAwaitable() {
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
$generator = function () use (&$yielded, $value) {
|
|
|
|
$yielded = (yield new Success($value));
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$this->assertSame($value, $yielded);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testYieldFailedAwaitable() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$generator = function () use (&$yielded, $exception) {
|
|
|
|
$yielded = (yield new Failure($exception));
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$this->assertNull($yielded);
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldSuccessfulAwaitable
|
|
|
|
*/
|
|
|
|
public function testYieldPendingAwaitable() {
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
Loop::execute(function () use (&$yielded, $value) {
|
|
|
|
$generator = function () use (&$yielded, $value) {
|
|
|
|
$yielded = (yield new Pause(self::TIMEOUT, $value));
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($value, $yielded);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldFailedAwaitable
|
|
|
|
*/
|
|
|
|
public function testCatchingFailedAwaitableException() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$fail = false;
|
|
|
|
$generator = function () use (&$fail, &$result, $exception) {
|
|
|
|
try {
|
|
|
|
yield new Failure($exception);
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$result = $exception;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fail = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
if ($fail) {
|
|
|
|
$this->fail("Failed awaitable reason not thrown into generator");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-08-11 21:35:58 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
public function testInvalidYield() {
|
|
|
|
$generator = function () {
|
|
|
|
yield 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
2016-08-11 21:35:58 +02:00
|
|
|
$this->assertInstanceOf(InvalidYieldError::class, $reason);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testInvalidYield
|
|
|
|
*/
|
|
|
|
public function testInvalidYieldAfterYieldAwaitable() {
|
|
|
|
$generator = function () {
|
|
|
|
yield new Success;
|
|
|
|
yield 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
2016-08-11 21:35:58 +02:00
|
|
|
$this->assertInstanceOf(InvalidYieldError::class, $reason);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testInvalidYield
|
|
|
|
*/
|
|
|
|
public function testCatchesExceptionAfterInvalidYield() {
|
|
|
|
$generator = function () {
|
|
|
|
try {
|
|
|
|
yield 1;
|
|
|
|
} catch (\Exception $exception) {
|
2016-08-11 21:35:58 +02:00
|
|
|
return 1;
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
2016-08-11 21:35:58 +02:00
|
|
|
$this->assertInstanceOf(InvalidYieldError::class, $reason);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
2016-08-11 21:35:58 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
/**
|
|
|
|
* @depends testInvalidYield
|
|
|
|
*/
|
|
|
|
public function testThrowAfterInvalidYield() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$generator = function () use ($exception) {
|
|
|
|
try {
|
|
|
|
yield 1;
|
2016-08-11 21:35:58 +02:00
|
|
|
} catch (\Throwable $reason) {
|
2016-07-12 18:20:06 +02:00
|
|
|
throw $exception;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
2016-08-11 21:35:58 +02:00
|
|
|
$this->assertInstanceOf(InvalidYieldError::class, $reason);
|
2016-07-12 18:20:06 +02:00
|
|
|
$this->assertSame($exception, $reason->getPrevious());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldFailedAwaitable
|
|
|
|
*/
|
|
|
|
public function testCatchingFailedAwaitableExceptionWithNoFurtherYields() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$generator = function () use ($exception) {
|
|
|
|
try {
|
|
|
|
yield new Failure($exception);
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
// No further yields in generator.
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertNull($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGeneratorThrowingExceptionFailsCoroutine() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$generator = function () use ($exception) {
|
|
|
|
throw $exception;
|
|
|
|
yield;
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testGeneratorThrowingExceptionFailsCoroutine
|
|
|
|
*/
|
|
|
|
public function testGeneratorThrowingExceptionWithFinallyFailsCoroutine() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$invoked = false;
|
|
|
|
$generator = function () use (&$invoked, $exception) {
|
|
|
|
try {
|
|
|
|
throw $exception;
|
|
|
|
yield;
|
|
|
|
} finally {
|
|
|
|
$invoked = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
$this->assertTrue($invoked);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldFailedAwaitable
|
|
|
|
* @depends testGeneratorThrowingExceptionWithFinallyFailsCoroutine
|
|
|
|
*/
|
|
|
|
public function testGeneratorYieldingFailedAwaitableWithFinallyFailsCoroutine() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$invoked = false;
|
|
|
|
$generator = function () use (&$invoked, $exception) {
|
|
|
|
try {
|
|
|
|
yield new Failure($exception);
|
|
|
|
} finally {
|
|
|
|
$invoked = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
$this->assertTrue($invoked);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testGeneratorThrowingExceptionFailsCoroutine
|
|
|
|
*/
|
|
|
|
public function testGeneratorThrowingExceptionAfterPendingAwaitableWithFinallyFailsCoroutine() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
Loop::execute(function () use (&$yielded, &$invoked, &$reason, $exception, $value) {
|
|
|
|
$invoked = false;
|
|
|
|
$generator = function () use (&$yielded, &$invoked, $exception, $value) {
|
|
|
|
try {
|
|
|
|
$yielded = (yield new Pause(self::TIMEOUT, $value));
|
|
|
|
throw $exception;
|
|
|
|
} finally {
|
|
|
|
$invoked = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
$this->assertTrue($invoked);
|
|
|
|
$this->assertSame($value, $yielded);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Note that yielding in a finally block is not recommended.
|
|
|
|
*
|
|
|
|
* @depends testYieldPendingAwaitable
|
|
|
|
* @depends testGeneratorThrowingExceptionWithFinallyFailsCoroutine
|
|
|
|
*/
|
|
|
|
public function testGeneratorThrowingExceptionWithFinallyYieldingPendingAwaitable() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
Loop::execute(function () use (&$yielded, &$reason, $exception, $value) {
|
|
|
|
$generator = function () use (&$yielded, $exception, $value) {
|
|
|
|
try {
|
|
|
|
throw $exception;
|
|
|
|
} finally {
|
|
|
|
$yielded = (yield new Pause(self::TIMEOUT, $value));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($value, $yielded);
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldPendingAwaitable
|
|
|
|
* @depends testGeneratorThrowingExceptionWithFinallyFailsCoroutine
|
|
|
|
*/
|
|
|
|
public function testGeneratorThrowingExceptionWithFinallyBlockThrowing() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$generator = function () use ($exception) {
|
|
|
|
try {
|
|
|
|
throw new \Exception;
|
|
|
|
} finally {
|
|
|
|
throw $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
yield; // Unreachable, but makes function a generator.
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldSuccessfulAwaitable
|
|
|
|
*/
|
|
|
|
public function testYieldConsecutiveSucceeded() {
|
|
|
|
$invoked = false;
|
|
|
|
Loop::execute(function () use (&$invoked) {
|
|
|
|
$count = 1000;
|
|
|
|
$awaitable = new Success;
|
|
|
|
|
|
|
|
$generator = function () use ($count, $awaitable) {
|
|
|
|
for ($i = 0; $i < $count; ++$i) {
|
|
|
|
yield $awaitable;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$invoked) {
|
|
|
|
$invoked = true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertTrue($invoked);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldFailedAwaitable
|
|
|
|
*/
|
|
|
|
public function testYieldConsecutiveFailed() {
|
|
|
|
$invoked = false;
|
|
|
|
Loop::execute(function () use (&$invoked) {
|
|
|
|
$count = 1000;
|
|
|
|
$awaitable = new Failure(new \Exception);
|
|
|
|
|
|
|
|
$generator = function () use ($count, $awaitable) {
|
|
|
|
for ($i = 0; $i < $count; ++$i) {
|
|
|
|
try {
|
|
|
|
yield $awaitable;
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
// Ignore and continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$invoked) {
|
|
|
|
$invoked = true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testYieldSuccessfulAwaitable
|
|
|
|
*/
|
|
|
|
public function testFastInvalidGenerator() {
|
|
|
|
$generator = function () {
|
|
|
|
if (false) {
|
|
|
|
yield new Success;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$invoked = false;
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$invoked) {
|
|
|
|
$invoked = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertTrue($invoked);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCoroutineFunction() {
|
|
|
|
$callable = Amp\coroutine(function () {
|
|
|
|
yield;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Coroutine::class, $callable());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testCoroutineFunction
|
|
|
|
* @expectedException \LogicException
|
|
|
|
*/
|
|
|
|
public function testCoroutineFunctionWithNonGeneratorCallback() {
|
|
|
|
$callable = Amp\coroutine(function () {});
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Coroutine::class, $callable());
|
|
|
|
}
|
2016-08-11 21:35:58 +02:00
|
|
|
|
|
|
|
public function testCoroutineResolvedWithReturn() {
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
$generator = function () use ($value) {
|
|
|
|
return $value;
|
|
|
|
yield; // Unreachable, but makes function a coroutine.
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testCoroutineResolvedWithReturn
|
|
|
|
*/
|
|
|
|
public function testYieldFromGenerator() {
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
$generator = function () use ($value) {
|
|
|
|
$generator = function () use ($value) {
|
|
|
|
return yield new Success($value);
|
|
|
|
};
|
|
|
|
|
|
|
|
return yield from $generator();
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testCoroutineResolvedWithReturn
|
|
|
|
*/
|
|
|
|
public function testFastReturningGenerator()
|
|
|
|
{
|
|
|
|
$value = 1;
|
|
|
|
|
|
|
|
$generator = function () use ($value) {
|
|
|
|
if (true) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
yield;
|
|
|
|
|
|
|
|
return -$value;
|
|
|
|
};
|
|
|
|
|
|
|
|
$coroutine = new Coroutine($generator());
|
|
|
|
|
|
|
|
$coroutine->when(function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|