1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/test/YieldSourceTest.php

223 lines
5.6 KiB
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
<?php
namespace Amp\Test;
use Amp\DisposedException;
use Amp\Internal\YieldSource;
2020-05-13 17:15:21 +02:00
use Amp\Loop;
use Amp\Promise;
use Amp\Success;
use Amp\YieldedValue;
2020-05-13 17:15:21 +02:00
use PHPUnit\Framework\TestCase;
class YieldSourceTest extends TestCase
2020-05-13 17:15:21 +02:00
{
/** @var YieldSource */
2020-05-13 17:15:21 +02:00
private $source;
public function setUp()
{
$this->source = new YieldSource;
2020-05-13 17:15:21 +02:00
}
public function testYield()
{
Loop::run(function () {
$value = 'Yielded Value';
$promise = $this->source->yield($value);
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$yielded = yield $stream->continue();
$this->assertInstanceOf(YieldedValue::class, $yielded);
$this->assertSame($value, $yielded->unwrap());
2020-05-13 17:15:21 +02:00
$this->assertInstanceOf(Promise::class, $promise);
$this->assertNull(yield $promise);
});
}
/**
* @depends testYield
*/
public function testYieldAfterComplete()
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Streams cannot yield values after calling complete');
$this->source->complete();
$this->source->yield(1);
}
/**
* @depends testYield
*/
public function testYieldingNull()
{
Loop::run(function () {
$this->source->yield(null);
$this->assertNull((yield $this->source->stream()->continue())->unwrap());
2020-05-13 17:15:21 +02:00
});
}
/**
* @depends testYield
*/
public function testYieldingPromise()
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Streams cannot yield promises');
$this->source->yield(new Success);
}
public function testDoubleComplete()
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Stream has already been completed');
$this->source->complete();
$this->source->complete();
}
public function testDoubleFail()
{
$this->expectException(\Error::class);
$this->expectExceptionMessage('Stream has already been completed');
$this->source->fail(new \Exception);
$this->source->fail(new \Exception);
}
public function testDoubleStart()
{
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$this->expectException(\Error::class);
$this->expectExceptionMessage('A stream may be started only once');
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
}
public function testYieldAfterContinue()
{
Loop::run(function () {
$value = 'Yielded Value';
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$promise = $stream->continue();
$this->assertInstanceOf(Promise::class, $promise);
$this->assertNull(yield $this->source->yield($value));
$this->assertSame($value, (yield $promise)->unwrap());
2020-05-13 17:15:21 +02:00
});
}
public function testContinueAfterComplete()
{
Loop::run(function () {
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$this->source->complete();
$promise = $stream->continue();
$this->assertInstanceOf(Promise::class, $promise);
$this->assertNull(yield $promise);
});
}
public function testContinueAfterFail()
{
Loop::run(function () {
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$this->source->fail(new \Exception('Stream failed'));
$promise = $stream->continue();
$this->assertInstanceOf(Promise::class, $promise);
$this->expectException(\Exception::class);
$this->expectExceptionMessage('Stream failed');
yield $promise;
});
}
public function testCompleteAfterContinue()
{
Loop::run(function () {
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$promise = $stream->continue();
$this->assertInstanceOf(Promise::class, $promise);
$this->source->complete();
$this->assertNull(yield $promise);
});
}
public function testDestroyingStreamRelievesBackPressure()
{
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$invoked = 0;
$onResolved = function () use (&$invoked) {
$invoked++;
};
foreach (\range(1, 5) as $value) {
$promise = $this->source->yield($value);
$promise->onResolve($onResolved);
}
$this->assertSame(0, $invoked);
unset($stream); // Should relieve all back-pressure.
$this->assertSame(5, $invoked);
$this->source->complete(); // Should not throw.
$this->expectException(\Error::class);
$this->expectExceptionMessage('Stream has already been completed');
$this->source->complete(); // Should throw.
}
public function testYieldAfterDisposal()
{
$this->expectException(DisposedException::class);
$this->expectExceptionMessage('The stream has been disposed');
Loop::run(function () {
$stream = $this->source->stream();
$promise = $this->source->yield(1);
$stream->dispose();
$this->assertNull(yield $promise);
yield $this->source->yield(1);
});
}
public function testYieldAfterDestruct()
{
$this->expectException(DisposedException::class);
$this->expectExceptionMessage('The stream has been disposed');
2020-05-13 17:15:21 +02:00
Loop::run(function () {
$stream = $this->source->stream();
2020-05-13 17:15:21 +02:00
$promise = $this->source->yield(1);
unset($stream);
$this->assertNull(yield $promise);
yield $this->source->yield(1);
});
}
}