You are here

public function PageTest::testBatchProgressPageTitle in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Batch/PageTest.php \Drupal\Tests\system\Functional\Batch\PageTest::testBatchProgressPageTitle()

Tests that the batch API progress page shows the title correctly.

File

core/modules/system/tests/src/Functional/Batch/PageTest.php, line 54

Class

PageTest
Tests the content of the progress page.

Namespace

Drupal\Tests\system\Functional\Batch

Code

public function testBatchProgressPageTitle() {

  // Visit an administrative page that runs a test batch, and check that the
  // title shown during batch execution (which the batch callback function
  // saved as a variable) matches the theme used on the administrative page.
  // Run initial step only first.
  $this->maximumMetaRefreshCount = 0;
  $this
    ->drupalGet('batch-test/test-title');
  $this
    ->assertText('Batch Test', 'The test is in the html output.');

  // Leave the batch process running.
  $this->maximumMetaRefreshCount = NULL;
  $this
    ->drupalGet('batch-test/test-title');

  // The stack should contain the title shown on the progress page.
  $this
    ->assertEqual(batch_test_stack(), [
    'Batch Test',
  ], 'The batch title is shown on the batch page.');
  $this
    ->assertText('Redirection successful.', 'Redirection after batch execution is correct.');
}