2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-12-16 00:28:22 +01:00
|
|
|
|
|
|
|
namespace Amp\Test;
|
|
|
|
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Emitter;
|
2017-04-27 17:51:06 +02:00
|
|
|
use Amp\Iterator;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Loop;
|
2017-04-28 06:53:04 +02:00
|
|
|
use Amp\PHPUnit\TestException;
|
2017-04-23 14:39:19 +02:00
|
|
|
use Amp\Producer;
|
2017-05-02 18:59:52 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-12-16 00:28:22 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
class FilterTest extends TestCase
|
|
|
|
{
|
|
|
|
public function testNoValuesEmitted()
|
|
|
|
{
|
2016-12-16 00:28:22 +01:00
|
|
|
$invoked = false;
|
2017-04-24 15:39:08 +02:00
|
|
|
Loop::run(function () use (&$invoked) {
|
2017-01-04 02:10:27 +01:00
|
|
|
$emitter = new Emitter;
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-05-01 07:29:23 +02:00
|
|
|
$iterator = Iterator\filter($emitter->iterate(), function ($value) use (&$invoked) {
|
2016-12-16 00:28:22 +01:00
|
|
|
$invoked = true;
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:51:06 +02:00
|
|
|
$this->assertInstanceOf(Iterator::class, $iterator);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:32:53 +02:00
|
|
|
$emitter->complete();
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$this->assertFalse($invoked);
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testValuesEmitted()
|
|
|
|
{
|
2017-04-27 17:32:53 +02:00
|
|
|
Loop::run(function () {
|
|
|
|
$count = 0;
|
|
|
|
$values = [1, 2, 3];
|
|
|
|
$expected = [1, 3];
|
2017-01-04 02:10:27 +01:00
|
|
|
$producer = new Producer(function (callable $emit) use ($values) {
|
2016-12-16 00:28:22 +01:00
|
|
|
foreach ($values as $value) {
|
|
|
|
yield $emit($value);
|
|
|
|
}
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:51:06 +02:00
|
|
|
$iterator = Iterator\filter($producer, function ($value) use (&$count) {
|
2016-12-16 00:28:22 +01:00
|
|
|
++$count;
|
|
|
|
return $value & 1;
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:51:06 +02:00
|
|
|
while (yield $iterator->advance()) {
|
|
|
|
$this->assertSame(\array_shift($expected), $iterator->getCurrent());
|
2017-04-27 17:32:53 +02:00
|
|
|
}
|
|
|
|
$this->assertSame(3, $count);
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
/**
|
|
|
|
* @depends testValuesEmitted
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testCallbackThrows()
|
|
|
|
{
|
2017-04-27 17:32:53 +02:00
|
|
|
Loop::run(function () {
|
|
|
|
$values = [1, 2, 3];
|
2017-04-28 06:53:04 +02:00
|
|
|
$exception = new TestException;
|
2017-01-04 02:10:27 +01:00
|
|
|
$producer = new Producer(function (callable $emit) use ($values) {
|
2016-12-16 00:28:22 +01:00
|
|
|
foreach ($values as $value) {
|
|
|
|
yield $emit($value);
|
|
|
|
}
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:51:06 +02:00
|
|
|
$iterator = Iterator\filter($producer, function () use ($exception) {
|
2016-12-16 00:28:22 +01:00
|
|
|
throw $exception;
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:32:53 +02:00
|
|
|
try {
|
2017-04-28 06:53:04 +02:00
|
|
|
yield $iterator->advance();
|
|
|
|
$this->fail("The exception thrown from the filter callback should be thrown from advance()");
|
|
|
|
} catch (TestException $reason) {
|
2017-04-27 17:32:53 +02:00
|
|
|
$this->assertSame($reason, $exception);
|
|
|
|
}
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testIteratorFails()
|
|
|
|
{
|
2017-04-27 17:32:53 +02:00
|
|
|
Loop::run(function () {
|
|
|
|
$invoked = false;
|
2017-04-28 06:53:04 +02:00
|
|
|
$exception = new TestException;
|
2017-01-04 02:10:27 +01:00
|
|
|
$emitter = new Emitter;
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-05-01 07:29:23 +02:00
|
|
|
$iterator = Iterator\filter($emitter->iterate(), function ($value) use (&$invoked) {
|
2016-12-16 00:28:22 +01:00
|
|
|
$invoked = true;
|
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-01-04 02:10:27 +01:00
|
|
|
$emitter->fail($exception);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:32:53 +02:00
|
|
|
try {
|
2017-04-28 06:53:04 +02:00
|
|
|
yield $iterator->advance();
|
|
|
|
$this->fail("The exception used to fail the iterator should be thrown from advance()");
|
|
|
|
} catch (TestException $reason) {
|
2017-04-27 17:32:53 +02:00
|
|
|
$this->assertSame($reason, $exception);
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-27 17:32:53 +02:00
|
|
|
$this->assertFalse($invoked);
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|