forked from liip/LiipTestFixturesBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigEventsTest.php
More file actions
155 lines (127 loc) · 5.31 KB
/
ConfigEventsTest.php
File metadata and controls
155 lines (127 loc) · 5.31 KB
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
<?php
declare(strict_types=1);
/*
* This file is part of the Liip/TestFixturesBundle
*
* (c) Lukas Kahwe Smith <smith@pooteeweet.org>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Liip\Acme\Tests\Test;
use Doctrine\Common\Annotations\Annotation\IgnoreAnnotation;
use Liip\Acme\Tests\AppConfigEvents\AppConfigEventsKernel;
use Liip\Acme\Tests\AppConfigEvents\EventListener\FixturesSubscriber;
use Liip\Acme\Tests\Traits\ContainerProvider;
use Liip\TestFixturesBundle\LiipTestFixturesEvents;
use Liip\TestFixturesBundle\Services\DatabaseToolCollection;
use Liip\TestFixturesBundle\Services\DatabaseTools\AbstractDatabaseTool;
use Liip\TestFixturesBundle\Services\DatabaseTools\ORMSqliteDatabaseTool;
/**
* Tests that configuration has been loaded and users can be logged in.
*
* Use Tests/AppConfig/AppConfigEventsKernel.php instead of
* Tests/App/AppKernel.php.
* So it must be loaded in a separate process.
*
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*
* @IgnoreAnnotation("dataProvider")
*
* @internal
*/
class ConfigEventsTest extends FixturesTestCase
{
use ContainerProvider;
protected function setUp(): void
{
parent::setUp();
self::bootKernel();
}
/**
* Check that events have been registered, they don't do anything but will
* be called during tests and that ensure that the examples are working.
*/
public function testLoadEmptyFixturesAndCheckEvents(): void
{
$databaseTool = $this->getTestContainer()->get(DatabaseToolCollection::class)->get();
$this->assertInstanceOf(ORMSqliteDatabaseTool::class, $databaseTool);
$fixtures = $databaseTool->loadFixtures([]);
$this->assertInstanceOf(
'Doctrine\Common\DataFixtures\Executor\ORMExecutor',
$fixtures
);
$eventDispatcher = $this->getTestContainer()->get('event_dispatcher');
$event = $eventDispatcher->getListeners(LiipTestFixturesEvents::PRE_FIXTURE_BACKUP_RESTORE);
$this->assertSame('preFixtureBackupRestore', $event[0][1]);
$event = $eventDispatcher->getListeners(LiipTestFixturesEvents::POST_FIXTURE_SETUP);
$this->assertSame('postFixtureSetup', $event[0][1]);
$event = $eventDispatcher->getListeners(LiipTestFixturesEvents::POST_FIXTURE_BACKUP_RESTORE);
$this->assertSame('postFixtureBackupRestore', $event[0][1]);
$event = $eventDispatcher->getListeners(LiipTestFixturesEvents::PRE_REFERENCE_SAVE);
$this->assertSame('preReferenceSave', $event[0][1]);
$event = $eventDispatcher->getListeners(LiipTestFixturesEvents::POST_REFERENCE_SAVE);
$this->assertSame('postReferenceSave', $event[0][1]);
}
/**
* Check that events are called.
*
* We disable the cache to ensure that all the code is executed.
*
* @dataProvider fixturesEventsProvider
*/
public function testLoadEmptyFixturesAndCheckEventsAreCalled(string $eventName, string $methodName, int $numberOfInvocations, bool $withCache = true): void
{
/** @var AbstractDatabaseTool $databaseTool */
$databaseTool = $this->getTestContainer()->get(DatabaseToolCollection::class)->get();
$this->assertInstanceOf(ORMSqliteDatabaseTool::class, $databaseTool);
// Create the mock and declare that the method must be called (or not)
$mock = $this->getMockBuilder(FixturesSubscriber::class)->getMock();
$mock->expects($this->exactly($numberOfInvocations))
->method($methodName)
;
// Register to the event
$eventDispatcher = $this->getTestContainer()->get('event_dispatcher');
$eventDispatcher->addListener(
$eventName,
[$mock, $methodName]
);
// By loading fixtures, the events will be called (or not)
if ($withCache) {
$fixtures = $databaseTool->loadFixtures([]);
} else {
$fixtures = $databaseTool->withDatabaseCacheEnabled(false)->loadFixtures([]);
}
$this->assertInstanceOf(
'Doctrine\Common\DataFixtures\Executor\ORMExecutor',
$fixtures
);
}
/**
* We disable the cache to ensure that other events are called.
*
* @dataProvider fixturesEventsProvider
*/
public function testLoadEmptyFixturesAndCheckEventsAreCalledWithoutCache(string $eventName, string $methodName, int $numberOfInvocations): void
{
// Swap 0 → 1 and 1 → 0
$numberOfInvocations = (int) (!$numberOfInvocations);
$this->testLoadEmptyFixturesAndCheckEventsAreCalled($eventName, $methodName, $numberOfInvocations, false);
}
public static function fixturesEventsProvider(): array
{
return [
[LiipTestFixturesEvents::PRE_FIXTURE_BACKUP_RESTORE, 'preFixtureBackupRestore', 1],
[LiipTestFixturesEvents::POST_FIXTURE_SETUP, 'postFixtureSetup', 0],
[LiipTestFixturesEvents::POST_FIXTURE_BACKUP_RESTORE, 'postFixtureBackupRestore', 1],
[LiipTestFixturesEvents::PRE_REFERENCE_SAVE, 'preReferenceSave', 0],
[LiipTestFixturesEvents::POST_REFERENCE_SAVE, 'postReferenceSave', 0],
];
}
protected static function getKernelClass(): string
{
return AppConfigEventsKernel::class;
}
}