Mercurial > hg > isophonics-drupal-site
view core/modules/user/tests/src/Functional/UserTranslationUITest.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | c2387f117808 |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\user\Functional; use Drupal\Tests\content_translation\Functional\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 = ['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(), ['administer users']); } /** * {@inheritdoc} */ protected function getNewEntityValues($langcode) { // User name is not translatable hence we use a fixed value. return ['name' => $this->name] + parent::getNewEntityValues($langcode); } /** * {@inheritdoc} */ protected function doTestTranslationEdit() { $storage = $this->container->get('entity_type.manager') ->getStorage($this->entityTypeId); $storage->resetCache([$this->entityId]); $entity = $storage->load($this->entityId); $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 = ['language' => $languages[$langcode]]; $url = $entity->toUrl('edit-form', $options); $this->drupalGet($url); $title = t('@title [%language translation]', [ '@title' => $entity->getTranslation($langcode)->label(), '%language' => $languages[$langcode]->getName(), ]); $this->assertRaw($title); } } } /** * Test translated user deletion. */ public function testTranslatedUserDeletion() { $this->drupalLogin($this->administrator); $entity_id = $this->createEntity($this->getNewEntityValues('en'), 'en'); $entity = $this->container->get('entity_type.manager') ->getStorage($this->entityTypeId) ->load($entity_id); $translated_entity = $entity->addTranslation('fr'); $translated_entity->save(); $url = $entity->toUrl( 'edit-form', ['language' => $this->container->get('language_manager')->getLanguage('en')] ); $this->drupalPostForm($url, [], t('Cancel account')); $this->assertSession()->statusCodeEquals(200); } }