function LocaleTranslationTest::testStringSearch

Tests translation search form.

File

drupal/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationTest.php, line 331
Definition of Drupal\locale\Tests\LocaleTranslationTest.

Class

LocaleTranslationTest
Functional test for string translation and validation.

Namespace

Drupal\locale\Tests

Code

function testStringSearch() {
  global $base_url;

  // User to add and remove language.
  $admin_user = $this
    ->drupalCreateUser(array(
    'administer languages',
    'access administration pages',
  ));

  // User to translate and delete string.
  $translate_user = $this
    ->drupalCreateUser(array(
    'translate interface',
    'access administration pages',
  ));

  // Code for the language.
  $langcode = 'xx';

  // The English name for the language. This will be translated.
  $name = $this
    ->randomName(16);

  // This is the language indicator on the translation search screen for
  // untranslated strings.
  $language_indicator = "<em class=\"locale-untranslated\">{$langcode}</em> ";

  // This will be the translation of $name.
  $translation = $this
    ->randomName(16);

  // Add custom language.
  $this
    ->drupalLogin($admin_user);
  $edit = array(
    'predefined_langcode' => 'custom',
    'langcode' => $langcode,
    'name' => $name,
    'direction' => '0',
  );
  $this
    ->drupalPost('admin/config/regional/language/add', $edit, t('Add custom language'));
  $edit = array(
    'predefined_langcode' => 'custom',
    'langcode' => 'yy',
    'name' => $this
      ->randomName(16),
    'direction' => '0',
  );
  $this
    ->drupalPost('admin/config/regional/language/add', $edit, t('Add custom language'));

  // Add string.
  t($name, array(), array(
    'langcode' => $langcode,
  ));

  // Reset locale cache.
  locale_reset();
  $this
    ->drupalLogout();

  // Search for the name.
  $this
    ->drupalLogin($translate_user);
  $search = array(
    'string' => $name,
    'langcode' => $langcode,
    'translation' => 'all',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));

  // assertText() seems to remove the input field where $name always could be
  // found, so this is not a false assert. See how assertNoText succeeds
  // later.
  $this
    ->assertText($name, t('Search found the string.'));

  // Ensure untranslated string doesn't appear if searching on 'only
  // translated strings'.
  $search = array(
    'string' => $name,
    'langcode' => $langcode,
    'translation' => 'translated',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertText(t('No strings available.'), t("Search didn't find the string."));

  // Ensure untranslated string appears if searching on 'only untranslated
  // strings'.
  $search = array(
    'string' => $name,
    'langcode' => $langcode,
    'translation' => 'untranslated',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertNoText(t('No strings available.'), t('Search found the string.'));

  // Add translation.
  // Assume this is the only result, given the random name.
  // We save the lid from the path.
  $textarea = current($this
    ->xpath('//textarea'));
  $lid = (string) $textarea[0]['name'];
  $edit = array(
    $lid => $translation,
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $edit, t('Save translations'));

  // Ensure translated string does appear if searching on 'only
  // translated strings'.
  $search = array(
    'string' => $translation,
    'langcode' => $langcode,
    'translation' => 'translated',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertNoText(t('No strings available.'), t('Search found the translation.'));

  // Ensure translated source string doesn't appear if searching on 'only
  // untranslated strings'.
  $search = array(
    'string' => $name,
    'langcode' => $langcode,
    'translation' => 'untranslated',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertText(t('No strings available.'), t("Search didn't find the source string."));

  // Ensure translated string doesn't appear if searching on 'only
  // untranslated strings'.
  $search = array(
    'string' => $translation,
    'langcode' => $langcode,
    'translation' => 'untranslated',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertText(t('No strings available.'), t("Search didn't find the translation."));

  // Ensure translated string does appear if searching on the custom language.
  $search = array(
    'string' => $translation,
    'langcode' => $langcode,
    'translation' => 'all',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertNoText(t('No strings available.'), t('Search found the translation.'));

  // Ensure translated string doesn't appear if searching in System (English).
  $search = array(
    'string' => $translation,
    'langcode' => 'yy',
    'translation' => 'all',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertText(t('No strings available.'), t("Search didn't find the translation."));

  // Search for a string that isn't in the system.
  $unavailable_string = $this
    ->randomName(16);
  $search = array(
    'string' => $unavailable_string,
    'langcode' => $langcode,
    'translation' => 'all',
  );
  $this
    ->drupalPost('admin/config/regional/translate/translate', $search, t('Filter'));
  $this
    ->assertText(t('No strings available.'), t("Search didn't find the invalid string."));
}