class HtRouterTest in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/BuildTests/Framework/Tests/HtRouterTest.php \Drupal\BuildTests\Framework\Tests\HtRouterTest
- 9 core/tests/Drupal/BuildTests/Framework/Tests/HtRouterTest.php \Drupal\BuildTests\Framework\Tests\HtRouterTest
@coversDefaultClass \Drupal\BuildTests\Framework\BuildTestBase @group Build @requires extension pdo_sqlite
Hierarchy
- class \Drupal\BuildTests\QuickStart\QuickStartTestBase extends \Drupal\BuildTests\Framework\BuildTestBase
- class \Drupal\BuildTests\Framework\Tests\HtRouterTest
Expanded class hierarchy of HtRouterTest
File
- core/
tests/ Drupal/ BuildTests/ Framework/ Tests/ HtRouterTest.php, line 13
Namespace
Drupal\BuildTests\Framework\TestsView source
class HtRouterTest extends QuickStartTestBase {
/**
* @covers ::instantiateServer
*/
public function testHtRouter() {
if (version_compare(\SQLite3::version()['versionString'], Tasks::SQLITE_MINIMUM_VERSION) < 0) {
$this
->markTestSkipped();
}
$this
->copyCodebase();
$this
->executeCommand('COMPOSER_DISCARD_CHANGES=true composer install --no-dev --no-interaction');
$this
->assertErrorOutputContains('Generating autoload files');
$this
->installQuickStart('minimal');
$this
->formLogin($this->adminUsername, $this->adminPassword);
$this
->visit('/.well-known/change-password');
$this
->assertDrupalVisit();
$url = $this
->getMink()
->getSession()
->getCurrentUrl();
$this
->assertEquals('http://localhost:' . $this
->getPortNumber() . '/user/1/edit', $url);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HtRouterTest:: |
public | function | @covers ::instantiateServer | |
QuickStartTestBase:: |
protected | property | Password of the admin account generated during install. | |
QuickStartTestBase:: |
protected | property | User name of the admin account generated during install. | |
QuickStartTestBase:: |
public | function | Helper that uses Drupal's user/login form to log in. | |
QuickStartTestBase:: |
public | function | Install a Drupal site using the quick start feature. |