You are here

function ProcessingTest::testBatchNoForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Batch/ProcessingTest.php \Drupal\system\Tests\Batch\ProcessingTest::testBatchNoForm()

Tests batches triggered outside of form submission.

File

core/modules/system/src/Tests/Batch/ProcessingTest.php, line 30
Contains \Drupal\system\Tests\Batch\ProcessingTest.

Class

ProcessingTest
Tests batch processing in form and non-form workflow.

Namespace

Drupal\system\Tests\Batch

Code

function testBatchNoForm() {

  // Displaying the page triggers batch 1.
  $this
    ->drupalGet('batch-test/no-form');
  $this
    ->assertBatchMessages($this
    ->_resultMessages('batch_1'), 'Batch for step 2 performed successfully.');
  $this
    ->assertEqual(batch_test_stack(), $this
    ->_resultStack('batch_1'), 'Execution order was correct.');
  $this
    ->assertText('Redirection successful.', 'Redirection after batch execution is correct.');
}