function SystemIndexPhpTest::testIndexPhpHandling

7.x system.test SystemIndexPhpTest::testIndexPhpHandling()

Test index.php handling.

File

drupal-7.x/modules/system/system.test, line 2670
Tests for system.module.

Class

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

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, array('external' => TRUE, 'query' => array('q' => 'user')));
  $this->assertResponse(200, 'Make sure index.php?q=user returns a valid page.');

  $this->drupalGet($index_php . '/user', array('external' => TRUE));
  $this->assertResponse(404, "Make sure index.php/user returns a 'page not found'.");
}