You are here

protected function UserTranslationUITest::doTestTranslationEdit in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Tests/UserTranslationUITest.php \Drupal\user\Tests\UserTranslationUITest::doTestTranslationEdit()

Tests edit content translation.

Overrides ContentTranslationUITestBase::doTestTranslationEdit

File

core/modules/user/src/Tests/UserTranslationUITest.php, line 60
Contains \Drupal\user\Tests\UserTranslationUITest.

Class

UserTranslationUITest
Tests the User Translation UI.

Namespace

Drupal\user\Tests

Code

protected function doTestTranslationEdit() {
  $entity = entity_load($this->entityTypeId, $this->entityId, TRUE);
  $languages = $this->container
    ->get('language_manager')
    ->getLanguages();
  foreach ($this->langcodes as $langcode) {

    // We only want to test the title for non-english translations.
    if ($langcode != 'en') {
      $options = array(
        'language' => $languages[$langcode],
      );
      $url = $entity
        ->urlInfo('edit-form', $options);
      $this
        ->drupalGet($url);
      $title = t('@title [%language translation]', array(
        '@title' => $entity
          ->getTranslation($langcode)
          ->label(),
        '%language' => $languages[$langcode]
          ->getName(),
      ));
      $this
        ->assertRaw($title);
    }
  }
}