function BackendCompilerPassTest::testProcess

Tests the process method.

@legacy-covers ::process

File

core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php, line 45

Class

BackendCompilerPassTest
Tests Drupal\Core\DependencyInjection\Compiler\BackendCompilerPass.

Namespace

Drupal\Tests\Core\DependencyInjection\Compiler

Code

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')));
  // Verify that if the container has a default_backend parameter,
  // and there is a service named ".my-service", the right alias is created.
  $container = $this->getMockDriverContainerWithDefaultBackendParameterArgumentAndDotPrefixedService();
  $this->backendPass
    ->process($container);
  // Verify that if the db service returns no driver, no invalid aliases are
  // created.
  $container = $this->getMockDriverContainerWithNullDriverBackend();
  $this->backendPass
    ->process($container);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.