function IndexPhpTest::testIndexPhpHandling

Test index.php handling.

File

drupal/core/modules/system/lib/Drupal/system/Tests/System/IndexPhpTest.php, line 31
Definition of Drupal\system\Tests\System\IndexPhpTest.

Class

IndexPhpTest
Test the handling of requests containing 'index.php'.

Namespace

Drupal\system\Tests\System

Code

function testIndexPhpHandling() {
  $index_php = $GLOBALS['base_url'] . '/index.php';
  $this
    ->drupalGet($index_php, array(
    'external' => TRUE,
  ));
  $this
    ->assertResponse(200, 'Make sure index.php returns a valid page.');
  $this
    ->drupalGet($index_php . '/user', array(
    'external' => TRUE,
  ));
  $this
    ->assertResponse(200, 'Make sure index.php/user returns a valid page.');
}