You are here

public function KernelTestBase::register in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::register()
  2. 10 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::register()

Registers test-specific services.

Extend this method in your test to register additional services. This method is called whenever the kernel is rebuilt.

Parameters

\Drupal\Core\DependencyInjection\ContainerBuilder $container: The service container to enhance.

Overrides ServiceProviderInterface::register

See also

\Drupal\Tests\KernelTestBase::bootKernel()

26 calls to KernelTestBase::register()
BaseThemeDefaultDeprecationTest::register in core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php
Registers test-specific services.
CacheCollectorTest::register in core/tests/Drupal/KernelTests/Core/Cache/CacheCollectorTest.php
Registers test-specific services.
ContentNegotiationRoutingTest::register in core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php
Registers test-specific services.
DatabaseBackendTagTest::register in core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php
Registers test-specific services.
DatabaseStorageExpirableTest::register in core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php
Registers test-specific services.

... See full list

26 methods override KernelTestBase::register()
BaseThemeDefaultDeprecationTest::register in core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php
Registers test-specific services.
CacheCollectorTest::register in core/tests/Drupal/KernelTests/Core/Cache/CacheCollectorTest.php
Registers test-specific services.
ContentNegotiationRoutingTest::register in core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php
Registers test-specific services.
DatabaseBackendTagTest::register in core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php
Registers test-specific services.
DatabaseStorageExpirableTest::register in core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php
Registers test-specific services.

... See full list

File

core/tests/Drupal/KernelTests/KernelTestBase.php, line 526

Class

KernelTestBase
Base class for functional integration tests.

Namespace

Drupal\KernelTests

Code

public function register(ContainerBuilder $container) {

  // Keep the container object around for tests.
  $this->container = $container;
  $container
    ->register('flood', 'Drupal\\Core\\Flood\\MemoryBackend')
    ->addArgument(new Reference('request_stack'));
  $container
    ->register('lock', 'Drupal\\Core\\Lock\\NullLockBackend');
  $container
    ->register('cache_factory', 'Drupal\\Core\\Cache\\MemoryBackendFactory');
  $container
    ->register('keyvalue.memory', 'Drupal\\Core\\KeyValueStore\\KeyValueMemoryFactory')
    ->addTag('persist');
  $container
    ->setAlias('keyvalue', 'keyvalue.memory');

  // Set the default language on the minimal container.
  $container
    ->setParameter('language.default_values', Language::$defaultValues);
  if ($this->strictConfigSchema) {
    $container
      ->register('testing.config_schema_checker', ConfigSchemaChecker::class)
      ->addArgument(new Reference('config.typed'))
      ->addArgument($this
      ->getConfigSchemaExclusions())
      ->addTag('event_subscriber');
  }
  if ($container
    ->hasDefinition('path_alias.path_processor')) {

    // The alias-based processor requires the path_alias entity schema to be
    // installed, so we prevent it from being registered to the path processor
    // manager. We do this by removing the tags that the compiler pass looks
    // for. This means that the URL generator can safely be used within tests.
    $container
      ->getDefinition('path_alias.path_processor')
      ->clearTag('path_processor_inbound')
      ->clearTag('path_processor_outbound');
  }
  if ($container
    ->hasDefinition('password')) {
    $container
      ->getDefinition('password')
      ->setArguments([
      1,
    ]);
  }
  TestServiceProvider::addRouteProvider($container);
}