function DatabaseVersionCheckUpdateTest::testUpdate

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Update/DatabaseVersionCheckUpdateTest.php \Drupal\Tests\system\Functional\Update\DatabaseVersionCheckUpdateTest::testUpdate()
  2. 10 core/modules/system/tests/src/Functional/Update/DatabaseVersionCheckUpdateTest.php \Drupal\Tests\system\Functional\Update\DatabaseVersionCheckUpdateTest::testUpdate()
  3. 11.x core/modules/system/tests/src/Functional/Update/DatabaseVersionCheckUpdateTest.php \Drupal\Tests\system\Functional\Update\DatabaseVersionCheckUpdateTest::testUpdate()

Tests that updates fail if the database does not meet the minimum version.

File

core/modules/system/tests/src/Functional/Update/DatabaseVersionCheckUpdateTest.php, line 34

Class

DatabaseVersionCheckUpdateTest
Tests that updates fail if the database does not meet the minimum version.

Namespace

Drupal\Tests\system\Functional\Update

Code

public function testUpdate() {
    if (Database::getConnection()->driver() !== 'mysql') {
        $this->markTestSkipped('This test only works with the mysql driver');
    }
    // Use a database driver that reports a fake database version that does
    // not meet requirements. Only change the necessary settings in the database
    // settings array so that run-tests.sh continues to work.
    $autoload = Database::findDriverAutoloadDirectory('Drupal\\driver_test\\Driver\\Database\\DrivertestMysqlDeprecatedVersion', \Drupal::root());
    $settings['databases']['default']['default']['driver'] = (object) [
        'value' => 'DrivertestMysqlDeprecatedVersion',
        'required' => TRUE,
    ];
    $settings['databases']['default']['default']['namespace'] = (object) [
        'value' => 'Drupal\\driver_test\\Driver\\Database\\DrivertestMysqlDeprecatedVersion',
        'required' => TRUE,
    ];
    $settings['databases']['default']['default']['autoload'] = (object) [
        'value' => $autoload,
        'required' => TRUE,
    ];
    $settings['settings'] = [
        'update_free_access' => (object) [
            'value' => TRUE,
            'required' => TRUE,
        ],
    ];
    $this->writeSettings($settings);
    $this->drupalGet(Url::fromRoute('system.db_update'));
    $this->assertSession()
        ->pageTextContains('Errors found');
    $this->assertSession()
        ->pageTextContains('The database server version 5.5.2 is less than the minimum required version');
}

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