You are here

public function ViewEditTest::testEditFormLanguageOptions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views_ui/tests/src/Functional/ViewEditTest.php \Drupal\Tests\views_ui\Functional\ViewEditTest::testEditFormLanguageOptions()
  2. 10 core/modules/views_ui/tests/src/Functional/ViewEditTest.php \Drupal\Tests\views_ui\Functional\ViewEditTest::testEditFormLanguageOptions()

Tests the language options on the views edit form.

File

core/modules/views_ui/tests/src/Functional/ViewEditTest.php, line 125

Class

ViewEditTest
Tests some general functionality of editing views, like deleting a view.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testEditFormLanguageOptions() {
  $assert_session = $this
    ->assertSession();

  // Language options should not exist without language module.
  $test_views = [
    'test_view' => 'default',
    'test_display' => 'page_1',
  ];
  foreach ($test_views as $view_name => $display) {
    $this
      ->drupalGet('admin/structure/views/view/' . $view_name);
    $this
      ->assertSession()
      ->statusCodeEquals(200);
    $langcode_url = 'admin/structure/views/nojs/display/' . $view_name . '/' . $display . '/rendering_language';
    $this
      ->assertNoLinkByHref($langcode_url);
    $assert_session
      ->linkNotExistsExact(t('@type language selected for page', [
      '@type' => t('Content'),
    ]));
    $this
      ->assertSession()
      ->linkNotExists(t('Content language of view row'));
  }

  // Make the site multilingual and test the options again.
  $this->container
    ->get('module_installer')
    ->install([
    'language',
    'content_translation',
  ]);
  ConfigurableLanguage::createFromLangcode('hu')
    ->save();
  $this
    ->resetAll();
  $this
    ->rebuildContainer();

  // Language options should now exist with entity language the default.
  foreach ($test_views as $view_name => $display) {
    $this
      ->drupalGet('admin/structure/views/view/' . $view_name);
    $this
      ->assertSession()
      ->statusCodeEquals(200);
    $langcode_url = 'admin/structure/views/nojs/display/' . $view_name . '/' . $display . '/rendering_language';
    if ($view_name == 'test_view') {
      $this
        ->assertNoLinkByHref($langcode_url);
      $assert_session
        ->linkNotExistsExact(t('@type language selected for page', [
        '@type' => t('Content'),
      ]));
      $this
        ->assertSession()
        ->linkNotExists(t('Content language of view row'));
    }
    else {
      $this
        ->assertLinkByHref($langcode_url);
      $assert_session
        ->linkNotExistsExact(t('@type language selected for page', [
        '@type' => t('Content'),
      ]));
      $this
        ->assertSession()
        ->linkExists(t('Content language of view row'));
    }
    $this
      ->drupalGet($langcode_url);
    $this
      ->assertSession()
      ->statusCodeEquals(200);
    if ($view_name == 'test_view') {
      $this
        ->assertText(t('The view is not based on a translatable entity type or the site is not multilingual.'));
    }
    else {
      $this
        ->assertFieldByName('rendering_language', '***LANGUAGE_entity_translation***');

      // Test that the order of the language list is similar to other language
      // lists, such as in the content translation settings.
      $expected_elements = [
        '***LANGUAGE_entity_translation***',
        '***LANGUAGE_entity_default***',
        '***LANGUAGE_site_default***',
        '***LANGUAGE_language_interface***',
        'en',
        'hu',
      ];
      $elements = $this
        ->xpath('//select[@id="edit-rendering-language"]/option');

      // Compare values inside the option elements with expected values.
      for ($i = 0; $i < count($elements); $i++) {
        $this
          ->assertEqual($elements[$i]
          ->getAttribute('value'), $expected_elements[$i]);
      }

      // Check that the selected values are respected even we they are not
      // supposed to be listed.
      // Give permission to edit languages to authenticated users.
      $edit = [
        'authenticated[administer languages]' => TRUE,
      ];
      $this
        ->drupalPostForm('/admin/people/permissions', $edit, t('Save permissions'));

      // Enable Content language negotiation so we have one more item
      // to select.
      $edit = [
        'language_content[configurable]' => TRUE,
      ];
      $this
        ->drupalPostForm('admin/config/regional/language/detection', $edit, t('Save settings'));

      // Choose the new negotiation as the rendering language.
      $edit = [
        'rendering_language' => '***LANGUAGE_language_content***',
      ];
      $this
        ->drupalPostForm('/admin/structure/views/nojs/display/' . $view_name . '/' . $display . '/rendering_language', $edit, t('Apply'));

      // Disable language content negotiation.
      $edit = [
        'language_content[configurable]' => FALSE,
      ];
      $this
        ->drupalPostForm('admin/config/regional/language/detection', $edit, t('Save settings'));

      // Check that the previous selection is listed and selected.
      $this
        ->drupalGet($langcode_url);
      $element = $this
        ->xpath('//select[@id="edit-rendering-language"]/option[@value="***LANGUAGE_language_content***" and @selected="selected"]');
      $this
        ->assertFalse(empty($element), 'Current selection is not lost');

      // Check the order for the langcode filter.
      $langcode_url = 'admin/structure/views/nojs/handler/' . $view_name . '/' . $display . '/filter/langcode';
      $this
        ->drupalGet($langcode_url);
      $this
        ->assertSession()
        ->statusCodeEquals(200);
      $expected_elements = [
        'all',
        '***LANGUAGE_site_default***',
        '***LANGUAGE_language_interface***',
        '***LANGUAGE_language_content***',
        'en',
        'hu',
        'und',
        'zxx',
      ];
      $elements = $this
        ->xpath('//div[@id="edit-options-value"]//input');

      // Compare values inside the option elements with expected values.
      for ($i = 0; $i < count($elements); $i++) {
        $this
          ->assertEqual($elements[$i]
          ->getAttribute('value'), $expected_elements[$i]);
      }
    }
  }
}