IndexPhpTest.php in Drupal 9
File
core/modules/system/tests/src/Functional/System/IndexPhpTest.php
View source
<?php
namespace Drupal\Tests\system\Functional\System;
use Drupal\Tests\BrowserTestBase;
class IndexPhpTest extends BrowserTestBase {
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
}
public function testIndexPhpHandling() {
$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);
}
}
Classes
Name |
Description |
IndexPhpTest |
Tests the handling of requests containing 'index.php'. |