function IndexPhpTest::testIndexPhpHandling

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/System/IndexPhpTest.php \Drupal\Tests\system\Functional\System\IndexPhpTest::testIndexPhpHandling()
  2. 8.9.x core/modules/system/tests/src/Functional/System/IndexPhpTest.php \Drupal\Tests\system\Functional\System\IndexPhpTest::testIndexPhpHandling()
  3. 10 core/modules/system/tests/src/Functional/System/IndexPhpTest.php \Drupal\Tests\system\Functional\System\IndexPhpTest::testIndexPhpHandling()

Tests index.php handling.

File

core/modules/system/tests/src/Functional/System/IndexPhpTest.php, line 31

Class

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

Namespace

Drupal\Tests\system\Functional\System

Code

public function testIndexPhpHandling() : void {
    $index_php = $GLOBALS['base_url'] . '/index.php';
    $this->drupalGet($index_php, [
        'external' => TRUE,
    ]);
    $this->assertSession()
        ->statusCodeEquals(200);
    $this->drupalGet($index_php . '/user', [
        'external' => TRUE,
    ]);
    $this->assertSession()
        ->statusCodeEquals(200);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.