You are here

UserTranslationUITest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/user/src/Tests/UserTranslationUITest.php

Namespace

Drupal\user\Tests

File

core/modules/user/src/Tests/UserTranslationUITest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\user\Tests\UserTranslationUITest.
 */
namespace Drupal\user\Tests;

use Drupal\content_translation\Tests\ContentTranslationUITestBase;

/**
 * Tests the User Translation UI.
 *
 * @group user
 */
class UserTranslationUITest extends ContentTranslationUITestBase {

  /**
   * The user name of the test user.
   *
   * @var string
   */
  protected $name;

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'language',
    'content_translation',
    'user',
    'views',
  );
  protected function setUp() {
    $this->entityTypeId = 'user';
    $this->testLanguageSelector = FALSE;
    $this->name = $this
      ->randomMachineName();
    parent::setUp();
    \Drupal::entityManager()
      ->getStorage('user')
      ->resetCache();
  }

  /**
   * {@inheritdoc}
   */
  protected function getTranslatorPermissions() {
    return array_merge(parent::getTranslatorPermissions(), array(
      'administer users',
    ));
  }

  /**
   * {@inheritdoc}
   */
  protected function getNewEntityValues($langcode) {

    // User name is not translatable hence we use a fixed value.
    return array(
      'name' => $this->name,
    ) + parent::getNewEntityValues($langcode);
  }

  /**
   * {@inheritdoc}
   */
  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);
      }
    }
  }

}

Classes

Namesort descending Description
UserTranslationUITest Tests the User Translation UI.