1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/test/YielderTraitTest.php

225 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\Loop;
use Amp\Promise;
use Amp\Stream;
use Amp\Success;
use PHPUnit\Framework\TestCase;
class Yielder implements Stream
{
use \Amp\Internal\Yielder {
2020-05-13 23:48:38 +02:00
createStream as public;
2020-05-13 17:15:21 +02:00
}
}
class YielderTraitTest extends TestCase
{
/** @var Yielder */
private $source;
public function setUp()
{
$this->source = new Yielder;
}
public function testYield()
{
Loop::run(function () {
$value = 'Yielded Value';
$promise = $this->source->yield($value);
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
2020-05-13 17:15:21 +02:00
$this->assertSame([$value, 0], yield $stream->continue());
$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);
2020-05-13 23:48:38 +02:00
$this->assertSame([null, 0], yield $this->source->createStream()->continue());
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()
{
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
2020-05-13 17:15:21 +02:00
$this->expectException(\Error::class);
$this->expectExceptionMessage('A stream may be started only once');
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
2020-05-13 17:15:21 +02:00
}
public function testYieldAfterContinue()
{
Loop::run(function () {
$value = 'Yielded Value';
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
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, 0], yield $promise);
});
}
public function testContinueAfterComplete()
{
Loop::run(function () {
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
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 () {
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
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 () {
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
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()
{
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
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 () {
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
$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 () {
2020-05-13 23:48:38 +02:00
$stream = $this->source->createStream();
2020-05-13 17:15:21 +02:00
$promise = $this->source->yield(1);
unset($stream);
$this->assertNull(yield $promise);
yield $this->source->yield(1);
});
}
}