function UpdatePathTestBase::runDbTasks

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php \Drupal\FunctionalTests\Update\UpdatePathTestBase::runDbTasks()

Runs the install database tasks for the driver used by the test runner.

1 method overrides UpdatePathTestBase::runDbTasks()
Mysql8RequirePrimaryKeyUpdateTest::runDbTasks in core/modules/user/tests/src/Functional/Mysql8RequirePrimaryKeyUpdateTest.php
Runs the install database tasks for the driver used by the test runner.

File

core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php, line 276

Class

UpdatePathTestBase
Provides a base class for writing an update test.

Namespace

Drupal\FunctionalTests\Update

Code

protected function runDbTasks() {
  // Create a minimal container so that t() works.
  // @see install_begin_request()
  $container = new ContainerBuilder();
  $container->setParameter('language.default_values', Language::$defaultValues);
  $container->register('language.default', 'Drupal\\Core\\Language\\LanguageDefault')
    ->addArgument('%language.default_values%');
  $container->register('string_translation', 'Drupal\\Core\\StringTranslation\\TranslationManager')
    ->addArgument(new Reference('language.default'));
  \Drupal::setContainer($container);
  require_once __DIR__ . '/../../../../includes/install.inc';
  $connection_info = Database::getConnectionInfo();
  $driver = $connection_info['default']['driver'];
  $namespace = $connection_info['default']['namespace'] ?? NULL;
  $errors = db_installer_object($driver, $namespace)->runTasks();
  if (!empty($errors)) {
    $this->fail('Failed to run installer database tasks: ' . implode(', ', $errors));
  }
}

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