1 locale.test LocaleLanguageSwitchingFunctionalTest::testLanguageBlock()

Functional tests for the language switcher block.

File

core/modules/locale/tests/locale.test, line 1366
Tests for locale.module.

Class

LocaleLanguageSwitchingFunctionalTest
Functional tests for the language switching feature.

Code

function testLanguageBlock() {
  // Enable the language switching block.
  $language_type = LANGUAGE_TYPE_INTERFACE;
  $layout = layout_load('default');
  $layout->addBlock('locale', $language_type, 'sidebar');
  $layout->save();

  // Add language.
  $edit = array(
    'predefined_langcode' => 'fr',
  );
  $this->backdropPost('admin/config/regional/language/add', $edit, t('Add language'));

  // Enable URL language detection and selection.
  $edit = array('language[locale-url][enabled]' => '1');
  $this->backdropPost('admin/config/regional/language/detection', $edit, t('Save settings'));

  // Assert that the language switching block is displayed on the frontpage.
  $this->backdropGet('user');
  $this->assertText(t('Languages'), 'Language switcher block found.');

  // Assert that only the current language is marked as active.
  list($language_switcher) = $this->xpath('//*[contains(@class,:class)]/div[@class="block-content"]', array(':class' => 'block-locale-' . str_replace('_', '-', $language_type)));
  $links = array(
    'active' => array(),
    'inactive' => array(),
  );
  $anchors = array(
    'active' => array(),
    'inactive' => array(),
  );
  foreach ($language_switcher->ul->li as $link) {
    $classes = explode(" ", (string) $link['class']);
    list($langcode) = array_intersect($classes, array('en', 'fr'));
    if (in_array('active', $classes)) {
      $links['active'][] = $langcode;
    }
    else {
      $links['inactive'][] = $langcode;
    }
    $anchor_classes = explode(" ", (string) $link->a['class']);
    if (in_array('active', $anchor_classes)) {
      $anchors['active'][] = $langcode;
    }
    else {
      $anchors['inactive'][] = $langcode;
    }
  }
  $this->assertIdentical($links, array('active' => array('en'), 'inactive' => array('fr')), 'Only the current language list item is marked as active on the language switcher block.');
  $this->assertIdentical($anchors, array('active' => array('en'), 'inactive' => array('fr')), 'Only the current language anchor is marked as active on the language switcher block.');
}