You are here

AdminPathEntityConverterLanguageTest.php in Drupal 8

File

core/modules/language/tests/src/Functional/AdminPathEntityConverterLanguageTest.php
View source
<?php

namespace Drupal\Tests\language\Functional;

use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\Tests\BrowserTestBase;

/**
 * Test administration path based conversion of entities.
 *
 * @group language
 */
class AdminPathEntityConverterLanguageTest extends BrowserTestBase {
  public static $modules = [
    'language',
    'language_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  protected function setUp() {
    parent::setUp();
    $permissions = [
      'access administration pages',
      'administer site configuration',
    ];
    $this
      ->drupalLogin($this
      ->drupalCreateUser($permissions));
    ConfigurableLanguage::createFromLangcode('es')
      ->save();
  }

  /**
   * Tests the translated and untranslated config entities are loaded properly.
   */
  public function testConfigUsingCurrentLanguage() {
    \Drupal::languageManager()
      ->getLanguageConfigOverride('es', 'language.entity.es')
      ->set('label', 'Español')
      ->save();
    $this
      ->drupalGet('es/admin/language_test/entity_using_current_language/es');
    $this
      ->assertNoRaw(t('Loaded %label.', [
      '%label' => 'Spanish',
    ]));
    $this
      ->assertRaw(t('Loaded %label.', [
      '%label' => 'Español',
    ]));
    $this
      ->drupalGet('es/admin/language_test/entity_using_original_language/es');
    $this
      ->assertRaw(t('Loaded %label.', [
      '%label' => 'Spanish',
    ]));
    $this
      ->assertNoRaw(t('Loaded %label.', [
      '%label' => 'Español',
    ]));
  }

}

Classes

Namesort descending Description
AdminPathEntityConverterLanguageTest Test administration path based conversion of entities.