|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace Scheb\TwoFactorBundle\Tests\DependencyInjection\Compiler; |
| 6 | + |
| 7 | +use Scheb\TwoFactorBundle\DependencyInjection\Compiler\AccessListenerCompilerPass; |
| 8 | +use Scheb\TwoFactorBundle\Tests\TestCase; |
| 9 | +use Symfony\Bundle\SecurityBundle\Security\FirewallContext; |
| 10 | +use Symfony\Component\DependencyInjection\Argument\IteratorArgument; |
| 11 | +use Symfony\Component\DependencyInjection\ContainerBuilder; |
| 12 | +use Symfony\Component\DependencyInjection\Definition; |
| 13 | +use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; |
| 14 | +use Symfony\Component\DependencyInjection\Reference; |
| 15 | + |
| 16 | +class AccessListenerCompilerPassTest extends TestCase |
| 17 | +{ |
| 18 | + /** |
| 19 | + * @var AccessListenerCompilerPass |
| 20 | + */ |
| 21 | + private $compilerPass; |
| 22 | + |
| 23 | + /** |
| 24 | + * @var ContainerBuilder |
| 25 | + */ |
| 26 | + private $container; |
| 27 | + |
| 28 | + /** |
| 29 | + * @var Definition |
| 30 | + */ |
| 31 | + private $firewallContextDefinition; |
| 32 | + |
| 33 | + protected function setUp(): void |
| 34 | + { |
| 35 | + $this->container = new ContainerBuilder(); |
| 36 | + $this->compilerPass = new AccessListenerCompilerPass(); |
| 37 | + |
| 38 | + $this->firewallContextDefinition = new Definition(FirewallContext::class); |
| 39 | + $this->container->setDefinition('security.firewall.map.context.firewallName', $this->firewallContextDefinition); |
| 40 | + } |
| 41 | + |
| 42 | + private function stubTaggedContainerService(array $taggedServices): void |
| 43 | + { |
| 44 | + foreach ($taggedServices as $id => $tags) { |
| 45 | + $definition = $this->container->register($id); |
| 46 | + |
| 47 | + foreach ($tags as $attributes) { |
| 48 | + $definition->addTag('scheb_two_factor.access_listener', $attributes); |
| 49 | + } |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + private function stubFirewallContextListeners($listenersArg): void |
| 54 | + { |
| 55 | + $this->firewallContextDefinition->setArgument(0, $listenersArg); |
| 56 | + } |
| 57 | + |
| 58 | + private function assertFirewallContextListeners(IteratorArgument $expected): void |
| 59 | + { |
| 60 | + $listenersArgument = $this->firewallContextDefinition->getArgument(0); |
| 61 | + $this->assertEquals($expected, $listenersArgument); |
| 62 | + } |
| 63 | + |
| 64 | + /** |
| 65 | + * @test |
| 66 | + */ |
| 67 | + public function process_missingAlias_throwException(): void |
| 68 | + { |
| 69 | + $taggedServices = [ |
| 70 | + 'serviceId' => [ |
| 71 | + 0 => [], |
| 72 | + ], |
| 73 | + ]; |
| 74 | + $this->stubTaggedContainerService($taggedServices); |
| 75 | + |
| 76 | + $this->expectException(InvalidArgumentException::class); |
| 77 | + $this->expectExceptionMessage('Tag "scheb_two_factor.access_listener" requires attribute "firewall" to be set'); |
| 78 | + $this->compilerPass->process($this->container); |
| 79 | + } |
| 80 | + |
| 81 | + /** |
| 82 | + * @test |
| 83 | + */ |
| 84 | + public function process_invalidListenersArgument_throwException(): void |
| 85 | + { |
| 86 | + $taggedServices = [ |
| 87 | + 'serviceId' => [ |
| 88 | + 0 => ['firewall' => 'firewallName'], |
| 89 | + ], |
| 90 | + ]; |
| 91 | + $this->stubTaggedContainerService($taggedServices); |
| 92 | + $this->stubFirewallContextListeners([]); |
| 93 | + |
| 94 | + $this->expectException(InvalidArgumentException::class); |
| 95 | + $this->expectExceptionMessage('Cannot inject access listener'); |
| 96 | + $this->compilerPass->process($this->container); |
| 97 | + } |
| 98 | + |
| 99 | + /** |
| 100 | + * @test |
| 101 | + */ |
| 102 | + public function process_requirementsFulfilled_addAccessListener(): void |
| 103 | + { |
| 104 | + $taggedServices = [ |
| 105 | + 'serviceId' => [ |
| 106 | + 0 => ['firewall' => 'firewallName'], |
| 107 | + ], |
| 108 | + ]; |
| 109 | + |
| 110 | + $this->stubTaggedContainerService($taggedServices); |
| 111 | + $this->stubFirewallContextListeners(new IteratorArgument([ |
| 112 | + new Reference('firewallListener1'), |
| 113 | + new Reference('firewallListener2'), |
| 114 | + ])); |
| 115 | + |
| 116 | + $this->compilerPass->process($this->container); |
| 117 | + |
| 118 | + $this->assertFirewallContextListeners(new IteratorArgument([ |
| 119 | + new Reference('firewallListener1'), |
| 120 | + new Reference('firewallListener2'), |
| 121 | + new Reference('serviceId'), |
| 122 | + ])); |
| 123 | + } |
| 124 | +} |
0 commit comments