1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
<?php
declare(strict_types=1);
namespace LaminasTest\EventManager;
use Laminas\EventManager\EventInterface;
use Laminas\EventManager\EventManagerInterface;
use Laminas\EventManager\Exception\InvalidArgumentException;
use Laminas\EventManager\LazyEventListener;
use Laminas\EventManager\LazyListenerAggregate;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Depends;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
use ReflectionProperty;
use function array_shift;
use function in_array;
class LazyListenerAggregateTest extends TestCase
{
/** @var ContainerInterface&MockObject */
private ContainerInterface $container;
protected function setUp(): void
{
$this->container = $this->createMock(ContainerInterface::class);
}
/** @psalm-return array<string, array{0: mixed}> */
public static function invalidListenerTypes(): array
{
return [
'null' => [null],
'true' => [true],
'false' => [false],
'zero' => [0],
'int' => [1],
'zero-float' => [0.0],
'float' => [1.1],
'string' => ['listener'],
'object' => [(object) ['event' => 'event', 'listener' => 'listener', 'method' => 'method']],
];
}
/** @psalm-return array<string, array{0: array<string, string>}> */
public static function invalidListeners(): array
{
return [
'missing-event' => [
[
'listener' => 'listener',
'method' => 'method',
],
],
'missing-listener' => [
[
'event' => 'event',
'method' => 'method',
],
],
'missing-method' => [
[
'event' => 'event',
'listener' => 'listener',
],
],
];
}
/**
* @param mixed $listener
*/
#[DataProvider('invalidListenerTypes')]
public function testPassingInvalidListenerTypesAtInstantiationRaisesException($listener)
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('must be LazyEventListener instances');
new LazyListenerAggregate([$listener], $this->container);
}
/**
* @param mixed $listener
*/
#[DataProvider('invalidListeners')]
public function testPassingInvalidListenersAtInstantiationRaisesException($listener)
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('missing a valid');
new LazyListenerAggregate([$listener], $this->container);
}
/**
* @psalm-return array<array-key, callable|array{
* event: string,
* listener: string|object,
* method: string,
* priority: int
* }> $listeners
*/
public function testCanPassMixOfValidLazyEventListenerInstancesAndDefinitionsAtInstantiation(): array
{
$listeners = [
[
'event' => 'event',
'listener' => 'listener',
'method' => 'method',
'priority' => 5,
],
new LazyEventListener([
'event' => 'event2',
'listener' => 'listener2',
'method' => 'method2',
], $this->container),
];
$aggregate = new LazyListenerAggregate($listeners, $this->container);
$r = new ReflectionProperty($aggregate, 'lazyListeners');
$test = $r->getValue($aggregate);
self::assertInstanceOf(LazyEventListener::class, $test[0]);
self::assertEquals('event', $test[0]->getEvent());
self::assertSame(
$listeners[1],
$test[1],
'LazyEventListener instance changed during instantiation'
);
return $listeners;
}
/**
* @psalm-param array<array-key, callable|array{
* event: string,
* listener: string|object,
* method: string,
* priority: int
* }> $listeners
*/
#[Depends('testCanPassMixOfValidLazyEventListenerInstancesAndDefinitionsAtInstantiation')]
public function testAttachAttachesLazyListenersViaClosures(array $listeners)
{
$aggregate = new LazyListenerAggregate($listeners, $this->container);
$events = $this->createMock(EventManagerInterface::class);
$events->expects(self::exactly(2))
->method('attach')
->with(
self::callback(static function (string $event): bool {
self::assertTrue(in_array($event, ['event', 'event2']));
return true;
}),
self::callback(static function ($value): bool {
self::assertIsCallable($value);
return true;
}),
self::callback(static function (int $priority): bool {
self::assertTrue($priority === 5 || $priority === 7);
return true;
}),
);
$aggregate->attach($events, 7);
}
public function testListenersArePulledFromContainerAndInvokedWhenTriggered(): void
{
$listener = $this->createMock(TestAsset\BuilderInterface::class);
$listener->expects(self::once())
->method('build')
->with(self::isInstanceOf(EventInterface::class));
$event = $this->createMock(EventInterface::class);
$this->container->expects(self::once())
->method('get')
->with('listener')
->willReturn($listener);
$events = $this->createMock(EventManagerInterface::class);
$events->expects(self::once())
->method('attach')
->with('event', self::isCallable(), 1)
->willReturnArgument(1);
$listeners = [
[
'event' => 'event',
'listener' => 'listener',
'method' => 'build',
],
];
$aggregate = new LazyListenerAggregate($listeners, $this->container);
$aggregate->attach($events);
$r = new ReflectionProperty($aggregate, 'listeners');
$listeners = $r->getValue($aggregate);
self::assertIsArray($listeners);
self::assertCount(1, $listeners);
$listener = array_shift($listeners);
self::assertInstanceOf(LazyEventListener::class, $listener);
$listener($event);
}
}
|