-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContainerFactoryTestCase.php
546 lines (421 loc) · 25.1 KB
/
ContainerFactoryTestCase.php
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<?php declare(strict_types=1);
namespace Cspray\AnnotatedContainer\Unit\ContainerFactory;
use Cspray\AnnotatedContainer\AnnotatedContainer;
use Cspray\AnnotatedContainer\Autowire\AutowireableFactory;
use Cspray\AnnotatedContainer\Autowire\AutowireableInvoker;
use Cspray\AnnotatedContainer\ContainerFactory\ContainerFactory;
use Cspray\AnnotatedContainer\ContainerFactory\ContainerFactoryOptionsBuilder;
use Cspray\AnnotatedContainer\ContainerFactory\ParameterStore;
use Cspray\AnnotatedContainer\Definition\ContainerDefinition;
use Cspray\AnnotatedContainer\Definition\ContainerDefinitionBuilder;
use Cspray\AnnotatedContainer\Definition\Serializer\XmlContainerDefinitionSerializer;
use Cspray\AnnotatedContainer\Event\Emitter;
use Cspray\AnnotatedContainer\Exception\InvalidAlias;
use Cspray\AnnotatedContainer\Exception\ParameterStoreNotFound;
use Cspray\AnnotatedContainer\Profiles;
use Cspray\AnnotatedContainer\Reflection\Type;
use Cspray\AnnotatedContainer\Reflection\TypeUnion;
use Cspray\AnnotatedContainer\Reflection\TypeIntersect;
use Cspray\AnnotatedContainer\StaticAnalysis\AnnotatedTargetContainerDefinitionAnalyzer;
use Cspray\AnnotatedContainer\StaticAnalysis\ContainerDefinitionAnalysisOptionsBuilder;
use Cspray\AnnotatedContainer\StaticAnalysis\ContainerDefinitionAnalyzer;
use Cspray\AnnotatedContainer\Unit\Helper\HasMockDefinitions;
use Cspray\AnnotatedContainer\Unit\Helper\StubContainerFactoryListener;
use Cspray\AnnotatedContainer\Unit\Helper\StubParameterStore;
use Cspray\AnnotatedContainer\Fixture\Fixture;
use Cspray\AnnotatedContainer\Fixture\Fixtures;
use Cspray\AnnotatedTarget\PhpParserAnnotatedTargetParser;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use function Cspray\AnnotatedContainer\Autowire\autowiredParams;
use function Cspray\AnnotatedContainer\Autowire\rawParam;
use function Cspray\AnnotatedContainer\Autowire\serviceParam;
abstract class ContainerFactoryTestCase extends TestCase {
use HasMockDefinitions;
abstract protected function getContainerFactory(Emitter $emitter = new Emitter()) : ContainerFactory;
abstract protected function getBackingContainerInstanceOf() : Type;
protected function supportsInjectingMultipleNamedServices() : bool {
return true;
}
private function getContainerDefinitionCompiler() : ContainerDefinitionAnalyzer {
return new AnnotatedTargetContainerDefinitionAnalyzer(
new PhpParserAnnotatedTargetParser(),
new Emitter()
);
}
private function getContainer(
string $dir,
Profiles $profiles = null,
ParameterStore $parameterStore = null,
Emitter $emitter = new Emitter()
) : AnnotatedContainer {
$compiler = $this->getContainerDefinitionCompiler();
$optionsBuilder = ContainerDefinitionAnalysisOptionsBuilder::scanDirectories($dir);
$containerDefinition = $compiler->analyze($optionsBuilder->build());
$containerOptions = ContainerFactoryOptionsBuilder::forProfiles($profiles ?? Profiles::fromList(['default']));
$factory = $this->getContainerFactory($emitter);
if ($parameterStore !== null) {
$factory->addParameterStore($parameterStore);
}
return $factory->createContainer($containerDefinition, $containerOptions->build());
}
public function testCreateServiceNotHasThrowsException() {
$container = $this->getContainer(Fixtures::nonAnnotatedServices()->getPath());
self::expectException(NotFoundExceptionInterface::class);
self::expectExceptionMessage('The service "' . Fixtures::nonAnnotatedServices()->nonAnnotatedService()->name() . '" could not be found in this container.');
$container->get(Fixtures::nonAnnotatedServices()->nonAnnotatedService()->name());
}
public function testGetSingleConcreteService() {
$class = Fixtures::singleConcreteService()->fooImplementation()->name();
$container = $this->getContainer(Fixtures::singleConcreteService()->getPath());
$subject = $container->get($class);
self::assertInstanceOf($class, $subject);
}
public function testInterfaceServicePrepare() {
$container = $this->getContainer(Fixtures::interfacePrepareServices()->getPath());
$subject = $container->get(Fixtures::interfacePrepareServices()->fooInterface()->name());
self::assertInstanceOf(Fixtures::interfacePrepareServices()->fooImplementation()->name(), $subject);
self::assertEquals(1, $subject->getBarCounter());
}
public function testServicePrepareInvokedOnContainer() {
$container = $this->getContainer(Fixtures::injectPrepareServices()->getPath());
$subject = $container->get(Fixtures::injectPrepareServices()->prepareInjector()->name());
self::assertInstanceOf(Fixtures::injectPrepareServices()->prepareInjector()->name(), $subject);
self::assertSame('foo', $subject->getVal());
self::assertInstanceOf(Fixtures::injectPrepareServices()->barImplementation()->name(), $subject->getService());
}
public function testMultipleAliasResolutionNoMakeDefine() {
$container = $this->getContainer(Fixtures::ambiguousAliasedServices()->getPath());
self::expectException(ContainerExceptionInterface::class);
$container->get(Fixtures::ambiguousAliasedServices()->fooInterface()->name());
}
public function testServiceDelegateOnInstanceMethod() : void {
$container = $this->getContainer(Fixtures::delegatedService()->getPath());
$service = $container->get(Fixtures::delegatedService()->serviceInterface()->name());
self::assertSame('From ServiceFactory From FooService', $service->getValue());
}
public function testServiceDelegateOnStaticMethod() : void {
$container = $this->getContainer(Fixtures::delegatedServiceStaticFactory()->getPath());
$service = $container->get(Fixtures::delegatedServiceStaticFactory()->serviceInterface()->name());
self::assertSame('From static ServiceFactory From FooService', $service->getValue());
}
public function testHasServiceIfCompiled() {
$container = $this->getContainer(Fixtures::singleConcreteService()->getPath());
self::assertTrue($container->has(Fixtures::singleConcreteService()->fooImplementation()->name()));
self::assertFalse($container->has(Fixtures::ambiguousAliasedServices()->fooInterface()->name()));
}
public function testMultipleServicesWithPrimary() {
$container = $this->getContainer(Fixtures::primaryAliasedServices()->getPath());
self::assertInstanceOf(Fixtures::primaryAliasedServices()->fooImplementation()->name(), $container->get(Fixtures::primaryAliasedServices()->fooInterface()->name()));
}
public function testProfileResolvedServices() {
$container = $this->getContainer(Fixtures::profileResolvedServices()->getPath(), Profiles::fromList(['default', 'dev']));
$instance = $container->get(Fixtures::profileResolvedServices()->fooInterface()->name());
self::assertNotNull($instance);
self::assertInstanceOf(Fixtures::profileResolvedServices()->devImplementation()->name(), $instance);
}
public function testCreateNamedService() {
$container = $this->getContainer(Fixtures::namedServices()->getPath());
self::assertTrue($container->has('foo'));
$instance = $container->get('foo');
self::assertNotNull($instance);
self::assertInstanceOf(Fixtures::namedServices()->fooImplementation()->name(), $instance);
}
public function testCreateInjectStringService() {
$container = $this->getContainer(Fixtures::injectConstructorServices()->getPath());
self::assertSame('foobar', $container->get(Fixtures::injectConstructorServices()->injectStringService()->name())->val);
}
public function testConcreteAliasDefinitionDoesNotHaveServiceDefinition() {
$containerDefinition = $this->containerDefinition(
serviceDefinitions: [
$this->abstractServiceDefinition(Fixtures::implicitAliasedServices()->fooInterface()),
],
aliasDefinitions: [
$this->aliasDefinition(
Fixtures::implicitAliasedServices()->fooInterface(),
Fixtures::implicitAliasedServices()->fooImplementation()
)
]
);
$this->expectException(InvalidAlias::class);
$this->expectExceptionMessage('An AliasDefinition has a concrete type, ' . Fixtures::implicitAliasedServices()->fooImplementation()->name() . ', that is not a registered ServiceDefinition.');
$this->getContainerFactory()->createContainer($containerDefinition);
}
public function testMultipleServicePrepare() {
$container = $this->getContainer(Fixtures::multiplePrepareServices()->getPath());
$subject = $container->get(Fixtures::multiplePrepareServices()->fooImplementation()->name());
self::assertSame('foobar', $subject->getProperty());
}
public function testInjectServiceObjectMethodParam() {
$container = $this->getContainer(Fixtures::injectServiceConstructorServices()->getPath());
$subject = $container->get(Fixtures::injectServiceConstructorServices()->serviceInjector()->name());
self::assertInstanceOf(Fixtures::injectServiceConstructorServices()->fooImplementation()->name(), $subject->foo);
}
public function testInjectEnvMethodParam() {
$container = $this->getContainer(Fixtures::injectConstructorServices()->getPath());
$subject = $container->get(Fixtures::injectConstructorServices()->injectEnvService()->name());
self::assertSame(getenv('USER'), $subject->user);
}
public function testCreateArbitraryStorePresent() {
$parameterStore = new class implements ParameterStore {
public function name(): string {
return 'test-store';
}
public function fetch(Type|TypeUnion|TypeIntersect $type, string $key) : mixed {
return $key . '_test_store';
}
};
$container = $this->getContainer(Fixtures::injectCustomStoreServices()->getPath(), parameterStore: $parameterStore);
$subject = $container->get(Fixtures::injectCustomStoreServices()->scalarInjector()->name());
self::assertSame('key_test_store', $subject->key);
}
public function testCreateArbitraryStoreWithUnionType() {
$parameterStore = new class implements ParameterStore {
public function name() : string {
return 'union-store';
}
public function fetch(Type|TypeUnion|TypeIntersect $type, string $key) : mixed {
$type = Fixtures::injectUnionCustomStoreServices()->fooImplementation()->name();
return new $type();
}
};
$container = $this->getContainer(Fixtures::injectUnionCustomStoreServices()->getPath(), parameterStore: $parameterStore);
$subject = $container->get(Fixtures::injectUnionCustomStoreServices()->unionInjector()->name());
self::assertInstanceOf(Fixtures::injectUnionCustomStoreServices()->fooImplementation()->name(), $subject->fooOrBar);
}
public function testCreateArbitraryStoreWithIntersectType() {
$parameterStore = new class implements ParameterStore {
public function name() : string {
return 'intersect-store';
}
public function fetch(Type|TypeUnion|TypeIntersect $type, string $key) : mixed {
$type = Fixtures::injectIntersectCustomStoreServices()->fooBarImplementation()->name();
return new $type();
}
};
$container = $this->getContainer(Fixtures::injectIntersectCustomStoreServices()->getPath(), parameterStore: $parameterStore);
$subject = $container->get(Fixtures::injectIntersectCustomStoreServices()->intersectInjector()->name());
self::assertInstanceOf(Fixtures::injectIntersectCustomStoreServices()->fooBarImplementation()->name(), $subject->fooAndBar);
}
public function testCreateArbitraryStoreOnServiceNotPresent() {
self::expectException(ParameterStoreNotFound::class);
self::expectExceptionMessage('The ParameterStore "test-store" has not been added to this ContainerFactory. Please add it with ContainerFactory::addParameterStore before creating the container.');
$this->getContainer(Fixtures::injectCustomStoreServices()->getPath());
}
public static function profilesProvider() : array {
return [
['from-prod', Profiles::fromList(['default', 'prod'])],
['from-test', Profiles::fromList(['default', 'test'])],
['from-dev', Profiles::fromList(['default', 'dev'])],
];
}
#[DataProvider('profilesProvider')]
public function testInjectProfilesMethodParam(string $expected, Profiles $profiles) {
$container = $this->getContainer(Fixtures::injectConstructorServices()->getPath(), $profiles);
$subject = $container->get(Fixtures::injectConstructorServices()->injectProfilesStringService()->name());
self::assertSame($expected, $subject->val);
}
public function testMakeAutowiredObject() {
$container = $this->getContainer(Fixtures::autowireableFactoryServices()->getPath());
$subject = $container->make(Fixtures::autowireableFactoryServices()->factoryCreatedService()->name(), autowiredParams(rawParam('scalar', '802')));
self::assertInstanceOf(Fixtures::autowireableFactoryServices()->fooImplementation()->name(), $subject->foo);
self::assertSame('802', $subject->scalar);
}
public function testMakeAutowiredObjectReplaceServiceTarget() {
$container = $this->getContainer(Fixtures::autowireableFactoryServices()->getPath());
$subject = $container->make(Fixtures::autowireableFactoryServices()->factoryCreatedService()->name(), autowiredParams(
rawParam('scalar', 'quarters'),
serviceParam('foo', Fixtures::autowireableFactoryServices()->barImplementation())
));
self::assertInstanceOf(Fixtures::autowireableFactoryServices()->barImplementation()->name(), $subject->foo);
self::assertSame('quarters', $subject->scalar);
}
public function testBackingContainerInstanceOf() {
$containerDefinition = ContainerDefinitionBuilder::newDefinition()->build();
self::assertInstanceOf(
$this->getBackingContainerInstanceOf()->name(),
$this->getContainerFactory()->createContainer($containerDefinition)->backingContainer()
);
}
public function testGettingAutowireableFactory() {
$containerDefinition = ContainerDefinitionBuilder::newDefinition()->build();
$container = $this->getContainerFactory()->createContainer($containerDefinition);
self::assertSame($container, $container->get(AutowireableFactory::class));
}
public function testGettingAutowireableInvoker() {
$containerDefinition = ContainerDefinitionBuilder::newDefinition()->build();
$container = $this->getContainerFactory()->createContainer($containerDefinition);
self::assertSame($container, $container->get(AutowireableInvoker::class));
}
public function testNamedServicesShared() : void {
$container = $this->getContainer(Fixtures::injectNamedServices()->getPath());
$namedService = $container->get('bar');
$typedService = $container->get(Fixtures::injectNamedServices()->barImplementation()->name());
self::assertSame($namedService, $typedService);
}
public function testInjectingNamedServices() : void {
if (!$this->supportsInjectingMultipleNamedServices()) {
$this->markTestSkipped(
$this->getBackingContainerInstanceOf()->name() . ' does not support injecting multiple named services.'
);
}
$container = $this->getContainer(Fixtures::injectNamedServices()->getPath());
/** @var \Cspray\AnnotatedContainer\Fixture\InjectNamedServices\ServiceConsumer $service */
$service = $container->get(Fixtures::injectNamedServices()->serviceConsumer()->name());
self::assertInstanceOf(Fixtures::injectNamedServices()->fooImplementation()->name(), $service->foo);
self::assertInstanceOf(Fixtures::injectNamedServices()->barImplementation()->name(), $service->bar);
}
public function testGettingProfilesImplicitlyShared() : void {
$container = $this->getContainer(Fixtures::singleConcreteService()->getPath());
$a = $container->get(Profiles::class);
$b = $container->get(Profiles::class);
self::assertInstanceOf(Profiles::class, $a);
self::assertSame($a, $b);
}
public function testGettingProfilesHasCorrectList() : void {
$container = $this->getContainer(Fixtures::singleConcreteService()->getPath(), Profiles::fromList(['default', 'foo', 'bar']));
$activeProfile = $container->get(Profiles::class);
self::assertInstanceOf(Profiles::class, $activeProfile);
self::assertSame(['default', 'foo', 'bar'], $activeProfile->toArray());
}
public function testInvokeWithImplicitAlias() : void {
$invoker = $this->getContainer(Fixtures::implicitAliasedServices()->getPath());
$state = new \stdClass();
$state->foo = null;
$callable = fn(\Cspray\AnnotatedContainer\Fixture\ImplicitAliasedServices\FooInterface $foo) => $state->foo = $foo;
$invoker->invoke($callable);
self::assertInstanceOf(Fixtures::implicitAliasedServices()->fooImplementation()->name(), $state->foo);
}
public function testInvokeWithAmbiguousAliasRespectsParameters() : void {
$invoker = $this->getContainer(Fixtures::ambiguousAliasedServices()->getPath());
$state = new \stdClass();
$state->foo = null;
$callable = fn(\Cspray\AnnotatedContainer\Fixture\AmbiguousAliasedServices\FooInterface $foo) => $state->foo = $foo;
$invoker->invoke($callable, autowiredParams(serviceParam('foo', Fixtures::ambiguousAliasedServices()->quxImplementation())));
self::assertInstanceOf(Fixtures::ambiguousAliasedServices()->quxImplementation()->name(), $state->foo);
}
public function testInvokeWithScalarParameter() : void {
$invoker = $this->getContainer(Fixtures::implicitAliasedServices()->getPath());
$state = new \stdClass();
$state->bar = null;
$callable = fn(\Cspray\AnnotatedContainer\Fixture\ImplicitAliasedServices\FooInterface $foo, string $bar) => $state->bar = $bar;
$invoker->invoke($callable, autowiredParams(rawParam('bar', 'foobaz')));
self::assertSame('foobaz', $state->bar);
}
public function testInvokeReturnsCallableReturnValue() : void {
$invoker = $this->getContainer(Fixtures::implicitAliasedServices()->getPath());
$callable = fn() => 'returned from fn()';
$actual = $invoker->invoke($callable);
self::assertSame('returned from fn()', $actual);
}
public function testServiceProfileNotActiveNotShared() : void {
$container = $this->getContainer(Fixtures::profileResolvedServices()->getPath(), Profiles::fromList(['default', 'dev']));
self::assertTrue($container->has(Fixtures::profileResolvedServices()->fooInterface()->name()));
self::assertTrue($container->has(Fixtures::profileResolvedServices()->devImplementation()->name()));
self::assertFalse($container->has(Fixtures::profileResolvedServices()->prodImplementation()->name()));
self::assertFalse($container->has(Fixtures::profileResolvedServices()->testImplementation()->name()));
}
public function testNamedServiceProfileNotActiveNotShared() : void {
$container = $this->getContainer(Fixtures::namedProfileResolvedServices()->getPath(), Profiles::fromList(['default', 'prod']));
self::assertTrue($container->has(Fixtures::namedProfileResolvedServices()->fooInterface()->name()));
self::assertTrue($container->has('prod-foo'));
self::assertFalse($container->has('dev-foo'));
self::assertFalse($container->has('test-foo'));
}
public static function deserializeContainerProvider() : array {
return [
[Fixtures::injectCustomStoreServices(), function(ContainerFactory $containerFactory, ContainerDefinition $deserialize) {
$store = new StubParameterStore();
$containerFactory->addParameterStore($store);
$container = $containerFactory->createContainer($deserialize);
$service = $container->get(Fixtures::injectCustomStoreServices()->scalarInjector()->name());
self::assertSame('from test-store key', $service->key);
}],
[Fixtures::injectConstructorServices(), function(ContainerFactory $containerFactory, ContainerDefinition $deserialize) {
$container = $containerFactory->createContainer($deserialize);
$service = $container->get(Fixtures::injectConstructorServices()->injectTypeUnionService()->name());
self::assertSame(4.20, $service->value);
}]
];
}
#[DataProvider('deserializeContainerProvider')]
public function testDeserializingContainerWithInjectAllowsServiceCreation(Fixture $fixture, callable $assertions) {
$serializer = new XmlContainerDefinitionSerializer();
$containerDefinition = $this->getContainerDefinitionCompiler()->analyze(
ContainerDefinitionAnalysisOptionsBuilder::scanDirectories($fixture->getPath())->build()
);
$serialized = $serializer->serialize($containerDefinition);
$deserialize = $serializer->deserialize($serialized);
$containerFactory = $this->getContainerFactory();
$assertions($containerFactory, $deserialize);
}
public function testContainerCreationEventsEmitted() : void {
$emitter = new Emitter();
$listener = new StubContainerFactoryListener();
$emitter->addListener($listener);
$this->getContainer(
Fixtures::singleConcreteService()->getPath(),
Profiles::fromList(['default']),
emitter: $emitter
);
self::assertSame(['BeforeContainerCreation', 'AfterContainerCreation'], $listener->getTriggeredEvents());
}
public function testCreatingServiceWithInjectServiceCollectionDecorator() : void {
$container = $this->getContainer(Fixtures::injectServiceCollectionDecorator()->getPath());
$fooService = $container->get(Fixtures::injectServiceCollectionDecorator()->fooService()->name());
self::assertInstanceOf(
Fixtures::injectServiceCollectionDecorator()->fooService()->name(),
$fooService
);
self::assertInstanceOf(
Fixtures::injectServiceCollectionDecorator()->compositeFoo()->name(),
$fooService->foo
);
self::assertCount(3, $fooService->foo->foos);
$fooClasses = array_map(static fn(object $foo) => $foo::class, $fooService->foo->foos);
self::assertContains(
Fixtures::injectServiceCollectionDecorator()->fooImplementation()->name(),
$fooClasses
);
self::assertContains(
Fixtures::injectServiceCollectionDecorator()->barImplementation()->name(),
$fooClasses
);
self::assertContains(
Fixtures::injectServiceCollectionDecorator()->bazImplementation()->name(),
$fooClasses
);
}
public function testCreatingServiceWithInjectServiceCollection() : void {
$container = $this->getContainer(Fixtures::injectServiceCollection()->getPath());
$collectionInjector = $container->get(Fixtures::injectServiceCollection()->collectionInjector()->name());
self::assertCount(3, $collectionInjector->services);
self::assertContainsOnlyInstancesOf(
Fixtures::injectServiceCollection()->fooInterface()->name(),
$collectionInjector->services
);
}
public function testCreatingServiceWithInjectServiceDomainCollection() : void {
$container = $this->getContainer(Fixtures::injectServiceDomainCollection()->getPath());
$collectionInjector = $container->get(Fixtures::injectServiceDomainCollection()->collectionInjector()->name());
self::assertCount(3, $collectionInjector->collection->services);
self::assertContainsOnlyInstancesOf(
Fixtures::injectServiceDomainCollection()->fooInterface()->name(),
$collectionInjector->collection->services
);
}
public static function profileAwareServiceDelegateProvider() : array {
return [
[['default', 'test'], Fixtures::profileAwareServiceDelegate()->testService()->name()],
[['default', 'prod'], Fixtures::profileAwareServiceDelegate()->prodService()->name()],
];
}
#[DataProvider('profileAwareServiceDelegateProvider')]
public function testCreatingServiceWithProfileAwareServiceDelegate(array $profiles, string $expected) : void {
$container = $this->getContainer(Fixtures::profileAwareServiceDelegate()->getPath(), Profiles::fromList($profiles));
$service = $container->get(Fixtures::profileAwareServiceDelegate()->service()->name());
self::assertSame($expected, $service->get());
}
}