ArgumentLanguageTest.php

Same filename and directory in other branches
  1. 9 core/modules/language/tests/src/Kernel/Views/ArgumentLanguageTest.php
  2. 8.9.x core/modules/language/tests/src/Kernel/Views/ArgumentLanguageTest.php
  3. 11.x core/modules/language/tests/src/Kernel/Views/ArgumentLanguageTest.php

Namespace

Drupal\Tests\language\Kernel\Views

File

core/modules/language/tests/src/Kernel/Views/ArgumentLanguageTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\language\Kernel\Views;

use Drupal\views\Views;

/**
 * Tests the argument language handler.
 *
 * @group language
 * @see \Drupal\language\Plugin\views\argument\Language.php
 */
class ArgumentLanguageTest extends LanguageTestBase {
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_view',
  ];
  
  /**
   * Tests the language argument.
   */
  public function testArgument() : void {
    $view = Views::getView('test_view');
    foreach ([
      'en' => 'John',
      'xx-lolspeak' => 'George',
    ] as $langcode => $name) {
      $view->setDisplay();
      $view->displayHandlers
        ->get('default')
        ->overrideOption('arguments', [
        'langcode' => [
          'id' => 'langcode',
          'table' => 'views_test_data',
          'field' => 'langcode',
        ],
      ]);
      $this->executeView($view, [
        $langcode,
      ]);
      $expected = [
        [
          'name' => $name,
        ],
      ];
      $this->assertIdenticalResultset($view, $expected, [
        'views_test_data_name' => 'name',
      ]);
      $view->destroy();
    }
  }

}

Classes

Title Deprecated Summary
ArgumentLanguageTest Tests the argument language handler.

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