function ConfigTranslationUiThemeTest::testThemeDiscovery
Same name in other branches
- 9 core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php \Drupal\Tests\config_translation\Functional\ConfigTranslationUiThemeTest::testThemeDiscovery()
- 8.9.x core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php \Drupal\Tests\config_translation\Functional\ConfigTranslationUiThemeTest::testThemeDiscovery()
- 11.x core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php \Drupal\Tests\config_translation\Functional\ConfigTranslationUiThemeTest::testThemeDiscovery()
Tests that theme provided *.config_translation.yml files are found.
File
-
core/
modules/ config_translation/ tests/ src/ Functional/ ConfigTranslationUiThemeTest.php, line 68
Class
- ConfigTranslationUiThemeTest
- Verifies theme configuration translation settings.
Namespace
Drupal\Tests\config_translation\FunctionalCode
public function testThemeDiscovery() : void {
// Install the test theme and rebuild routes.
$theme = 'config_translation_test_theme';
$this->drupalLogin($this->adminUser);
$this->drupalGet('admin/appearance');
$element = $this->assertSession()
->elementExists('xpath', "//a[normalize-space()='Install and set as default' and contains(@href, '{$theme}')]");
$this->drupalGet($this->getAbsoluteUrl($element->getAttribute('href')), [
'external' => TRUE,
]);
$translation_base_url = 'admin/config/development/performance/translate';
$this->drupalGet($translation_base_url);
$this->assertSession()
->statusCodeEquals(200);
$this->assertSession()
->linkByHrefExists("{$translation_base_url}/fr/add");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.