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 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
|
<?php
declare(strict_types=1);
namespace DI\Test\IntegrationTest\Definitions;
use Closure;
use DI\ContainerBuilder;
use DI\Definition\Exception\InvalidDefinition;
use DI\Factory\RequestedEntry;
use DI\Test\IntegrationTest\BaseContainerTest;
use DI\Test\UnitTest\Definition\Resolver\Fixture\NoConstructor;
use Psr\Container\ContainerInterface;
use stdClass;
use function DI\autowire;
use function DI\create;
use function DI\factory;
use function DI\get;
use DI\NotFoundException;
/**
* Test factory definitions.
*/
class FactoryDefinitionTest extends BaseContainerTest
{
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_closure_shortcut(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function () {
return 'bar';
},
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
$this->assertEquals('bar', $container->get('factory'));
}
public static function provideCallables(): array
{
$callables = [
'closure' => function () {
return 'bar';
},
'function' => __NAMESPACE__ . '\FactoryDefinition_test',
'invokableObject' => new FactoryDefinitionInvokableTestClass,
'invokableClass' => FactoryDefinitionInvokableTestClass::class,
'[Class, staticMethod]' => [FactoryDefinitionTestClass::class, 'staticFoo'],
'Class::staticMethod' => FactoryDefinitionTestClass::class . '::staticFoo',
'[object, method]' => [new FactoryDefinitionTestClass, 'foo'],
'[class, method]' => [FactoryDefinitionTestClass::class, 'foo'],
'class::method' => FactoryDefinitionTestClass::class . '::foo',
];
$testCases = [];
foreach ($callables as $callableName => $callable) {
foreach (self::provideContainer() as $containerName => $container) {
$testCases[$containerName . ' - ' . $callableName] = [$callable, clone $container[0]];
}
}
return $testCases;
}
/**
* @dataProvider provideCallables
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideCallables')]
public function test_factory($callable, ContainerBuilder $builder)
{
$isClosure = $callable instanceof Closure;
$containsAnObject = is_object($callable) || is_object($callable[0]);
if (!$isClosure && $containsAnObject && $builder->isCompilationEnabled()) {
// Invokable objects are not compilable
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('An object was found but objects cannot be compiled');
}
$builder->addDefinitions([
'factory' => factory($callable),
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertSame('bar', $container->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_named_container_entry_as_factory(ContainerBuilder $builder)
{
$builder->addDefinitions([
'bar_baz' => create(FactoryDefinitionTestClass::class),
'factory' => factory(['bar_baz', 'foo']),
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertSame('bar', $container->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_named_container_entry_as_factory_with_string_callable(ContainerBuilder $builder)
{
$builder->addDefinitions([
'bar_baz' => create(FactoryDefinitionTestClass::class),
'factory' => factory('bar_baz::foo'),
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertSame('bar', $container->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_named_invokable_container_entry_as_factory(ContainerBuilder $builder)
{
$builder->addDefinitions([
'bar_baz' => create(FactoryDefinitionInvokableTestClass::class),
'factory' => factory('bar_baz'),
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertSame('bar', $container->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_error_message_on_invokable_class_without_autowiring(ContainerBuilder $builder)
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Invokable classes cannot be automatically resolved if autowiring is disabled on the container, you need to enable autowiring or define the entry manually.');
$builder->addDefinitions([
'factory' => factory(FactoryDefinitionInvokableTestClass::class),
]);
$builder->useAutowiring(false);
$container = $builder->build();
$container->get('factory');
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_container_gets_injected_as_first_argument_without_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function ($c) {
return $c;
},
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf(ContainerInterface::class, $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_requested_entry_gets_injected_as_second_argument_without_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'foobar' => function ($c, $entry) {
return $entry->getName();
},
]);
$factory = $builder->build()->get('foobar');
$this->assertSame('foobar', $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_requested_entry_gets_injected_with_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'foobar' => function (RequestedEntry $entry) {
return $entry->getName();
},
]);
$factory = $builder->build()->get('foobar');
$this->assertSame('foobar', $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_arbitrary_object_gets_injected_via_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function (stdClass $stdClass) {
return $stdClass;
},
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf('stdClass', $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_container_and_requested_entry_get_injected_in_arbitrary_position_via_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function (stdClass $stdClass, RequestedEntry $e, ContainerInterface $c) {
return [$stdClass, $e, $c];
},
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf('stdClass', $factory[0]);
$this->assertInstanceOf(RequestedEntry::class, $factory[1]);
$this->assertInstanceOf(ContainerInterface::class, $factory[2]);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_container_get_injected_in_arbitrary_position_via_typehint(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function (stdClass $stdClass, ContainerInterface $c) {
return [$stdClass, $c];
},
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf('stdClass', $factory[0]);
$this->assertInstanceOf(ContainerInterface::class, $factory[1]);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_value_gets_injected_via_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => factory(function ($value) {
return $value;
})->parameter('value', 'Foo'),
]);
$factory = $builder->build()->get('factory');
$this->assertEquals('Foo', $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_named_entry_gets_injected_via_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'basicClass' => create(stdClass::class),
'factory' => factory(function ($entry) {
return $entry;
})->parameter('entry', get('basicClass')),
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf(stdClass::class, $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_sub_entry_gets_injected_via_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => factory(function ($entry) {
return $entry;
})->parameter('entry', create(stdClass::class)),
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf(stdClass::class, $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_class_gets_injected_via_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => factory(function ($entry) {
return $entry;
})->parameter('entry', get(stdClass::class)),
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf(stdClass::class, $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_multiple_injections_via_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'secret' => 'Bar',
'factory' => factory(function ($a, $b, $c) {
return [$a, $b, $c];
})->parameter('a', get('secret'))
->parameter('b', create(FactoryDefinitionTestClass::class))
->parameter('c', 'Foo'),
]);
$factory = $builder->build()->get('factory');
$this->assertEquals('Bar', $factory[0]);
$this->assertInstanceOf(FactoryDefinitionTestClass::class, $factory[1]);
$this->assertEquals('Foo', $factory[2]);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_container_and_requested_entry_and_typehints_get_injected_with_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'secret' => 'Bar',
'factory' => factory(function ($container, $requestedEntry, stdClass $object, $value) {
return [$container, $requestedEntry, $object, $value];
})->parameter('value', get('secret')),
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf(ContainerInterface::class, $factory[0]);
$this->assertInstanceOf(RequestedEntry::class, $factory[1]);
$this->assertInstanceOf('stdClass', $factory[2]);
$this->assertEquals('Bar', $factory[3]);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_container_and_requested_entry_and_typehints_get_injected_in_arbitrary_positions_with_parameter(ContainerBuilder $builder)
{
$builder->addDefinitions([
'secret' => 'Bar',
'factory' => factory(function (stdClass $object, RequestedEntry $requestedEntry, $value, ContainerInterface $container) {
return [$object, $requestedEntry, $value, $container];
})->parameter('value', get('secret')),
]);
$factory = $builder->build()->get('factory');
$this->assertInstanceOf('stdClass', $factory[0]);
$this->assertInstanceOf(RequestedEntry::class, $factory[1]);
$this->assertEquals('Bar', $factory[2]);
$this->assertInstanceOf(ContainerInterface::class, $factory[3]);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_parameters_take_priority_over_container(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => factory(function (NoConstructor $nc) {
return $nc;
})->parameter('nc', get('foo')),
NoConstructor::class => autowire(),
'foo' => autowire(NoConstructor::class),
]);
$container = $builder->build();
$parameterPassed = $container->get('factory');
// Check that "foo" is injected, not the "NoConstructor" entry that could be autowired from the typehint
$this->assertSame($container->get('foo'), $parameterPassed);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_parameters_take_priority_over_default_value(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => factory(function ($foo = 'Foo') {
return $foo;
})->parameter('foo', 'Bar'),
]);
$factory = $builder->build()->get('factory');
$this->assertEquals('Bar', $factory);
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_resolve_failure_on_parameter(ContainerBuilder $builder)
{
$this->expectException(NotFoundException::class);
$this->expectExceptionMessage('No entry or class found for \'missing\'');
$builder->addDefinitions([
'factory' => factory(function ($foo) {
return $foo;
})->parameter('foo', get('missing')),
]);
$builder->build()->get('factory');
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_not_callable_factory_definition(ContainerBuilder $builder)
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Entry "foo" cannot be resolved: factory \'Hello World\' is neither a callable nor a valid container entry');
$builder->addDefinitions([
'foo' => factory('Hello World'),
]);
$builder->build()->get('foo');
}
/**
* Test that __FILE__ and similar magic constants are preserved even when
* the container is compiled.
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_closure_using_magic_constant(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function () {
return __FILE__;
},
]);
$this->assertEquals(__FILE__, $builder->build()->get('factory'));
}
/**
* Test that non FQN for classes are preserved even when the container is compiled.
* @dataProvider provideContainer
* @requires PHP < 8.4.0
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_closure_containing_class_name_not_fully_qualified(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function () {
return FactoryDefinitionTestClass::class;
},
]);
$this->assertEquals(FactoryDefinitionTestClass::class, $builder->build()->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_closure_with_return_types_are_supported(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function () : stdClass {
return new stdClass;
},
]);
$this->assertEquals(new stdClass, $builder->build()->get('factory'));
}
public function test_closure_which_use_variables_cannot_be_compiled()
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Cannot compile closures which import variables using the `use` keyword');
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$foo = 'hello';
$builder->addDefinitions([
'factory' => function () use ($foo) {
return $foo;
},
]);
$builder->build();
}
public function test_closure_which_use_this_cannot_be_compiled()
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Cannot compile closures which use $this or self/static/parent references');
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$builder->addDefinitions([
'factory' => function () {
return $this->foo();
},
]);
$builder->build();
}
public function test_closure_which_use_self_cannot_be_compiled()
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Cannot compile closures which use $this or self/static/parent references');
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$builder->addDefinitions([
'factory' => function () {
return self::foo();
},
]);
$builder->build();
}
public function test_closure_which_use_static_reference_cannot_be_compiled()
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Cannot compile closures which use $this or self/static/parent references');
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$builder->addDefinitions([
'factory' => function () {
return static::foo();
},
]);
$builder->build();
}
private function foo(): string
{
return 'hello';
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_static_closure_are_supported(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => static function () {
return new stdClass;
},
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertEquals(new stdClass, $container->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_static_closures_inside_closures_are_supported(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => static function () {
return static function () {
return new stdClass;
};
},
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertEquals(new stdClass, $container->get('factory')());
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_closure_with_static_variables_are_supported(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function () {
static $i = 0;
return $i;
},
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertSame(0, $container->get('factory'));
}
public function test_multiple_closures_on_the_same_line_cannot_be_compiled()
{
$this->markTestSkipped('laravel/serializable-closure doesn\'t throw on multiple closures on the same line');
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Cannot compile closures when two closures are defined on the same line');
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$builder->addDefinitions(__DIR__ . '/FactoryDefinition/config.inc');
$this->assertEquals('foo', $builder->build()->get('factory'));
}
/**
* @dataProvider provideContainer
*/
#[\PHPUnit\Framework\Attributes\DataProvider('provideContainer')]
public function test_optional_parameters_can_be_omitted(ContainerBuilder $builder)
{
$builder->addDefinitions([
'factory' => function ($c, $entry, $a = 'foo') {
return $a;
},
]);
$container = $builder->build();
self::assertEquals('foo', $container->get('factory'));
}
public function test_fn_closures_compilation_is_supported()
{
$builder = (new ContainerBuilder)->enableCompilation(self::COMPILATION_DIR, self::generateCompiledClassName());
$builder->addDefinitions([
'factory' => fn () => new stdClass(),
]);
$container = $builder->build();
self::assertEntryIsCompiled($container, 'factory');
self::assertEquals(new stdClass, $container->get('factory'));
}
}
class FactoryDefinitionTestClass
{
public static function staticFoo()
{
return 'bar';
}
public function foo()
{
return 'bar';
}
}
class FactoryDefinitionInvokableTestClass
{
public function __invoke()
{
return 'bar';
}
}
function FactoryDefinition_test()
{
return 'bar';
}
|