class ContainerBuilderTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerBuilderTest.php \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest
- 10 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerBuilderTest.php \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest
@coversDefaultClass \Drupal\Core\DependencyInjection\ContainerBuilder @group DependencyInjection
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest
Expanded class hierarchy of ContainerBuilderTest
File
- core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ ContainerBuilderTest.php, line 14
Namespace
Drupal\Tests\Core\DependencyInjectionView source
class ContainerBuilderTest extends UnitTestCase {
/**
* @covers ::get
*/
public function testGet() {
$container = new ContainerBuilder();
$container
->register('bar', 'Drupal\\Tests\\Core\\DependencyInjection\\Fixture\\BarClass');
$result = $container
->get('bar');
$this
->assertInstanceOf(BarClass::class, $result);
}
/**
* @covers ::set
*/
public function testSet() {
$container = new ContainerBuilder();
$class = new BarClass();
$container
->set('bar', $class);
$this
->assertEquals('bar', $class->_serviceId);
}
/**
* @covers ::set
*/
public function testSetException() {
$container = new ContainerBuilder();
$class = new BarClass();
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage('Service ID names must be lowercase: Bar');
$container
->set('Bar', $class);
}
/**
* @covers ::setParameter
*/
public function testSetParameterException() {
$container = new ContainerBuilder();
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage('Parameter names must be lowercase: Buzz');
$container
->setParameter('Buzz', 'buzz');
}
/**
* @covers ::register
*/
public function testRegisterException() {
$container = new ContainerBuilder();
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage('Service ID names must be lowercase: Bar');
$container
->register('Bar');
}
/**
* @covers ::register
*/
public function testRegister() {
$container = new ContainerBuilder();
$service = $container
->register('bar');
$this
->assertTrue($service
->isPublic());
}
/**
* @covers ::setDefinition
*/
public function testSetDefinition() {
// Test a service with defaults.
$container = new ContainerBuilder();
$definition = new Definition();
$service = $container
->setDefinition('foo', $definition);
$this
->assertTrue($service
->isPublic());
$this
->assertFalse($service
->isPrivate());
// Test a service with public set to false.
$definition = new Definition();
$definition
->setPublic(FALSE);
$service = $container
->setDefinition('foo', $definition);
$this
->assertFalse($service
->isPublic());
$this
->assertFalse($service
->isPrivate());
// Test a service with private set to true. Drupal does not support this.
// We only support using setPublic() to make things not available outside
// the container.
$definition = new Definition();
$definition
->setPrivate(TRUE);
$service = $container
->setDefinition('foo', $definition);
$this
->assertTrue($service
->isPublic());
$this
->assertFalse($service
->isPrivate());
}
/**
* @covers ::setAlias
*/
public function testSetAlias() {
$container = new ContainerBuilder();
$container
->register('bar');
$alias = $container
->setAlias('foo', 'bar');
$this
->assertTrue($alias
->isPublic());
}
/**
* Tests serialization.
*/
public function testSerialize() {
$container = new ContainerBuilder();
$this
->expectException(\AssertionError::class);
serialize($container);
}
/**
* Tests constructor and resource tracking disabling.
*
* This test runs in a separate process to ensure the aliased class does not
* affect any other tests.
*
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testConstructor() {
class_alias(TestInterface::class, 'Symfony\\Component\\Config\\Resource\\ResourceInterface');
$container = new ContainerBuilder();
$this
->assertFalse($container
->isTrackingResources());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContainerBuilderTest:: |
public | function | Tests constructor and resource tracking disabling. | |
ContainerBuilderTest:: |
public | function | @covers ::get | |
ContainerBuilderTest:: |
public | function | @covers ::register | |
ContainerBuilderTest:: |
public | function | @covers ::register | |
ContainerBuilderTest:: |
public | function | Tests serialization. | |
ContainerBuilderTest:: |
public | function | @covers ::set | |
ContainerBuilderTest:: |
public | function | @covers ::setAlias | |
ContainerBuilderTest:: |
public | function | @covers ::setDefinition | |
ContainerBuilderTest:: |
public | function | @covers ::set | |
ContainerBuilderTest:: |
public | function | @covers ::setParameter | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |