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
|
<?php
declare(strict_types=1);
namespace DI\Test\UnitTest\Definition\Helper;
use DI\Definition\Helper\AutowireDefinitionHelper;
use DI\Definition\ObjectDefinition\MethodInjection;
use DI\Test\UnitTest\Definition\Helper\Fixtures\Class1;
use PHPUnit\Framework\TestCase;
use DI\Definition\Exception\InvalidDefinition;
/**
* @covers \DI\Definition\Helper\AutowireDefinitionHelper
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\DI\Definition\Helper\AutowireDefinitionHelper::class)]
class AutowireDefinitionHelperTest extends TestCase
{
public function test_default_config()
{
$helper = new AutowireDefinitionHelper();
$definition = $helper->getDefinition('foo');
$this->assertEquals('foo', $definition->getName());
$this->assertEquals('foo', $definition->getClassName());
$this->assertNull($definition->getConstructorInjection());
$this->assertEmpty($definition->getPropertyInjections());
$this->assertEmpty($definition->getMethodInjections());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_define_the_class_name()
{
$helper = new AutowireDefinitionHelper('bar');
$definition = $helper->getDefinition('foo');
$this->assertEquals('foo', $definition->getName());
$this->assertEquals('bar', $definition->getClassName());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_declare_the_service_as_lazy()
{
$helper = new AutowireDefinitionHelper();
$helper->lazy();
$definition = $helper->getDefinition('foo');
$this->assertTrue($definition->isLazy());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_define_constructor_parameters()
{
$helper = new AutowireDefinitionHelper();
$helper->constructor(1, 2, 3);
$definition = $helper->getDefinition('foo');
$this->assertEquals([1, 2, 3], $definition->getConstructorInjection()->getParameters());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_override_a_parameter_injection()
{
$helper = new AutowireDefinitionHelper();
$helper->constructorParameter(0, 42);
$definition = $helper->getDefinition('foo');
$constructorInjection = $definition->getConstructorInjection();
$this->assertEquals([42], $constructorInjection->getParameters());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_define_a_property_injection()
{
$helper = new AutowireDefinitionHelper();
$helper->property('prop', 1);
$definition = $helper->getDefinition('foo');
$this->assertCount(1, $definition->getPropertyInjections());
$propertyInjection = current($definition->getPropertyInjections());
$this->assertEquals(1, $propertyInjection->getValue());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_define_a_method_call()
{
$helper = new AutowireDefinitionHelper();
$helper->method('method', 1, 2, 3);
$definition = $helper->getDefinition('foo');
$this->assertCount(1, $definition->getMethodInjections());
$methodInjection = current($definition->getMethodInjections());
$this->assertEquals([1, 2, 3], $methodInjection->getParameters());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_define_multiple_method_calls()
{
$helper = new AutowireDefinitionHelper();
$helper->method('method', 1, 2);
$helper->method('method', 3, 4);
$definition = $helper->getDefinition('foo');
$methodCalls = $definition->getMethodInjections();
$this->assertCount(2, $methodCalls);
$methodInjection = array_shift($methodCalls);
$this->assertEquals([1, 2], $methodInjection->getParameters());
$methodInjection = array_shift($methodCalls);
$this->assertEquals([3, 4], $methodInjection->getParameters());
}
/**
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_override_a_parameter_injection_by_index()
{
$helper = new AutowireDefinitionHelper();
$helper->methodParameter('method', 0, 42);
$definition = $helper->getDefinition('foo');
$this->assertCount(1, $definition->getMethodInjections());
/** @var MethodInjection $methodInjection */
$methodInjection = current($definition->getMethodInjections());
$this->assertEquals('method', $methodInjection->getMethodName());
$this->assertEquals([42], $methodInjection->getParameters());
}
/**
* Check using the parameter name, not its index.
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function allows_to_override_a_parameter_injection_by_name()
{
$helper = new AutowireDefinitionHelper();
$helper->methodParameter('method', 'param2', 'val2');
$helper->methodParameter('method', 'param1', 'val1');
$definition = $helper->getDefinition(Class1::class);
$this->assertCount(1, $definition->getMethodInjections());
$methodInjection = current($definition->getMethodInjections());
// Check that injections are in the good order (matching the real parameters order)
$this->assertEquals(['val1', 'val2'], $methodInjection->getParameters());
}
/**
* If using methodParameter() for "__construct", then the constructor definition should be updated.
* @test
*/
#[\PHPUnit\Framework\Attributes\Test]
public function should_update_constructor_definition_if_overriding_parameter_for_constructor()
{
$helper = new AutowireDefinitionHelper();
$helper->methodParameter('__construct', 0, 42);
$definition = $helper->getDefinition('foo');
$this->assertCount(0, $definition->getMethodInjections());
$this->assertNotNull($definition->getConstructorInjection());
$this->assertEquals([42], $definition->getConstructorInjection()->getParameters());
}
public function test_error_message_on_unknown_parameter()
{
$this->expectException(InvalidDefinition::class);
$this->expectExceptionMessage('Parameter with name \'wrongName\' could not be found');
$helper = new AutowireDefinitionHelper();
$helper->methodParameter('__construct', 'wrongName', 42);
$helper->getDefinition(Class1::class);
}
}
|