private function LocaleLanguageNegotiationInfoFunctionalTest::checkFixedLanguageTypes

Check that language negotiation for fixed types matches the stored one.

1 call to LocaleLanguageNegotiationInfoFunctionalTest::checkFixedLanguageTypes()
LocaleLanguageNegotiationInfoFunctionalTest::testInfoAlterations in drupal/modules/locale/locale.test
Tests alterations to language types/negotiation info.

File

drupal/modules/locale/locale.test, line 3186
Tests for locale.module.

Class

LocaleLanguageNegotiationInfoFunctionalTest
Functional test for language types/negotiation info.

Code

private function checkFixedLanguageTypes() {
  drupal_static_reset('language_types_info');
  foreach (language_types_info() as $type => $info) {
    if (isset($info['fixed'])) {
      $negotiation = variable_get("language_negotiation_{$type}", array());
      $equal = count($info['fixed']) == count($negotiation);
      while ($equal && (list($id) = each($negotiation))) {
        list(, $info_id) = each($info['fixed']);
        $equal = $info_id == $id;
      }
      $this
        ->assertTrue($equal, format_string('language negotiation for %type is properly set up', array(
        '%type' => $type,
      )));
    }
  }
}