public function HtRouterTest::testHtRouter in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/BuildTests/Framework/Tests/HtRouterTest.php \Drupal\BuildTests\Framework\Tests\HtRouterTest::testHtRouter()
@covers ::instantiateServer
File
- core/
tests/ Drupal/ BuildTests/ Framework/ Tests/ HtRouterTest.php, line 16
Class
- HtRouterTest
- @coversDefaultClass \Drupal\BuildTests\Framework\BuildTestBase @group Build
Namespace
Drupal\BuildTests\Framework\TestsCode
public function testHtRouter() {
$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);
}