You are here

class ConfigTranslationUiTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php \Drupal\config_translation\Tests\ConfigTranslationUiTest

Translate settings and entities to various languages.

@group config_translation

Hierarchy

Expanded class hierarchy of ConfigTranslationUiTest

File

core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php, line 25
Contains \Drupal\config_translation\Tests\ConfigTranslationUiTest.

Namespace

Drupal\config_translation\Tests
View source
class ConfigTranslationUiTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'block',
    'config_translation',
    'config_translation_test',
    'contact',
    'contact_test',
    'contextual',
    'entity_test',
    'field_test',
    'field_ui',
    'filter',
    'filter_test',
    'node',
    'views',
    'views_ui',
  ];

  /**
   * Languages to enable.
   *
   * @var array
   */
  protected $langcodes = array(
    'fr',
    'ta',
  );

  /**
   * Administrator user for tests.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $adminUser;

  /**
   * Translator user for tests.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $translatorUser;

  /**
   * String translation storage object.
   *
   * @var \Drupal\locale\StringStorageInterface
   */
  protected $localeStorage;
  protected function setUp() {
    parent::setUp();
    $translator_permissions = [
      'translate configuration',
    ];

    /** @var \Drupal\filter\FilterFormatInterface $filter_test_format */
    $filter_test_format = entity_load('filter_format', 'filter_test');

    /** @var \Drupal\filter\FilterFormatInterface $filtered_html_format */
    $filtered_html_format = entity_load('filter_format', 'filtered_html');

    /** @var \Drupal\filter\FilterFormatInterface $full_html_format */
    $full_html_format = entity_load('filter_format', 'full_html');
    $admin_permissions = array_merge($translator_permissions, [
      'administer languages',
      'administer site configuration',
      'link to any page',
      'administer contact forms',
      'administer filters',
      $filtered_html_format
        ->getPermissionName(),
      $full_html_format
        ->getPermissionName(),
      $filter_test_format
        ->getPermissionName(),
      'access site-wide contact form',
      'access contextual links',
      'administer views',
      'administer account settings',
      'administer themes',
      'bypass node access',
      'administer content types',
      'translate interface',
    ]);

    // Create and login user.
    $this->translatorUser = $this
      ->drupalCreateUser($translator_permissions);
    $this->adminUser = $this
      ->drupalCreateUser($admin_permissions);

    // Add languages.
    foreach ($this->langcodes as $langcode) {
      ConfigurableLanguage::createFromLangcode($langcode)
        ->save();
    }
    $this->localeStorage = $this->container
      ->get('locale.storage');
    $this
      ->drupalPlaceBlock('local_tasks_block');
    $this
      ->drupalPlaceBlock('page_title_block');
  }

  /**
   * Tests the site information translation interface.
   */
  public function testSiteInformationTranslationUi() {
    $this
      ->drupalLogin($this->adminUser);
    $site_name = 'Site name for testing configuration translation';
    $site_slogan = 'Site slogan for testing configuration translation';
    $fr_site_name = 'Nom du site pour tester la configuration traduction';
    $fr_site_slogan = 'Slogan du site pour tester la traduction de configuration';
    $translation_base_url = 'admin/config/system/site-information/translate';

    // Set site name and slogan for default language.
    $this
      ->setSiteInformation($site_name, $site_slogan);
    $this
      ->drupalGet('admin/config/system/site-information');

    // Check translation tab exist.
    $this
      ->assertLinkByHref($translation_base_url);
    $this
      ->drupalGet($translation_base_url);

    // Check that the 'Edit' link in the source language links back to the
    // original form.
    $this
      ->clickLink(t('Edit'));

    // Also check that saving the form leads back to the translation overview.
    $this
      ->drupalPostForm(NULL, [], t('Save configuration'));
    $this
      ->assertUrl($translation_base_url);

    // Check 'Add' link of French to visit add page.
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/add");
    $this
      ->clickLink(t('Add'));

    // Make sure original text is present on this page.
    $this
      ->assertRaw($site_name);
    $this
      ->assertRaw($site_slogan);

    // Update site name and slogan for French.
    $edit = array(
      'translation[config_names][system.site][name]' => $fr_site_name,
      'translation[config_names][system.site][slogan]' => $fr_site_slogan,
    );
    $this
      ->drupalPostForm("{$translation_base_url}/fr/add", $edit, t('Save translation'));
    $this
      ->assertRaw(t('Successfully saved @language translation.', array(
      '@language' => 'French',
    )));

    // Check for edit, delete links (and no 'add' link) for French language.
    $this
      ->assertNoLinkByHref("{$translation_base_url}/fr/add");
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/edit");
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/delete");

    // Check translation saved proper.
    $this
      ->drupalGet("{$translation_base_url}/fr/edit");
    $this
      ->assertFieldByName('translation[config_names][system.site][name]', $fr_site_name);
    $this
      ->assertFieldByName('translation[config_names][system.site][slogan]', $fr_site_slogan);

    // Place branding block with site name and slogan into header region.
    $this
      ->drupalPlaceBlock('system_branding_block', [
      'region' => 'header',
    ]);

    // Check French translation of site name and slogan are in place.
    $this
      ->drupalGet('fr');
    $this
      ->assertRaw($fr_site_name);
    $this
      ->assertRaw($fr_site_slogan);

    // Visit French site to ensure base language string present as source.
    $this
      ->drupalGet("fr/{$translation_base_url}/fr/edit");
    $this
      ->assertText($site_name);
    $this
      ->assertText($site_slogan);
  }

  /**
   * Tests the site information translation interface.
   */
  public function testSourceValueDuplicateSave() {
    $this
      ->drupalLogin($this->adminUser);
    $site_name = 'Site name for testing configuration translation';
    $site_slogan = 'Site slogan for testing configuration translation';
    $translation_base_url = 'admin/config/system/site-information/translate';
    $this
      ->setSiteInformation($site_name, $site_slogan);
    $this
      ->drupalGet($translation_base_url);

    // Case 1: Update new value for site slogan and site name.
    $edit = array(
      'translation[config_names][system.site][name]' => 'FR ' . $site_name,
      'translation[config_names][system.site][slogan]' => 'FR ' . $site_slogan,
    );

    // First time, no overrides, so just Add link.
    $this
      ->drupalPostForm("{$translation_base_url}/fr/add", $edit, t('Save translation'));

    // Read overridden file from active config.
    $override = \Drupal::languageManager()
      ->getLanguageConfigOverride('fr', 'system.site');

    // Expect both name and slogan in language specific file.
    $expected = array(
      'name' => 'FR ' . $site_name,
      'slogan' => 'FR ' . $site_slogan,
    );
    $this
      ->assertEqual($expected, $override
      ->get());

    // Case 2: Update new value for site slogan and default value for site name.
    $this
      ->drupalGet("{$translation_base_url}/fr/edit");

    // Assert that the language configuration does not leak outside of the
    // translation form into the actual site name and slogan.
    $this
      ->assertNoText('FR ' . $site_name);
    $this
      ->assertNoText('FR ' . $site_slogan);
    $edit = array(
      'translation[config_names][system.site][name]' => $site_name,
      'translation[config_names][system.site][slogan]' => 'FR ' . $site_slogan,
    );
    $this
      ->drupalPostForm(NULL, $edit, t('Save translation'));
    $this
      ->assertRaw(t('Successfully updated @language translation.', array(
      '@language' => 'French',
    )));
    $override = \Drupal::languageManager()
      ->getLanguageConfigOverride('fr', 'system.site');

    // Expect only slogan in language specific file.
    $expected = 'FR ' . $site_slogan;
    $this
      ->assertEqual($expected, $override
      ->get('slogan'));

    // Case 3: Keep default value for site name and slogan.
    $this
      ->drupalGet("{$translation_base_url}/fr/edit");
    $this
      ->assertNoText('FR ' . $site_slogan);
    $edit = array(
      'translation[config_names][system.site][name]' => $site_name,
      'translation[config_names][system.site][slogan]' => $site_slogan,
    );
    $this
      ->drupalPostForm(NULL, $edit, t('Save translation'));
    $override = \Drupal::languageManager()
      ->getLanguageConfigOverride('fr', 'system.site');

    // Expect no language specific file.
    $this
      ->assertTrue($override
      ->isNew());

    // Check configuration page with translator user. Should have no access.
    $this
      ->drupalLogout();
    $this
      ->drupalLogin($this->translatorUser);
    $this
      ->drupalGet('admin/config/system/site-information');
    $this
      ->assertResponse(403);

    // While translator can access the translation page, the edit link is not
    // present due to lack of permissions.
    $this
      ->drupalGet($translation_base_url);
    $this
      ->assertNoLink(t('Edit'));

    // Check 'Add' link for French.
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/add");
  }

  /**
   * Tests the contact form translation.
   */
  public function testContactConfigEntityTranslation() {
    $this
      ->drupalLogin($this->adminUser);
    $this
      ->drupalGet('admin/structure/contact');

    // Check for default contact form configuration entity from Contact module.
    $this
      ->assertLinkByHref('admin/structure/contact/manage/feedback');

    // Save default language configuration.
    $label = 'Send your feedback';
    $edit = array(
      'label' => $label,
      'recipients' => 'sales@example.com,support@example.com',
      'reply' => 'Thank you for your mail',
    );
    $this
      ->drupalPostForm('admin/structure/contact/manage/feedback', $edit, t('Save'));

    // Ensure translation link is present.
    $translation_base_url = 'admin/structure/contact/manage/feedback/translate';
    $this
      ->assertLinkByHref($translation_base_url);

    // Make sure translate tab is present.
    $this
      ->drupalGet('admin/structure/contact/manage/feedback');
    $this
      ->assertLink(t('Translate @type', array(
      '@type' => 'contact form',
    )));

    // Visit the form to confirm the changes.
    $this
      ->drupalGet('contact/feedback');
    $this
      ->assertText($label);
    foreach ($this->langcodes as $langcode) {
      $this
        ->drupalGet($translation_base_url);
      $this
        ->assertLink(t('Translate @type', array(
        '@type' => 'contact form',
      )));

      // 'Add' link should be present for $langcode translation.
      $translation_page_url = "{$translation_base_url}/{$langcode}/add";
      $this
        ->assertLinkByHref($translation_page_url);

      // Make sure original text is present on this page.
      $this
        ->drupalGet($translation_page_url);
      $this
        ->assertText($label);

      // Update translatable fields.
      $edit = array(
        'translation[config_names][contact.form.feedback][label]' => 'Website feedback - ' . $langcode,
        'translation[config_names][contact.form.feedback][reply]' => 'Thank you for your mail - ' . $langcode,
      );

      // Save language specific version of form.
      $this
        ->drupalPostForm($translation_page_url, $edit, t('Save translation'));

      // Expect translated values in language specific file.
      $override = \Drupal::languageManager()
        ->getLanguageConfigOverride($langcode, 'contact.form.feedback');
      $expected = array(
        'label' => 'Website feedback - ' . $langcode,
        'reply' => 'Thank you for your mail - ' . $langcode,
      );
      $this
        ->assertEqual($expected, $override
        ->get());

      // Check for edit, delete links (and no 'add' link) for $langcode.
      $this
        ->assertNoLinkByHref("{$translation_base_url}/{$langcode}/add");
      $this
        ->assertLinkByHref("{$translation_base_url}/{$langcode}/edit");
      $this
        ->assertLinkByHref("{$translation_base_url}/{$langcode}/delete");

      // Visit language specific version of form to check label.
      $this
        ->drupalGet($langcode . '/contact/feedback');
      $this
        ->assertText('Website feedback - ' . $langcode);

      // Submit feedback.
      $edit = array(
        'subject[0][value]' => 'Test subject',
        'message[0][value]' => 'Test message',
      );
      $this
        ->drupalPostForm(NULL, $edit, t('Send message'));
    }

    // Now that all language translations are present, check translation and
    // original text all appear in any translated page on the translation
    // forms.
    foreach ($this->langcodes as $langcode) {
      $langcode_prefixes = array_merge(array(
        '',
      ), $this->langcodes);
      foreach ($langcode_prefixes as $langcode_prefix) {
        $this
          ->drupalGet(ltrim("{$langcode_prefix}/{$translation_base_url}/{$langcode}/edit", '/'));
        $this
          ->assertFieldByName('translation[config_names][contact.form.feedback][label]', 'Website feedback - ' . $langcode);
        $this
          ->assertText($label);
      }
    }

    // We get all emails so no need to check inside the loop.
    $captured_emails = $this
      ->drupalGetMails();

    // Check language specific auto reply text in email body.
    foreach ($captured_emails as $email) {
      if ($email['id'] == 'contact_page_autoreply') {

        // Trim because we get an added newline for the body.
        $this
          ->assertEqual(trim($email['body']), 'Thank you for your mail - ' . $email['langcode']);
      }
    }

    // Test that delete links work and operations perform properly.
    foreach ($this->langcodes as $langcode) {
      $replacements = array(
        '%label' => t('@label @entity_type', array(
          '@label' => $label,
          '@entity_type' => Unicode::strtolower(t('Contact form')),
        )),
        '@language' => \Drupal::languageManager()
          ->getLanguage($langcode)
          ->getName(),
      );
      $this
        ->drupalGet("{$translation_base_url}/{$langcode}/delete");
      $this
        ->assertRaw(t('Are you sure you want to delete the @language translation of %label?', $replacements));

      // Assert link back to list page to cancel delete is present.
      $this
        ->assertLinkByHref($translation_base_url);
      $this
        ->drupalPostForm(NULL, array(), t('Delete'));
      $this
        ->assertRaw(t('@language translation of %label was deleted', $replacements));
      $this
        ->assertLinkByHref("{$translation_base_url}/{$langcode}/add");
      $this
        ->assertNoLinkByHref("translation_base_url/{$langcode}/edit");
      $this
        ->assertNoLinkByHref("{$translation_base_url}/{$langcode}/delete");

      // Expect no language specific file present anymore.
      $override = \Drupal::languageManager()
        ->getLanguageConfigOverride($langcode, 'contact.form.feedback');
      $this
        ->assertTrue($override
        ->isNew());
    }

    // Check configuration page with translator user. Should have no access.
    $this
      ->drupalLogout();
    $this
      ->drupalLogin($this->translatorUser);
    $this
      ->drupalGet('admin/structure/contact/manage/feedback');
    $this
      ->assertResponse(403);

    // While translator can access the translation page, the edit link is not
    // present due to lack of permissions.
    $this
      ->drupalGet($translation_base_url);
    $this
      ->assertNoLink(t('Edit'));

    // Check 'Add' link for French.
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/add");
  }

  /**
   * Tests date format translation.
   */
  public function testDateFormatTranslation() {
    $this
      ->drupalLogin($this->adminUser);
    $this
      ->drupalGet('admin/config/regional/date-time');

    // Check for medium format.
    $this
      ->assertLinkByHref('admin/config/regional/date-time/formats/manage/medium');

    // Save default language configuration for a new format.
    $edit = array(
      'label' => 'Custom medium date',
      'id' => 'custom_medium',
      'date_format_pattern' => 'Y. m. d. H:i',
    );
    $this
      ->drupalPostForm('admin/config/regional/date-time/formats/add', $edit, t('Add format'));

    // Test translating a default shipped format and our custom format.
    $formats = array(
      'medium' => 'Default medium date',
      'custom_medium' => 'Custom medium date',
    );
    foreach ($formats as $id => $label) {
      $translation_base_url = 'admin/config/regional/date-time/formats/manage/' . $id . '/translate';
      $this
        ->drupalGet($translation_base_url);

      // 'Add' link should be present for French translation.
      $translation_page_url = "{$translation_base_url}/fr/add";
      $this
        ->assertLinkByHref($translation_page_url);

      // Make sure original text is present on this page.
      $this
        ->drupalGet($translation_page_url);
      $this
        ->assertText($label);

      // Make sure that the date library is added.
      $this
        ->assertRaw('core/modules/system/js/system.date.js');

      // Update translatable fields.
      $edit = array(
        'translation[config_names][core.date_format.' . $id . '][label]' => $id . ' - FR',
        'translation[config_names][core.date_format.' . $id . '][pattern]' => 'D',
      );

      // Save language specific version of form.
      $this
        ->drupalPostForm($translation_page_url, $edit, t('Save translation'));

      // Get translation and check we've got the right value.
      $override = \Drupal::languageManager()
        ->getLanguageConfigOverride('fr', 'core.date_format.' . $id);
      $expected = array(
        'label' => $id . ' - FR',
        'pattern' => 'D',
      );
      $this
        ->assertEqual($expected, $override
        ->get());

      // Formatting the date 8 / 27 / 1985 @ 13:37 EST with pattern D should
      // display "Tue".
      $formatted_date = format_date(494015820, $id, NULL, 'America/New_York', 'fr');
      $this
        ->assertEqual($formatted_date, 'Tue', 'Got the right formatted date using the date format translation pattern.');
    }
  }

  /**
   * Tests the account settings translation interface.
   *
   * This is the only special case so far where we have multiple configuration
   * names involved building up one configuration translation form. Test that
   * the translations are saved for all configuration names properly.
   */
  public function testAccountSettingsConfigurationTranslation() {
    $this
      ->drupalLogin($this->adminUser);
    $this
      ->drupalGet('admin/config/people/accounts');
    $this
      ->assertLink(t('Translate @type', array(
      '@type' => 'account settings',
    )));
    $this
      ->drupalGet('admin/config/people/accounts/translate');
    $this
      ->assertLink(t('Translate @type', array(
      '@type' => 'account settings',
    )));
    $this
      ->assertLinkByHref('admin/config/people/accounts/translate/fr/add');

    // Update account settings fields for French.
    $edit = array(
      'translation[config_names][user.settings][anonymous]' => 'Anonyme',
      'translation[config_names][user.mail][status_blocked][subject]' => 'Testing, your account is blocked.',
      'translation[config_names][user.mail][status_blocked][body]' => 'Testing account blocked body.',
    );
    $this
      ->drupalPostForm('admin/config/people/accounts/translate/fr/add', $edit, t('Save translation'));

    // Make sure the changes are saved and loaded back properly.
    $this
      ->drupalGet('admin/config/people/accounts/translate/fr/edit');
    foreach ($edit as $key => $value) {

      // Check the translations appear in the right field type as well.
      $xpath = '//' . (strpos($key, '[body]') ? 'textarea' : 'input') . '[@name="' . $key . '"]';
      $this
        ->assertFieldByXPath($xpath, $value);
    }

    // Check that labels for email settings appear.
    $this
      ->assertText(t('Account cancellation confirmation'));
    $this
      ->assertText(t('Password recovery'));
  }

  /**
   * Tests source and target language edge cases.
   */
  public function testSourceAndTargetLanguage() {
    $this
      ->drupalLogin($this->adminUser);

    // Loading translation page for not-specified language (und)
    // should return 403.
    $this
      ->drupalGet('admin/config/system/site-information/translate/und/add');
    $this
      ->assertResponse(403);

    // Check the source language doesn't have 'Add' or 'Delete' link and
    // make sure source language edit goes to original configuration page
    // not the translation specific edit page.
    $this
      ->drupalGet('admin/config/system/site-information/translate');
    $this
      ->assertNoLinkByHref('admin/config/system/site-information/translate/en/edit');
    $this
      ->assertNoLinkByHref('admin/config/system/site-information/translate/en/add');
    $this
      ->assertNoLinkByHref('admin/config/system/site-information/translate/en/delete');
    $this
      ->assertLinkByHref('admin/config/system/site-information');

    // Translation addition to source language should return 403.
    $this
      ->drupalGet('admin/config/system/site-information/translate/en/add');
    $this
      ->assertResponse(403);

    // Translation editing in source language should return 403.
    $this
      ->drupalGet('admin/config/system/site-information/translate/en/edit');
    $this
      ->assertResponse(403);

    // Translation deletion in source language should return 403.
    $this
      ->drupalGet('admin/config/system/site-information/translate/en/delete');
    $this
      ->assertResponse(403);

    // Set default language of site information to not-specified language (und).
    $this
      ->config('system.site')
      ->set('langcode', LanguageInterface::LANGCODE_NOT_SPECIFIED)
      ->save();

    // Make sure translation tab does not exist on the configuration page.
    $this
      ->drupalGet('admin/config/system/site-information');
    $this
      ->assertNoLinkByHref('admin/config/system/site-information/translate');

    // If source language is not specified, translation page should be 403.
    $this
      ->drupalGet('admin/config/system/site-information/translate');
    $this
      ->assertResponse(403);
  }

  /**
   * Tests the views translation interface.
   */
  public function testViewsTranslationUI() {
    $this
      ->drupalLogin($this->adminUser);

    // Assert contextual link related to views.
    $ids = array(
      'entity.view.edit_form:view=frontpage:location=page&name=frontpage&display_id=page_1',
    );
    $response = $this
      ->renderContextualLinks($ids, 'node');
    $this
      ->assertResponse(200);
    $json = Json::decode($response);
    $this
      ->assertTrue(strpos($json[$ids[0]], 'Translate view'), 'Translate view contextual link added.');
    $description = 'All content promoted to the front page.';
    $human_readable_name = 'Frontpage';
    $display_settings_master = 'Master';
    $display_options_master = '(Empty)';
    $translation_base_url = 'admin/structure/views/view/frontpage/translate';
    $this
      ->drupalGet($translation_base_url);

    // Check 'Add' link of French to visit add page.
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/add");
    $this
      ->clickLink(t('Add'));

    // Make sure original text is present on this page.
    $this
      ->assertRaw($description);
    $this
      ->assertRaw($human_readable_name);

    // Update Views Fields for French.
    $edit = array(
      'translation[config_names][views.view.frontpage][description]' => $description . " FR",
      'translation[config_names][views.view.frontpage][label]' => $human_readable_name . " FR",
      'translation[config_names][views.view.frontpage][display][default][display_title]' => $display_settings_master . " FR",
      'translation[config_names][views.view.frontpage][display][default][display_options][title]' => $display_options_master . " FR",
    );
    $this
      ->drupalPostForm("{$translation_base_url}/fr/add", $edit, t('Save translation'));
    $this
      ->assertRaw(t('Successfully saved @language translation.', array(
      '@language' => 'French',
    )));

    // Check for edit, delete links (and no 'add' link) for French language.
    $this
      ->assertNoLinkByHref("{$translation_base_url}/fr/add");
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/edit");
    $this
      ->assertLinkByHref("{$translation_base_url}/fr/delete");

    // Check translation saved proper.
    $this
      ->drupalGet("{$translation_base_url}/fr/edit");
    $this
      ->assertFieldByName('translation[config_names][views.view.frontpage][description]', $description . " FR");
    $this
      ->assertFieldByName('translation[config_names][views.view.frontpage][label]', $human_readable_name . " FR");
    $this
      ->assertFieldByName('translation[config_names][views.view.frontpage][display][default][display_title]', $display_settings_master . " FR");
    $this
      ->assertFieldByName('translation[config_names][views.view.frontpage][display][default][display_options][title]', $display_options_master . " FR");
  }

  /**
   * Test the number of source elements for plural strings in config translation forms.
   */
  public function testPluralConfigStringsSourceElements() {
    $this
      ->drupalLogin($this->adminUser);

    // Languages to test, with various number of plural forms.
    $languages = array(
      'vi' => array(
        'plurals' => 1,
        'expected' => array(
          TRUE,
          FALSE,
          FALSE,
          FALSE,
        ),
      ),
      'fr' => array(
        'plurals' => 2,
        'expected' => array(
          TRUE,
          TRUE,
          FALSE,
          FALSE,
        ),
      ),
      'sl' => array(
        'plurals' => 4,
        'expected' => array(
          TRUE,
          TRUE,
          TRUE,
          TRUE,
        ),
      ),
    );
    foreach ($languages as $langcode => $data) {

      // Import a .po file to add a new language with a given number of plural forms
      $name = tempnam('temporary://', $langcode . '_') . '.po';
      file_put_contents($name, $this
        ->getPoFile($data['plurals']));
      $this
        ->drupalPostForm('admin/config/regional/translate/import', array(
        'langcode' => $langcode,
        'files[file]' => $name,
      ), t('Import'));

      // Change the config langcode of the 'files' view.
      $config = \Drupal::service('config.factory')
        ->getEditable('views.view.files');
      $config
        ->set('langcode', $langcode);
      $config
        ->save();

      // Go to the translation page of the 'files' view.
      $translation_url = 'admin/structure/views/view/files/translate/en/add';
      $this
        ->drupalGet($translation_url);

      // Check if the expected number of source elements are present.
      foreach ($data['expected'] as $index => $expected) {
        if ($expected) {
          $this
            ->assertRaw('edit-source-config-names-viewsviewfiles-display-default-display-options-fields-count-format-plural-string-' . $index);
        }
        else {
          $this
            ->assertNoRaw('edit-source-config-names-viewsviewfiles-display-default-display-options-fields-count-format-plural-string-' . $index);
        }
      }
    }
  }

  /**
   * Test translation of plural strings with multiple plural forms in config.
   */
  public function testPluralConfigStrings() {
    $this
      ->drupalLogin($this->adminUser);

    // First import a .po file with multiple plural forms.
    // This will also automatically add the 'sl' language.
    $name = tempnam('temporary://', "sl_") . '.po';
    file_put_contents($name, $this
      ->getPoFile(4));
    $this
      ->drupalPostForm('admin/config/regional/translate/import', array(
      'langcode' => 'sl',
      'files[file]' => $name,
    ), t('Import'));

    // Translate the files view, as this one uses numeric formatters.
    $description = 'Singular form';
    $field_value = '1 place';
    $field_value_plural = '@count places';
    $translation_url = 'admin/structure/views/view/files/translate/sl/add';
    $this
      ->drupalGet($translation_url);

    // Make sure original text is present on this page, in addition to 2 new
    // empty fields.
    $this
      ->assertRaw($description);
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][0]', $field_value);
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][1]', $field_value_plural);
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][2]', '');
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][3]', '');

    // Then make sure it also works.
    $edit = [
      'translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][0]' => $field_value . ' SL',
      'translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][1]' => $field_value_plural . ' 1 SL',
      'translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][2]' => $field_value_plural . ' 2 SL',
      'translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][3]' => $field_value_plural . ' 3 SL',
    ];
    $this
      ->drupalPostForm($translation_url, $edit, t('Save translation'));

    // Make sure the values have changed.
    $this
      ->drupalGet($translation_url);
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][0]', "{$field_value} SL");
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][1]', "{$field_value_plural} 1 SL");
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][2]', "{$field_value_plural} 2 SL");
    $this
      ->assertFieldByName('translation[config_names][views.view.files][display][default][display_options][fields][count][format_plural_string][3]', "{$field_value_plural} 3 SL");
  }

  /**
   * Tests the translation of field and field storage configuration.
   */
  public function testFieldConfigTranslation() {

    // Add a test field which has a translatable field setting and a
    // translatable field storage setting.
    $field_name = strtolower($this
      ->randomMachineName());
    $field_storage = FieldStorageConfig::create([
      'field_name' => $field_name,
      'entity_type' => 'entity_test',
      'type' => 'test_field',
    ]);
    $translatable_storage_setting = $this
      ->randomString();
    $field_storage
      ->setSetting('translatable_storage_setting', $translatable_storage_setting);
    $field_storage
      ->save();
    $bundle = strtolower($this
      ->randomMachineName());
    entity_test_create_bundle($bundle);
    $field = FieldConfig::create([
      'field_name' => $field_name,
      'entity_type' => 'entity_test',
      'bundle' => $bundle,
    ]);
    $translatable_field_setting = $this
      ->randomString();
    $field
      ->setSetting('translatable_field_setting', $translatable_field_setting);
    $field
      ->save();
    $this
      ->drupalLogin($this->translatorUser);
    $this
      ->drupalGet("/entity_test/structure/{$bundle}/fields/entity_test.{$bundle}.{$field_name}/translate");
    $this
      ->clickLink('Add');
    $this
      ->assertText('Translatable field setting');
    $this
      ->assertEscaped($translatable_field_setting);
    $this
      ->assertText('Translatable storage setting');
    $this
      ->assertEscaped($translatable_storage_setting);
  }

  /**
   * Test translation storage in locale storage.
   */
  public function testLocaleDBStorage() {

    // Enable import of translations. By default this is disabled for automated
    // tests.
    $this
      ->config('locale.settings')
      ->set('translation.import_enabled', TRUE)
      ->save();
    $this
      ->drupalLogin($this->adminUser);
    $langcode = 'xx';
    $name = $this
      ->randomMachineName(16);
    $edit = array(
      'predefined_langcode' => 'custom',
      'langcode' => $langcode,
      'label' => $name,
      'direction' => Language::DIRECTION_LTR,
    );
    $this
      ->drupalPostForm('admin/config/regional/language/add', $edit, t('Add custom language'));

    // Make sure there is no translation stored in locale storage before edit.
    $translation = $this
      ->getTranslation('user.settings', 'anonymous', 'fr');
    $this
      ->assertTrue(empty($translation));

    // Add custom translation.
    $edit = array(
      'translation[config_names][user.settings][anonymous]' => 'Anonyme',
    );
    $this
      ->drupalPostForm('admin/config/people/accounts/translate/fr/add', $edit, t('Save translation'));

    // Make sure translation stored in locale storage after saved language
    // specific configuration translation.
    $translation = $this
      ->getTranslation('user.settings', 'anonymous', 'fr');
    $this
      ->assertEqual('Anonyme', $translation
      ->getString());

    // revert custom translations to base translation.
    $edit = array(
      'translation[config_names][user.settings][anonymous]' => 'Anonymous',
    );
    $this
      ->drupalPostForm('admin/config/people/accounts/translate/fr/edit', $edit, t('Save translation'));

    // Make sure there is no translation stored in locale storage after revert.
    $translation = $this
      ->getTranslation('user.settings', 'anonymous', 'fr');
    $this
      ->assertEqual('Anonymous', $translation
      ->getString());
  }

  /**
   * Tests the single language existing.
   */
  public function testSingleLanguageUI() {
    $this
      ->drupalLogin($this->adminUser);

    // Delete French language
    $this
      ->drupalPostForm('admin/config/regional/language/delete/fr', array(), t('Delete'));
    $this
      ->assertRaw(t('The %language (%langcode) language has been removed.', array(
      '%language' => 'French',
      '%langcode' => 'fr',
    )));

    // Change default language to Tamil.
    $edit = array(
      'site_default_language' => 'ta',
    );
    $this
      ->drupalPostForm('admin/config/regional/language', $edit, t('Save configuration'));
    $this
      ->assertRaw(t('Configuration saved.'));

    // Delete English language
    $this
      ->drupalPostForm('admin/config/regional/language/delete/en', array(), t('Delete'));
    $this
      ->assertRaw(t('The %language (%langcode) language has been removed.', array(
      '%language' => 'English',
      '%langcode' => 'en',
    )));

    // Visit account setting translation page, this should not
    // throw any notices.
    $this
      ->drupalGet('admin/config/people/accounts/translate');
    $this
      ->assertResponse(200);
  }

  /**
   * Tests the config_translation_info_alter() hook.
   */
  public function testAlterInfo() {
    $this
      ->drupalLogin($this->adminUser);
    $this->container
      ->get('state')
      ->set('config_translation_test_config_translation_info_alter', TRUE);
    $this->container
      ->get('plugin.manager.config_translation.mapper')
      ->clearCachedDefinitions();

    // Check out if the translation page has the altered in settings.
    $this
      ->drupalGet('admin/config/system/site-information/translate/fr/add');
    $this
      ->assertText(t('Feed channel'));
    $this
      ->assertText(t('Feed description'));

    // Check if the translation page does not have the altered out settings.
    $this
      ->drupalGet('admin/config/people/accounts/translate/fr/add');
    $this
      ->assertText(t('Name'));
    $this
      ->assertNoText(t('Account cancellation confirmation'));
    $this
      ->assertNoText(t('Password recovery'));
  }

  /**
   * Tests the sequence data type translation.
   */
  public function testSequenceTranslation() {
    $this
      ->drupalLogin($this->adminUser);

    /** @var \Drupal\Core\Config\ConfigFactoryInterface $config_factory */
    $config_factory = $this->container
      ->get('config.factory');
    $expected = array(
      'kitten',
      'llama',
      'elephant',
    );
    $actual = $config_factory
      ->getEditable('config_translation_test.content')
      ->get('animals');
    $this
      ->assertEqual($expected, $actual);
    $edit = array(
      'translation[config_names][config_translation_test.content][content][value]' => '<p><strong>Hello World</strong> - FR</p>',
      'translation[config_names][config_translation_test.content][animals][0]' => 'kitten - FR',
      'translation[config_names][config_translation_test.content][animals][1]' => 'llama - FR',
      'translation[config_names][config_translation_test.content][animals][2]' => 'elephant - FR',
    );
    $this
      ->drupalPostForm('admin/config/media/file-system/translate/fr/add', $edit, t('Save translation'));
    $this->container
      ->get('language.config_factory_override')
      ->setLanguage(new Language(array(
      'id' => 'fr',
    )));
    $expected = array(
      'kitten - FR',
      'llama - FR',
      'elephant - FR',
    );
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->get('animals');
    $this
      ->assertEqual($expected, $actual);
  }

  /**
   * Test text_format translation.
   */
  public function testTextFormatTranslation() {
    $this
      ->drupalLogin($this->adminUser);

    /** @var \Drupal\Core\Config\ConfigFactoryInterface $config_factory */
    $config_factory = $this->container
      ->get('config.factory');
    $expected = array(
      'value' => '<p><strong>Hello World</strong></p>',
      'format' => 'plain_text',
    );
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->getOriginal('content', FALSE);
    $this
      ->assertEqual($expected, $actual);
    $translation_base_url = 'admin/config/media/file-system/translate';
    $this
      ->drupalGet($translation_base_url);

    // 'Add' link should be present for French translation.
    $translation_page_url = "{$translation_base_url}/fr/add";
    $this
      ->assertLinkByHref($translation_page_url);
    $this
      ->drupalGet($translation_page_url);

    // Assert that changing the text format is not possible, even for an
    // administrator.
    $this
      ->assertNoFieldByName('translation[config_names][config_translation_test.content][content][format]');

    // Update translatable fields.
    $edit = array(
      'translation[config_names][config_translation_test.content][content][value]' => '<p><strong>Hello World</strong> - FR</p>',
    );

    // Save language specific version of form.
    $this
      ->drupalPostForm($translation_page_url, $edit, t('Save translation'));

    // Get translation and check we've got the right value.
    $expected = array(
      'value' => '<p><strong>Hello World</strong> - FR</p>',
      'format' => 'plain_text',
    );
    $this->container
      ->get('language.config_factory_override')
      ->setLanguage(new Language(array(
      'id' => 'fr',
    )));
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->get('content');
    $this
      ->assertEqual($expected, $actual);

    // Change the text format of the source configuration and verify that the
    // text format of the translation does not change because that could lead to
    // security vulnerabilities.
    $config_factory
      ->getEditable('config_translation_test.content')
      ->set('content.format', 'full_html')
      ->save();
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->get('content');

    // The translation should not have changed, so re-use $expected.
    $this
      ->assertEqual($expected, $actual);

    // Because the text is now in a text format that the translator does not
    // have access to, the translator should not be able to translate it.
    $translation_page_url = "{$translation_base_url}/fr/edit";
    $this
      ->drupalLogin($this->translatorUser);
    $this
      ->drupalGet($translation_page_url);
    $this
      ->assertDisabledTextarea('edit-translation-config-names-config-translation-testcontent-content-value');
    $this
      ->drupalPostForm(NULL, array(), t('Save translation'));

    // Check that submitting the form did not update the text format of the
    // translation.
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->get('content');
    $this
      ->assertEqual($expected, $actual);

    // The administrator must explicitly change the text format.
    $this
      ->drupalLogin($this->adminUser);
    $edit = array(
      'translation[config_names][config_translation_test.content][content][format]' => 'full_html',
    );
    $this
      ->drupalPostForm($translation_page_url, $edit, t('Save translation'));
    $expected = array(
      'value' => '<p><strong>Hello World</strong> - FR</p>',
      'format' => 'full_html',
    );
    $actual = $config_factory
      ->get('config_translation_test.content')
      ->get('content');
    $this
      ->assertEqual($expected, $actual);
  }

  /**
   * Gets translation from locale storage.
   *
   * @param $config_name
   *   Configuration object.
   * @param $key
   *   Translation configuration field key.
   * @param $langcode
   *   String language code to load translation.
   *
   * @return bool|mixed
   *   Returns translation if exists, FALSE otherwise.
   */
  protected function getTranslation($config_name, $key, $langcode) {
    $settings_locations = $this->localeStorage
      ->getLocations(array(
      'type' => 'configuration',
      'name' => $config_name,
    ));
    $this
      ->assertTrue(!empty($settings_locations), format_string('Configuration locations found for %config_name.', array(
      '%config_name' => $config_name,
    )));
    if (!empty($settings_locations)) {
      $source = $this->container
        ->get('config.factory')
        ->get($config_name)
        ->get($key);
      $source_string = $this->localeStorage
        ->findString(array(
        'source' => $source,
        'type' => 'configuration',
      ));
      $this
        ->assertTrue(!empty($source_string), format_string('Found string for %config_name.%key.', array(
        '%config_name' => $config_name,
        '%key' => $key,
      )));
      if (!empty($source_string)) {
        $conditions = array(
          'lid' => $source_string->lid,
          'language' => $langcode,
        );
        $translations = $this->localeStorage
          ->getTranslations($conditions + array(
          'translated' => TRUE,
        ));
        return reset($translations);
      }
    }
    return FALSE;
  }

  /**
   * Sets site name and slogan for default language, helps in tests.
   *
   * @param string $site_name
   * @param string $site_slogan
   */
  protected function setSiteInformation($site_name, $site_slogan) {
    $edit = array(
      'site_name' => $site_name,
      'site_slogan' => $site_slogan,
    );
    $this
      ->drupalPostForm('admin/config/system/site-information', $edit, t('Save configuration'));
    $this
      ->assertRaw(t('The configuration options have been saved.'));
  }

  /**
   * Get server-rendered contextual links for the given contextual link ids.
   *
   * @param array $ids
   *   An array of contextual link ids.
   * @param string $current_path
   *   The Drupal path for the page for which the contextual links are rendered.
   *
   * @return string
   *   The response body.
   */
  protected function renderContextualLinks($ids, $current_path) {
    $post = array();
    for ($i = 0; $i < count($ids); $i++) {
      $post['ids[' . $i . ']'] = $ids[$i];
    }
    return $this
      ->drupalPostWithFormat('contextual/render', 'json', $post, array(
      'query' => array(
        'destination' => $current_path,
      ),
    ));
  }

  /**
   * Asserts that a textarea with a given ID has been disabled from editing.
   *
   * @param string $id
   *   The HTML ID of the textarea.
   *
   * @return bool
   *   TRUE if the assertion passed; FALSE otherwise.
   */
  protected function assertDisabledTextarea($id) {
    $textarea = $this
      ->xpath('//textarea[@id=:id and contains(@disabled, "disabled")]', array(
      ':id' => $id,
    ));
    $textarea = reset($textarea);
    $passed = $this
      ->assertTrue($textarea instanceof \SimpleXMLElement, SafeMarkup::format('Disabled field @id exists.', array(
      '@id' => $id,
    )));
    $expected = 'This field has been disabled because you do not have sufficient permissions to edit it.';
    $passed = $passed && $this
      ->assertEqual((string) $textarea, $expected, SafeMarkup::format('Disabled textarea @id hides text in an inaccessible text format.', array(
      '@id' => $id,
    )));

    // Make sure the text format select is not shown.
    $select_id = str_replace('value', 'format--2', $id);
    $select = $this
      ->xpath('//select[@id=:id]', array(
      ':id' => $select_id,
    ));
    return $passed && $this
      ->assertFalse($select, SafeMarkup::format('Field @id does not exist.', array(
      '@id' => $id,
    )));
  }

  /**
   * Helper function that returns a .po file with a given number of plural forms.
   */
  public function getPoFile($plurals) {
    $po_file = array();
    $po_file[1] = <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=1; plural=0;\\n"
EOF;
    $po_file[2] = <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=2; plural=(n>1);\\n"
EOF;
    $po_file[4] = <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=4; plural=(((n%100)==1)?(0):(((n%100)==2)?(1):((((n%100)==3)||((n%100)==4))?(2):3)));\\n"
EOF;
    return $po_file[$plurals];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 2
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected function Casts MarkupInterface objects into strings.
ConfigTranslationUiTest::$adminUser protected property Administrator user for tests.
ConfigTranslationUiTest::$langcodes protected property Languages to enable.
ConfigTranslationUiTest::$localeStorage protected property String translation storage object.
ConfigTranslationUiTest::$modules public static property Modules to enable.
ConfigTranslationUiTest::$translatorUser protected property Translator user for tests.
ConfigTranslationUiTest::assertDisabledTextarea protected function Asserts that a textarea with a given ID has been disabled from editing.
ConfigTranslationUiTest::getPoFile public function Helper function that returns a .po file with a given number of plural forms.
ConfigTranslationUiTest::getTranslation protected function Gets translation from locale storage.
ConfigTranslationUiTest::renderContextualLinks protected function Get server-rendered contextual links for the given contextual link ids.
ConfigTranslationUiTest::setSiteInformation protected function Sets site name and slogan for default language, helps in tests.
ConfigTranslationUiTest::setUp protected function Sets up a Drupal site for running functional and integration tests. Overrides WebTestBase::setUp
ConfigTranslationUiTest::testAccountSettingsConfigurationTranslation public function Tests the account settings translation interface.
ConfigTranslationUiTest::testAlterInfo public function Tests the config_translation_info_alter() hook.
ConfigTranslationUiTest::testContactConfigEntityTranslation public function Tests the contact form translation.
ConfigTranslationUiTest::testDateFormatTranslation public function Tests date format translation.
ConfigTranslationUiTest::testFieldConfigTranslation public function Tests the translation of field and field storage configuration.
ConfigTranslationUiTest::testLocaleDBStorage public function Test translation storage in locale storage.
ConfigTranslationUiTest::testPluralConfigStrings public function Test translation of plural strings with multiple plural forms in config.
ConfigTranslationUiTest::testPluralConfigStringsSourceElements public function Test the number of source elements for plural strings in config translation forms.
ConfigTranslationUiTest::testSequenceTranslation public function Tests the sequence data type translation.
ConfigTranslationUiTest::testSingleLanguageUI public function Tests the single language existing.
ConfigTranslationUiTest::testSiteInformationTranslationUi public function Tests the site information translation interface.
ConfigTranslationUiTest::testSourceAndTargetLanguage public function Tests source and target language edge cases.
ConfigTranslationUiTest::testSourceValueDuplicateSave public function Tests the site information translation interface.
ConfigTranslationUiTest::testTextFormatTranslation public function Test text_format translation.
ConfigTranslationUiTest::testViewsTranslationUI public function Tests the views translation interface.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
SessionTestTrait::$sessionName protected property The name of the session cookie.
SessionTestTrait::generateSessionName protected function Generates a session cookie name.
SessionTestTrait::getSessionName protected function Returns the session name in use on the child site.
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$configImporter protected property The config importer that can used in a test. 5
TestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
TestBase::$container protected property The dependency injection container used in the test.
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$dieOnFail public property Whether to die in case any test assertion fails.
TestBase::$httpAuthCredentials protected property HTTP authentication credentials (<username>:<password>).
TestBase::$httpAuthMethod protected property HTTP authentication method (specified as a CURLAUTH_* constant).
TestBase::$originalConf protected property The original configuration (variables), if available.
TestBase::$originalConfig protected property The original configuration (variables).
TestBase::$originalConfigDirectories protected property The original configuration directories.
TestBase::$originalContainer protected property The original container.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalLanguage protected property The original language.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$originalProfile protected property The original installation profile.
TestBase::$originalSessionName protected property The name of the session cookie of the test-runner.
TestBase::$originalSettings protected property The settings array.
TestBase::$originalSite protected property The site directory of the original parent site.
TestBase::$privateFilesDirectory protected property The private file directory for the test environment.
TestBase::$publicFilesDirectory protected property The public file directory for the test environment.
TestBase::$results public property Current results of this test case.
TestBase::$siteDirectory protected property The site directory of this test run.
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 4
TestBase::$tempFilesDirectory protected property The temporary file directory for the test environment.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$translationFilesDirectory protected property The translation file directory for the test environment.
TestBase::$verbose public property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertErrorLogged protected function Asserts that a specific error has been logged to the PHP error log.
TestBase::assertFalse protected function Check to see if a value is false.
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNoErrorsLogged protected function Asserts that no errors have been logged to the PHP error.log thus far.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false.
TestBase::beforePrepareEnvironment protected function Act on global state information before the environment is altered for a test. 1
TestBase::changeDatabasePrefix private function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 2
TestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
TestBase::configImporter public function Returns a ConfigImporter object to import test importing of configuration. 5
TestBase::copyConfig public function Copies configuration objects from source storage to target storage.
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 3
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::getDatabasePrefix public function Gets the database prefix.
TestBase::getTempFilesDirectory public function Gets the temporary files directory.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareDatabasePrefix private function Generates a database prefix for running tests.
TestBase::prepareEnvironment private function Prepares the current environment for running the test.
TestBase::restoreEnvironment private function Cleans up the test environment and restores the original environment.
TestBase::run public function Run all tests in this class. 1
TestBase::settingsSet protected function Changes in memory settings.
TestBase::storeAssertion protected function Helper method to store an assertion record in the configured database.
TestBase::verbose protected function Logs a verbose message in a text file.
UserCreationTrait::checkPermissions protected function Checks whether a given list of permission names is valid.
UserCreationTrait::createAdminRole protected function Creates an administrative role. Aliased as: drupalCreateAdminRole
UserCreationTrait::createRole protected function Creates a role with specified permissions. Aliased as: drupalCreateRole
UserCreationTrait::createUser protected function Create a user with a given set of permissions. Aliased as: drupalCreateUser
UserCreationTrait::grantPermissions protected function Grant permissions to a user role.
UserCreationTrait::setCurrentUser protected function Switch the current logged in user.
WebTestBase::$additionalCurlOptions protected property Additional cURL options.
WebTestBase::$assertAjaxHeader protected property Whether or not to assert the presence of the X-Drupal-Ajax-Token.
WebTestBase::$classLoader protected property The class loader to use for installation and initialization of setup.
WebTestBase::$configDirectories protected property The config directories used in this test.
WebTestBase::$cookieFile protected property The current cookie file used by cURL.
WebTestBase::$cookies protected property The cookies of the page currently loaded in the internal browser.
WebTestBase::$curlCookies protected property Cookies to set on curl requests.
WebTestBase::$curlHandle protected property The handle of the current cURL connection.
WebTestBase::$customTranslations protected property An array of custom translations suitable for drupal_rewrite_settings().
WebTestBase::$dumpHeaders protected property Indicates that headers should be dumped if verbose output is enabled. 12
WebTestBase::$generatedTestFiles protected property Whether the files were copied to the test files directory.
WebTestBase::$headers protected property The headers of the page currently loaded in the internal browser.
WebTestBase::$kernel protected property The kernel used in this test. Overrides TestBase::$kernel
WebTestBase::$loggedInUser protected property The current user logged in using the internal browser.
WebTestBase::$maximumMetaRefreshCount protected property The number of meta refresh redirects to follow, or NULL if unlimited.
WebTestBase::$maximumRedirects protected property The maximum number of redirects to follow when handling responses.
WebTestBase::$metaRefreshCount protected property The number of meta refresh redirects followed during ::drupalGet().
WebTestBase::$originalBatch protected property The original batch, before it was changed for testing purposes.
WebTestBase::$originalShutdownCallbacks protected property The original shutdown handlers array, before it was cleaned for testing. Overrides TestBase::$originalShutdownCallbacks
WebTestBase::$originalUser protected property The original user, before it was changed to a clean uid = 1 for testing. Overrides TestBase::$originalUser
WebTestBase::$profile protected property The profile to install as a basis for testing. 30
WebTestBase::$redirectCount protected property The number of redirects followed during the handling of a request.
WebTestBase::$rootUser protected property The "#1" admin user.
WebTestBase::$sessionId protected property The current session ID, if available.
WebTestBase::$url protected property The URL currently loaded in the internal browser.
WebTestBase::addCustomTranslations protected function Queues custom translations to be written to settings.php.
WebTestBase::assertBlockAppears protected function Checks to see whether a block appears on the page.
WebTestBase::assertCacheContext protected function Asserts whether an expected cache context was present in the last response.
WebTestBase::assertCacheTag protected function Asserts whether an expected cache tag was present in the last response.
WebTestBase::assertHeader protected function Check if a HTTP response header exists and has the expected value.
WebTestBase::assertMail protected function Asserts that the most recently sent email message has the given value.
WebTestBase::assertMailPattern protected function Asserts that the most recently sent email message has the pattern in it.
WebTestBase::assertMailString protected function Asserts that the most recently sent email message has the string in it.
WebTestBase::assertNoBlockAppears protected function Checks to see whether a block does not appears on the page.
WebTestBase::assertNoCacheContext protected function Asserts that a cache context was not present in the last response.
WebTestBase::assertNoCacheTag protected function Asserts whether an expected cache tag was absent in the last response.
WebTestBase::assertNoResponse protected function Asserts the page did not return the specified response code.
WebTestBase::assertResponse protected function Asserts the page responds with the specified response code.
WebTestBase::assertUrl protected function Passes if the internal browser's URL matches the given path.
WebTestBase::buildUrl protected function Builds an a absolute URL from a system path or a URL object.
WebTestBase::checkForMetaRefresh protected function Checks for meta refresh tag and if found call drupalGet() recursively.
WebTestBase::clickLink protected function Follows a link by complete name.
WebTestBase::clickLinkHelper protected function Provides a helper for ::clickLink() and ::clickLinkPartialName().
WebTestBase::clickLinkPartialName protected function Follows a link by partial name.
WebTestBase::cronRun protected function Runs cron in the Drupal installed by Simpletest.
WebTestBase::curlClose protected function Close the cURL handler and unset the handler.
WebTestBase::curlExec protected function Initializes and executes a cURL request. 2
WebTestBase::curlHeaderCallback protected function Reads headers and registers errors received from the tested site.
WebTestBase::curlInitialize protected function Initializes the cURL connection.
WebTestBase::doInstall protected function Execute the non-interactive installer.
WebTestBase::drupalBuildEntityView protected function Builds the renderable view of an entity.
WebTestBase::drupalCompareFiles protected function Compare two files based on size and file name.
WebTestBase::drupalCreateContentType protected function Creates a custom content type based on default settings.
WebTestBase::drupalCreateNode protected function Creates a node based on default settings.
WebTestBase::drupalGet protected function Retrieves a Drupal path or an absolute path. 1
WebTestBase::drupalGetAjax protected function Requests a path or URL in drupal_ajax format and JSON-decodes the response.
WebTestBase::drupalGetHeader protected function Gets the value of an HTTP response header.
WebTestBase::drupalGetHeaders protected function Gets the HTTP response headers of the requested page.
WebTestBase::drupalGetJSON protected function Retrieves a Drupal path or an absolute path and JSON decodes the result.
WebTestBase::drupalGetMails protected function Gets an array containing all emails sent during this test case.
WebTestBase::drupalGetNodeByTitle function Get a node from the database based on its title.
WebTestBase::drupalGetTestFiles protected function Gets a list of files that can be used in tests.
WebTestBase::drupalGetWithFormat protected function Retrieves a Drupal path or an absolute path for a given format.
WebTestBase::drupalGetXHR protected function Requests a Drupal path or an absolute path as if it is a XMLHttpRequest.
WebTestBase::drupalHead protected function Retrieves only the headers for a Drupal path or an absolute path.
WebTestBase::drupalLogin protected function Log in a user with the internal browser.
WebTestBase::drupalLogout protected function Logs a user out of the internal browser and confirms.
WebTestBase::drupalPlaceBlock protected function Creates a block instance based on default settings.
WebTestBase::drupalPost protected function Perform a POST HTTP request.
WebTestBase::drupalPostAjaxForm protected function Executes an Ajax form submission.
WebTestBase::drupalPostForm protected function Executes a form submission.
WebTestBase::drupalPostWithFormat protected function Performs a POST HTTP request with a specific format.
WebTestBase::drupalProcessAjaxResponse protected function Processes an AJAX response into current content.
WebTestBase::drupalUserIsLoggedIn protected function Returns whether a given user account is logged in.
WebTestBase::findBlockInstance protected function Find a block instance on the page.
WebTestBase::getAbsoluteUrl protected function Takes a path and returns an absolute path.
WebTestBase::getAjaxPageStatePostData protected function Get the Ajax page state from drupalSettings and prepare it for POSTing.
WebTestBase::getDatabaseTypes protected function Returns all supported database driver installer objects.
WebTestBase::handleForm protected function Handles form input related to drupalPostForm().
WebTestBase::initConfig protected function Initialize various configurations post-installation.
WebTestBase::initKernel protected function Initializes the kernel after installation.
WebTestBase::initSettings protected function Initialize settings created during install.
WebTestBase::initUserSession protected function Initializes user 1 for the site to be installed.
WebTestBase::installModulesFromClassProperty protected function Install modules defined by `static::$modules`.
WebTestBase::installParameters protected function Returns the parameters that will be used when Simpletest installs Drupal. 2
WebTestBase::isInChildSite protected function Returns whether the test is being executed from within a test site.
WebTestBase::prepareRequestForGenerator protected function Creates a mock request and sets it on the generator.
WebTestBase::prepareSettings protected function Prepares site settings and services before installation. 1
WebTestBase::rebuildAll protected function Reset and rebuild the environment after setup.
WebTestBase::rebuildContainer protected function Rebuilds \Drupal::getContainer().
WebTestBase::refreshVariables protected function Refreshes in-memory configuration and state information. 1
WebTestBase::resetAll protected function Resets all data structures after having enabled new modules.
WebTestBase::restoreBatch protected function Restore the original batch.
WebTestBase::serializePostValues protected function Serialize POST HTTP request values.
WebTestBase::setBatch protected function Preserve the original batch, and instantiate the test batch.
WebTestBase::setContainerParameter protected function Changes parameters in the services.yml file.
WebTestBase::setHttpResponseDebugCacheabilityHeaders protected function Enables/disables the cacheability headers.
WebTestBase::tearDown protected function Cleans up after testing. Overrides TestBase::tearDown 2
WebTestBase::translatePostValues protected function Transforms a nested array into a flat array suitable for WebTestBase::drupalPostForm().
WebTestBase::verboseEmail protected function Outputs to verbose the most recent $count emails sent.
WebTestBase::writeCustomTranslations protected function Writes custom translations to the test site's settings.php.
WebTestBase::writeSettings protected function Rewrites the settings.php file of the test site.
WebTestBase::__construct function Constructor for \Drupal\simpletest\WebTestBase. Overrides TestBase::__construct 1