class BackendCompilerPassTest
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\BackendCompilerPassTest
- 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\BackendCompilerPassTest
- 10 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\BackendCompilerPassTest
@coversDefaultClass \Drupal\Core\DependencyInjection\Compiler\BackendCompilerPass @group DependencyInjection
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait
- class \Drupal\Tests\Core\DependencyInjection\Compiler\BackendCompilerPassTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of BackendCompilerPassTest
File
-
core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ Compiler/ BackendCompilerPassTest.php, line 17
Namespace
Drupal\Tests\Core\DependencyInjection\CompilerView source
class BackendCompilerPassTest extends UnitTestCase {
/**
* The tested backend compiler pass.
*
* @var \Drupal\Core\DependencyInjection\Compiler\BackendCompilerPass
*/
protected $backendPass;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->backendPass = new BackendCompilerPass();
}
/**
* Tests the process method.
*
* @covers ::process
*/
public function testProcess() : void {
// Add a container with no set default_backend.
$prefix = __NAMESPACE__ . '\\ServiceClass';
$service = (new Definition($prefix . 'Default'))->addTag('backend_overridable');
$container = $this->getMysqlContainer($service);
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'Default', get_class($container->get('service')));
// Set the default_backend so the mysql service should be used.
$container = $this->getMysqlContainer($service);
$container->setParameter('default_backend', 'mysql');
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'Mysql', get_class($container->get('service')));
// Configure a manual alias for the service, so ensure that it is not
// overridden by the default backend.
$container = $this->getMysqlContainer($service);
$container->setParameter('default_backend', 'mysql');
$container->setDefinition('mariadb.service', new Definition($prefix . 'MariaDb'));
$container->setAlias('service', new Alias('mariadb.service'));
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'MariaDb', get_class($container->get('service')));
// Check the database driver is the default.
$container = $this->getSqliteContainer($service);
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'Sqlite', get_class($container->get('service')));
// Test the opt out.
$container = $this->getSqliteContainer($service);
$container->setParameter('default_backend', '');
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'Default', get_class($container->get('service')));
// Set the mysql and the DriverTestMysql service, now the DriverTestMysql
// service, as it is the driver override, should be used.
$container = $this->getDriverTestMysqlContainer($service);
$container->setDefinition('mysql.service', new Definition(__NAMESPACE__ . '\\ServiceClassMysql'));
$container->setDefinition('DriverTestMysql.service', new Definition(__NAMESPACE__ . '\\ServiceClassDriverTestMysql'));
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'DriverTestMysql', get_class($container->get('service')));
// Set the mysql service, now the mysql service, as it is the database_type
// override, should be used.
$container = $this->getDriverTestMysqlContainer($service);
$container->setDefinition('mysql.service', new Definition(__NAMESPACE__ . '\\ServiceClassMysql'));
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'Mysql', get_class($container->get('service')));
// Set the DriverTestMysql service, now the DriverTestMysql service, as it
// is the driver override, should be used.
$container = $this->getDriverTestMysqlContainer($service);
$container->setDefinition('DriverTestMysql.service', new Definition(__NAMESPACE__ . '\\ServiceClassDriverTestMysql'));
$this->backendPass
->process($container);
$this->assertEquals($prefix . 'DriverTestMysql', get_class($container->get('service')));
}
/**
* Creates a container with a sqlite database service in it.
*
* This is necessary because the container clone does not clone the parameter
* bag so the setParameter() call effects the parent container as well.
*
* @param \Symfony\Component\DependencyInjection\Definition $service
* The service definition.
*
* @return \Symfony\Component\DependencyInjection\ContainerBuilder
*/
protected function getSqliteContainer($service) {
$container = new ContainerBuilder();
$container->setDefinition('service', $service);
$container->setDefinition('sqlite.service', new Definition(__NAMESPACE__ . '\\ServiceClassSqlite'));
$mock = $this->getMockBuilder('Drupal\\sqlite\\Driver\\Database\\sqlite\\Connection')
->onlyMethods([])
->disableOriginalConstructor()
->getMock();
$container->set('database', $mock);
return $container;
}
/**
* Creates a container with a mysql database service definition in it.
*
* This is necessary because the container clone does not clone the parameter
* bag so the setParameter() call effects the parent container as well.
*
* @param \Symfony\Component\DependencyInjection\Definition $service
* The service definition.
*
* @return \Symfony\Component\DependencyInjection\ContainerBuilder
*/
protected function getMysqlContainer($service) {
$container = new ContainerBuilder();
$container->setDefinition('service', $service);
$container->setDefinition('mysql.service', new Definition(__NAMESPACE__ . '\\ServiceClassMysql'));
return $container;
}
/**
* Creates a container with a DriverTestMysql database mock definition in it.
*
* This is necessary because the container clone does not clone the parameter
* bag so the setParameter() call effects the parent container as well.
*
* @param \Symfony\Component\DependencyInjection\Definition $service
* The service definition.
*
* @return \Symfony\Component\DependencyInjection\ContainerBuilder
*/
protected function getDriverTestMysqlContainer($service) {
$container = new ContainerBuilder();
$container->setDefinition('service', $service);
$mock = $this->getMockBuilder('Drupal\\driver_test\\Driver\\Database\\DriverTestMysql\\Connection')
->onlyMethods([])
->disableOriginalConstructor()
->getMock();
$container->set('database', $mock);
return $container;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
BackendCompilerPassTest::$backendPass | protected | property | The tested backend compiler pass. | |
BackendCompilerPassTest::getDriverTestMysqlContainer | protected | function | Creates a container with a DriverTestMysql database mock definition in it. | |
BackendCompilerPassTest::getMysqlContainer | protected | function | Creates a container with a mysql database service definition in it. | |
BackendCompilerPassTest::getSqliteContainer | protected | function | Creates a container with a sqlite database service in it. | |
BackendCompilerPassTest::setUp | protected | function | Overrides UnitTestCase::setUp | |
BackendCompilerPassTest::testProcess | public | function | Tests the process method. | |
ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
ExpectDeprecationTrait::getCallableName | private static | function | Returns a callable as a string suitable for inclusion in a message. | |
ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | |
RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | |
RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
UnitTestCase::$root | protected | property | The app root. | |
UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | |
UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase::setUpBeforeClass | public static | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.