You are here

public function LanguageTest::testGetConfig in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php \Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin\LanguageTest::testGetConfig()

@covers ::getConfig

@dataProvider providerGetConfig

File

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

Class

LanguageTest
@coversDefaultClass \Drupal\ckeditor\Plugin\CKEditorPlugin\Language

Namespace

Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin

Code

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']));
}