LanguageTest.php

Same filename in this branch
  1. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
Same filename and directory in other branches
  1. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  2. 11.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  3. 11.x core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  4. 11.x core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
  5. 10 core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  6. 10 core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
  7. 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  8. 9 core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  9. 9 core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
  10. 9 core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php

Namespace

Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin

File

core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php

View source
<?php

namespace Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin;

use Drupal\ckeditor\Plugin\CKEditorPlugin\Language;
use Drupal\Core\Language\LanguageManager;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\ckeditor\Plugin\CKEditorPlugin\Language
 *
 * @group ckeditor
 */
class LanguageTest extends UnitTestCase {
  
  /**
   * The plugin under test.
   *
   * @var \Drupal\ckeditor\Plugin\CKEditorPlugin\Language
   */
  protected $plugin;
  
  /**
   * {@inheritdoc}
   */
  public function setUp() {
    $this->plugin = new Language([], $this->randomMachineName(), []);
  }
  
  /**
   * Provides a list of configs to test.
   */
  public function providerGetConfig() {
    return [
      [
        'un',
        count(LanguageManager::getUnitedNationsLanguageList()),
      ],
      [
        'all',
        count(LanguageManager::getStandardLanguageList()),
      ],
    ];
  }
  
  /**
   * @covers ::getConfig
   *
   * @dataProvider providerGetConfig
   */
  public function testGetConfig($language_list, $expected_number) {
    $editor = $this->getMockBuilder('Drupal\\editor\\Entity\\Editor')
      ->disableOriginalConstructor()
      ->getMock();
    $editor->expects($this->once())
      ->method('getSettings')
      ->willReturn([
      'plugins' => [
        'language' => [
          'language_list' => $language_list,
        ],
      ],
    ]);
    $config = $this->plugin
      ->getConfig($editor);
    $this->assertIsArray($config);
    $this->assertContains('ar:Arabic:rtl', $config['language_list']);
    $this->assertContains('zh-hans:Chinese, Simplified', $config['language_list']);
    $this->assertContains('en:English', $config['language_list']);
    $this->assertContains('fr:French', $config['language_list']);
    $this->assertContains('ru:Russian', $config['language_list']);
    $this->assertContains('ar:Arabic:rtl', $config['language_list']);
    $this->assertEquals($expected_number, count($config['language_list']));
  }

}

Classes

Title Deprecated Summary
LanguageTest @coversDefaultClass \Drupal\ckeditor\Plugin\CKEditorPlugin\Language[[api-linebreak]]

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