You are here

protected function UpdateScriptTest::assertUpdateWithNoError in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/UpdateSystem/UpdateScriptTest.php \Drupal\Tests\system\Functional\UpdateSystem\UpdateScriptTest::assertUpdateWithNoError()
  2. 9 core/modules/system/tests/src/Functional/UpdateSystem/UpdateScriptTest.php \Drupal\Tests\system\Functional\UpdateSystem\UpdateScriptTest::assertUpdateWithNoError()

Asserts a particular error is not shown on update and status report pages.

@internal

Parameters

string $unexpected_error_text: The error text that should not be shown.

string $extension_type: The extension type, either 'module' or 'theme'.

string $extension_machine_name: The extension machine name.

Throws

\Behat\Mink\Exception\ResponseTextException

2 calls to UpdateScriptTest::assertUpdateWithNoError()
UpdateScriptTest::testExtensionCompatibilityChange in core/modules/system/tests/src/Functional/UpdateSystem/UpdateScriptTest.php
Tests that extension compatibility changes are handled correctly.
UpdateScriptTest::testMissingExtension in core/modules/system/tests/src/Functional/UpdateSystem/UpdateScriptTest.php
Tests that a missing extension prevents updates.

File

core/modules/system/tests/src/Functional/UpdateSystem/UpdateScriptTest.php, line 803

Class

UpdateScriptTest
Tests the update script access and functionality.

Namespace

Drupal\Tests\system\Functional\UpdateSystem

Code

protected function assertUpdateWithNoError(string $unexpected_error_text, string $extension_type, string $extension_machine_name) : void {
  $assert_session = $this
    ->assertSession();
  $this
    ->drupalGet($this->statusReportUrl);
  $this
    ->assertSession()
    ->pageTextNotContains($unexpected_error_text);
  $this
    ->drupalGet($this->updateUrl, [
    'external' => TRUE,
  ]);
  $this
    ->assertSession()
    ->pageTextNotContains($unexpected_error_text);
  $this
    ->updateRequirementsProblem();
  $this
    ->clickLink('Continue');
  $assert_session
    ->pageTextContains('No pending updates.');
  $this
    ->assertInstalledExtensionConfig($extension_type, $extension_machine_name);
}