function KernelTestBase::register

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::register()
  2. 10 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::register()
  3. 9 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.

See also

\Drupal\Tests\KernelTestBase::bootKernel()

6 calls to KernelTestBase::register()
BaseThemeDefaultDeprecationTest::register in core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php
MigratePrivateFileTest::register in core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php
MigratePrivateFileTest::register in core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php
SystemListTest::register in core/tests/Drupal/KernelTests/Core/Theme/SystemListTest.php
UserServiceProviderFallbackTest::register in core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php

... See full list

3 methods override KernelTestBase::register()
ContentNegotiationRoutingTest::register in core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php
Registers test-specific services.
DeprecatedCleanupTest::register in core/modules/simpletest/tests/src/Kernel/DeprecatedCleanupTest.php
Registers test-specific services.
MemoryStorageTest::register in core/tests/Drupal/KernelTests/Core/KeyValueStore/MemoryStorageTest.php
Registers test-specific services.

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);
}

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