You are here

function UpdatesWith7xTest::testWith7x in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Update/UpdatesWith7xTest.php \Drupal\system\Tests\Update\UpdatesWith7xTest::testWith7x()

File

core/modules/system/src/Tests/Update/UpdatesWith7xTest.php, line 44
Contains \Drupal\system\Tests\Update\UpdatesWith7xTest.

Class

UpdatesWith7xTest
Tests that the minimum schema version is correct even if only 7.x update hooks are retained .

Namespace

Drupal\system\Tests\Update

Code

function testWith7x() {

  // Ensure that the minimum schema version is 8000, despite 7200 update
  // hooks and a 7XXX hook_update_last_removed().
  $this
    ->assertEqual(drupal_get_installed_schema_version('update_test_with_7x'), 8000);

  // Try to manually set the schema version to 7110 and ensure that no
  // updates are allowed.
  drupal_set_installed_schema_version('update_test_with_7x', 7110);

  // Click through update.php with 'administer software updates' permission.
  $this
    ->drupalLogin($this->updateUser);
  $this
    ->drupalGet($this->updateUrl, array(
    'external' => TRUE,
  ));
  $this
    ->clickLink(t('Continue'));
  $this
    ->assertText(t('Some of the pending updates cannot be applied because their dependencies were not met.'));
}