function LanguageSwitchingTest::testLanguageBodyClass in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/language/src/Tests/LanguageSwitchingTest.php \Drupal\language\Tests\LanguageSwitchingTest::testLanguageBodyClass()
Check the path-admin class, as same as on default language.
File
- core/
modules/ language/ src/ Tests/ LanguageSwitchingTest.php, line 247 - Contains \Drupal\language\Tests\LanguageSwitchingTest.
Class
- LanguageSwitchingTest
- Functional tests for the language switching feature.
Namespace
Drupal\language\TestsCode
function testLanguageBodyClass() {
$searched_class = 'path-admin';
// Add language.
$edit = array(
'predefined_langcode' => 'fr',
);
$this
->drupalPostForm('admin/config/regional/language/add', $edit, t('Add language'));
// Enable URL language detection and selection.
$edit = array(
'language_interface[enabled][language-url]' => '1',
);
$this
->drupalPostForm('admin/config/regional/language/detection', $edit, t('Save settings'));
// Check if the default (English) admin/config page has the right class.
$this
->drupalGet('admin/config');
$class = $this
->xpath('//body[contains(@class, :class)]', array(
':class' => $searched_class,
));
$this
->assertTrue(isset($class[0]), t('The path-admin class appears on default language.'));
// Check if the French admin/config page has the right class.
$this
->drupalGet('fr/admin/config');
$class = $this
->xpath('//body[contains(@class, :class)]', array(
':class' => $searched_class,
));
$this
->assertTrue(isset($class[0]), t('The path-admin class same as on default language.'));
// The testing profile sets the user/login page as the frontpage. That
// redirects authenticated users to their profile page, so check with an
// anonymous user instead.
$this
->drupalLogout();
// Check if the default (English) frontpage has the right class.
$this
->drupalGet('<front>');
$class = $this
->xpath('//body[contains(@class, :class)]', array(
':class' => 'path-frontpage',
));
$this
->assertTrue(isset($class[0]), 'path-frontpage class found on the body tag');
// Check if the French frontpage has the right class.
$this
->drupalGet('fr');
$class = $this
->xpath('//body[contains(@class, :class)]', array(
':class' => 'path-frontpage',
));
$this
->assertTrue(isset($class[0]), 'path-frontpage class found on the body tag with french as the active language');
}