function RedirectTest::testRedirect

Same name in this branch
  1. 8.x drupal/core/modules/views_ui/lib/Drupal/views_ui/Tests/RedirectTest.php \Drupal\views_ui\Tests\RedirectTest::testRedirect()
  2. 8.x drupal/core/modules/system/lib/Drupal/system/Tests/Form/RedirectTest.php \Drupal\system\Tests\Form\RedirectTest::testRedirect()

Tests form redirection.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/RedirectTest.php, line 35
Definition of Drupal\system\Tests\Form\RedirectTest.

Class

RedirectTest
Tests form redirection.

Namespace

Drupal\system\Tests\Form

Code

function testRedirect() {
  $path = 'form-test/redirect';
  $options = array(
    'query' => array(
      'foo' => 'bar',
    ),
  );
  $options['absolute'] = TRUE;

  // Test basic redirection.
  $edit = array(
    'redirection' => TRUE,
    'destination' => $this
      ->randomName(),
  );
  $this
    ->drupalPost($path, $edit, t('Submit'));
  $this
    ->assertUrl($edit['destination'], array(), 'Basic redirection works.');

  // Test without redirection.
  $edit = array(
    'redirection' => FALSE,
  );
  $this
    ->drupalPost($path, $edit, t('Submit'));
  $this
    ->assertUrl($path, array(), 'When redirect is set to FALSE, there should be no redirection.');

  // Test redirection with query parameters.
  $edit = array(
    'redirection' => TRUE,
    'destination' => $this
      ->randomName(),
  );
  $this
    ->drupalPost($path, $edit, t('Submit'), $options);
  $this
    ->assertUrl($edit['destination'], array(), 'Redirection with query parameters works.');

  // Test without redirection but with query parameters.
  $edit = array(
    'redirection' => FALSE,
  );
  $this
    ->drupalPost($path, $edit, t('Submit'), $options);
  $this
    ->assertUrl($path, $options, 'When redirect is set to FALSE, there should be no redirection, and the query parameters should be passed along.');

  // Test redirection back to the original path.
  $edit = array(
    'redirection' => TRUE,
    'destination' => '',
  );
  $this
    ->drupalPost($path, $edit, t('Submit'));
  $this
    ->assertUrl($path, array(), 'When using an empty redirection string, there should be no redirection.');

  // Test redirection back to the original path with query parameters.
  $edit = array(
    'redirection' => TRUE,
    'destination' => '',
  );
  $this
    ->drupalPost($path, $edit, t('Submit'), $options);
  $this
    ->assertUrl($path, $options, 'When using an empty redirection string, there should be no redirection, and the query parameters should be passed along.');
}