LanguageSelectorTranslatableTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php
  2. 10 core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php
  3. 11.x core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php

Namespace

Drupal\Tests\language\Functional

File

core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php

View source
<?php

namespace Drupal\Tests\language\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests the content translation settings language selector options.
 *
 * @group language
 */
class LanguageSelectorTranslatableTest extends BrowserTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'language',
        'content_translation',
        'node',
        'comment',
        'field_ui',
        'entity_test',
        'locale',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * The user with administrator privileges.
     *
     * @var \Drupal\user\Entity\User
     */
    public $administrator;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        // Create user and set permissions.
        $this->administrator = $this->drupalCreateUser($this->getAdministratorPermissions(), 'administrator');
        $this->drupalLogin($this->administrator);
    }
    
    /**
     * Returns an array of permissions needed for the translator.
     */
    protected function getAdministratorPermissions() {
        return array_filter([
            'translate interface',
            'administer content translation',
            'create content translations',
            'update content translations',
            'delete content translations',
            'administer languages',
        ]);
    }
    
    /**
     * Tests content translation language selectors are correctly translated.
     */
    public function testLanguageStringSelector() {
        // Add another language.
        $edit = [
            'predefined_langcode' => 'es',
        ];
        $this->drupalGet('admin/config/regional/language/add');
        $this->submitForm($edit, 'Add language');
        // Translate the string English in Spanish (Inglés). Override config entity.
        $name_translation = 'Inglés';
        \Drupal::languageManager()->getLanguageConfigOverride('es', 'language.entity.en')
            ->set('label', $name_translation)
            ->save();
        // Check content translation overview selector.
        $path = 'es/admin/config/regional/content-language';
        $this->drupalGet($path);
        // Get en language from selector.
        $option = $this->assertSession()
            ->optionExists('edit-settings-user-user-settings-language-langcode', 'en');
        // Check that the language text is translated.
        $this->assertSame($name_translation, $option->getText());
    }

}

Classes

Title Deprecated Summary
LanguageSelectorTranslatableTest Tests the content translation settings language selector options.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.