-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathAbstractContainerBuilderTestCase.php
More file actions
236 lines (208 loc) · 7.12 KB
/
AbstractContainerBuilderTestCase.php
File metadata and controls
236 lines (208 loc) · 7.12 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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
namespace Matthias\SymfonyDependencyInjectionTest\PhpUnit;
use PHPUnit\Framework\Constraint\LogicalNot;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
abstract class AbstractContainerBuilderTestCase extends TestCase
{
/**
* @var ContainerBuilder
*/
protected $container;
protected function setUp()
{
$this->container = new ContainerBuilder();
$this->container->getCompilerPassConfig()->setOptimizationPasses(array());
$this->container->getCompilerPassConfig()->setRemovingPasses(array());
}
protected function tearDown()
{
$this->container = null;
}
/**
* Shortcut for quickly defining services. The returned Definition object can be further modified if necessary.
*
* @param $serviceId
* @param $class
* @return Definition
*/
protected function registerService($serviceId, $class)
{
$definition = new Definition($class);
$this->container->setDefinition($serviceId, $definition);
return $definition;
}
/**
* Set a service definition you manually created.
*
* @param $serviceId
* @param Definition $definition
*/
protected function setDefinition($serviceId, Definition $definition)
{
$this->container->setDefinition($serviceId, $definition);
}
/**
* Set a parameter.
*
* @param $parameterId
* @param $parameterValue
*/
protected function setParameter($parameterId, $parameterValue)
{
$this->container->setParameter($parameterId, $parameterValue);
}
/**
* Call this method to compile the ContainerBuilder, to test if any problems would occur at runtime.
*/
protected function compile()
{
$this->container->compile();
}
/**
* Assert that the ContainerBuilder for this test has a service definition with the given id and class.
*
* @param $serviceId
* @param $expectedClass
*/
protected function assertContainerBuilderHasService($serviceId, $expectedClass = null)
{
$checkExpectedClass = (func_num_args() > 1);
self::assertThat(
$this->container,
new ContainerBuilderHasServiceDefinitionConstraint($serviceId, $expectedClass, $checkExpectedClass)
);
}
/**
* Assert that the ContainerBuilder for this test does not have a service definition with the given id.
*
* @param $serviceId
*/
protected function assertContainerBuilderNotHasService($serviceId)
{
self::assertThat(
$this->container,
new LogicalNot(new ContainerBuilderHasServiceDefinitionConstraint($serviceId, null, false))
);
}
/**
* Assert that the ContainerBuilder for this test has a synthetic service with the given id.
*
* @param $serviceId
*/
protected function assertContainerBuilderHasSyntheticService($serviceId)
{
self::assertThat(
$this->container,
new ContainerBuilderHasSyntheticServiceConstraint($serviceId)
);
}
/**
* Assert that the ContainerBuilder for this test has an alias and that it is an alias for the given service id.
*
* @param $aliasId
* @param $expectedServiceId
*/
protected function assertContainerBuilderHasAlias($aliasId, $expectedServiceId = null)
{
self::assertThat(
$this->container,
new ContainerBuilderHasAliasConstraint($aliasId, $expectedServiceId)
);
}
/**
* Assert that the ContainerBuilder for this test has a service which is created by other service
*
* @param $serivceId
* @param $expectedFactoryClass
* @param $expectedFactoryMethod
*/
protected function assertContainerBuilderHasCreatedByFactoryService($serviceId, $expectedFactoryClass = null, $expectedFactoryMethod)
{
self::assertThat(
$this->container,
new ContainerBuilderHasFactoryConstraint($serviceId, $expectedFactoryClass, $expectedFactoryMethod)
);
}
/**
* Assert that the ContainerBuilder for this test has a parameter and that its value is the given value.
*
* @param $parameterName
* @param $expectedParameterValue
*/
protected function assertContainerBuilderHasParameter($parameterName, $expectedParameterValue = null)
{
$checkParameterValue = (func_num_args() > 1);
self::assertThat(
$this->container,
new ContainerHasParameterConstraint($parameterName, $expectedParameterValue, $checkParameterValue)
);
}
/**
* Assert that the ContainerBuilder for this test has a service definition with the given id, which has an argument
* at the given index, and its value is the given value.
*
* @param $serviceId
* @param $argumentIndex
* @param $expectedValue
*/
protected function assertContainerBuilderHasServiceDefinitionWithArgument(
$serviceId,
$argumentIndex,
$expectedValue = null
) {
$definition = $this->container->findDefinition($serviceId);
$checkValue = (func_num_args() > 2);
self::assertThat(
$definition,
new DefinitionHasArgumentConstraint($argumentIndex, $expectedValue, $checkValue)
);
}
/**
* Assert that the ContainerBuilder for this test has a service definition with the given id, which has a method
* call to the given method with the given arguments.
*
* @param string $serviceId
* @param string $method
* @param array $arguments
* @param int|null $index
*/
protected function assertContainerBuilderHasServiceDefinitionWithMethodCall(
$serviceId,
$method,
array $arguments = array(),
$index = null
) {
$definition = $this->container->findDefinition($serviceId);
self::assertThat($definition, new DefinitionHasMethodCallConstraint($method, $arguments, $index));
}
/**
* Assert that the ContainerBuilder for this test has a service definition with the given id, which has a tag
* with the given attributes.
*
* @param string $serviceId
* @param string $tag
* @param array $attributes
*/
protected function assertContainerBuilderHasServiceDefinitionWithTag(
$serviceId,
$tag,
array $attributes = array()
) {
$definition = $this->container->findDefinition($serviceId);
self::assertThat($definition, new DefinitionHasTagConstraint($tag, $attributes));
}
/**
* Assert that the ContainerBuilder for this test has a service definition with the given id which is a decorated
* service and it has the given parent service.
*
* @param $serviceId
* @param $parentServiceId
*/
protected function assertContainerBuilderHasServiceDefinitionWithParent($serviceId, $parentServiceId)
{
$definition = $this->container->findDefinition($serviceId);
self::assertThat($definition, new DefinitionIsChildOfConstraint($parentServiceId));
}
}