|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* (c) Christian Gripp <[email protected]> |
|
5
|
|
|
* |
|
6
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
7
|
|
|
* file that was distributed with this source code. |
|
8
|
|
|
*/ |
|
9
|
|
|
|
|
10
|
|
|
namespace Core23\MenuBundle\Tests\DependencyInjection\Compiler; |
|
11
|
|
|
|
|
12
|
|
|
use Core23\MenuBundle\DependencyInjection\Compiler\MenuCompilerPass; |
|
13
|
|
|
use PHPUnit\Framework\TestCase; |
|
14
|
|
|
use Prophecy\Argument; |
|
15
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
|
16
|
|
|
use Symfony\Component\DependencyInjection\Definition; |
|
17
|
|
|
|
|
18
|
|
|
final class MenuCompilerPassTest extends TestCase |
|
19
|
|
|
{ |
|
20
|
|
|
/** |
|
21
|
|
|
* @var ContainerBuilder |
|
22
|
|
|
*/ |
|
23
|
|
|
private $container; |
|
24
|
|
|
|
|
25
|
|
|
private $registryDefinitionMock; |
|
26
|
|
|
|
|
27
|
|
|
protected function setUp(): void |
|
28
|
|
|
{ |
|
29
|
|
|
$this->registryDefinitionMock = $this->prophesize(Definition::class); |
|
30
|
|
|
|
|
31
|
|
|
$this->container = new ContainerBuilder(); |
|
32
|
|
|
$this->container->setDefinition('sonata.block.menu.registry', $this->registryDefinitionMock->reveal()); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
public function testProcess(): void |
|
36
|
|
|
{ |
|
37
|
|
|
$definition = $this->createMock(Definition::class); |
|
38
|
|
|
$definition->expects(static::once())->method('addMethodCall') |
|
39
|
|
|
->with('add', ['main']) |
|
40
|
|
|
; |
|
41
|
|
|
|
|
42
|
|
|
$this->container->setDefinition('sonata.block.menu.registry', $definition); |
|
43
|
|
|
$this->container->setParameter('core23_menu.groups', [ |
|
44
|
|
|
'main' => [ |
|
45
|
|
|
'name' => 'FooMenu', |
|
46
|
|
|
'attributes' => [ |
|
47
|
|
|
'class' => 'my-class', |
|
48
|
|
|
], |
|
49
|
|
|
'items' => [], |
|
50
|
|
|
], |
|
51
|
|
|
]); |
|
52
|
|
|
|
|
53
|
|
|
$compiler = new MenuCompilerPass(); |
|
54
|
|
|
$compiler->process($this->container); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public function testProcessWithEmptyGroups(): void |
|
58
|
|
|
{ |
|
59
|
|
|
$this->container->setParameter('core23_menu.groups', [ |
|
60
|
|
|
]); |
|
61
|
|
|
|
|
62
|
|
|
$compiler = new MenuCompilerPass(); |
|
63
|
|
|
$compiler->process($this->container); |
|
64
|
|
|
|
|
65
|
|
|
$this->registryDefinitionMock->addMethodCall(Argument::any())->shouldNotHaveBeenCalled(); |
|
66
|
|
|
} |
|
67
|
|
|
} |
|
68
|
|
|
|