View source
<?php
namespace Drupal\Tests\ckeditor\Kernel;
use Drupal\editor\Entity\Editor;
use Drupal\KernelTests\KernelTestBase;
use Drupal\filter\Entity\FilterFormat;
class CKEditorPluginManagerTest extends KernelTestBase {
protected static $modules = [
'system',
'user',
'filter',
'editor',
'ckeditor',
];
protected $manager;
protected function setUp() : void {
parent::setUp();
$filtered_html_format = FilterFormat::create([
'format' => 'filtered_html',
'name' => 'Filtered HTML',
'weight' => 0,
'filters' => [],
]);
$filtered_html_format
->save();
$editor = Editor::create([
'format' => 'filtered_html',
'editor' => 'ckeditor',
]);
$editor
->save();
}
public function testEnabledPlugins() {
$this->manager = $this->container
->get('plugin.manager.ckeditor.plugin');
$editor = Editor::load('filtered_html');
$definitions = array_keys($this->manager
->getDefinitions());
sort($definitions);
$this
->assertSame([
'drupalimage',
'drupalimagecaption',
'drupallink',
'internal',
'language',
'stylescombo',
], $definitions, 'No CKEditor plugins found besides the built-in ones.');
$enabled_plugins = [
'drupalimage' => $this
->getModulePath('ckeditor') . '/js/plugins/drupalimage/plugin.js',
'drupallink' => $this
->getModulePath('ckeditor') . '/js/plugins/drupallink/plugin.js',
];
$this
->assertSame($enabled_plugins, $this->manager
->getEnabledPluginFiles($editor), 'Only built-in plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $enabled_plugins, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'Only the "internal" plugin is enabled.');
$this
->enableModules([
'ckeditor_test',
]);
$this->manager = $this->container
->get('plugin.manager.ckeditor.plugin');
$this->manager
->clearCachedDefinitions();
$plugin_ids = array_keys($this->manager
->getDefinitions());
sort($plugin_ids);
$this
->assertSame([
'drupalimage',
'drupalimagecaption',
'drupallink',
'internal',
'language',
'llama',
'llama_button',
'llama_contextual',
'llama_contextual_and_button',
'llama_css',
'stylescombo',
], $plugin_ids, 'Additional CKEditor plugins found.');
$this
->assertSame($enabled_plugins, $this->manager
->getEnabledPluginFiles($editor), 'Only the internal plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $enabled_plugins, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'Only the "internal" plugin is enabled.');
$settings = $editor
->getSettings();
$original_toolbar = $settings['toolbar'];
$settings['toolbar']['rows'][0][0]['items'][] = 'Llama';
$editor
->setSettings($settings);
$editor
->save();
$file = [];
$file['b'] = $this
->getModulePath('ckeditor_test') . '/js/llama_button.js';
$file['c'] = $this
->getModulePath('ckeditor_test') . '/js/llama_contextual.js';
$file['cb'] = $this
->getModulePath('ckeditor_test') . '/js/llama_contextual_and_button.js';
$file['css'] = $this
->getModulePath('ckeditor_test') . '/js/llama_css.js';
$expected = $enabled_plugins + [
'llama_button' => $file['b'],
'llama_contextual_and_button' => $file['cb'],
];
$this
->assertSame($expected, $this->manager
->getEnabledPluginFiles($editor), 'The LlamaButton and LlamaContextualAndButton plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $expected, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'The LlamaButton and LlamaContextualAndButton plugins are enabled.');
$settings['toolbar'] = $original_toolbar;
$settings['toolbar']['rows'][0][0]['items'][] = 'Strike';
$editor
->setSettings($settings);
$editor
->save();
$expected = $enabled_plugins + [
'llama_contextual' => $file['c'],
'llama_contextual_and_button' => $file['cb'],
];
$this
->assertSame($expected, $this->manager
->getEnabledPluginFiles($editor), 'The LLamaContextual and LlamaContextualAndButton plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $expected, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'The LlamaContextual and LlamaContextualAndButton plugins are enabled.');
$settings['toolbar']['rows'][0][0]['items'][] = 'Llama';
$editor
->setSettings($settings);
$editor
->save();
$expected = $enabled_plugins + [
'llama_button' => $file['b'],
'llama_contextual' => $file['c'],
'llama_contextual_and_button' => $file['cb'],
];
$this
->assertSame($expected, $this->manager
->getEnabledPluginFiles($editor), 'The LlamaButton, LlamaContextual and LlamaContextualAndButton plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $expected, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'The LLamaButton, LlamaContextual and LlamaContextualAndButton plugins are enabled.');
$settings['toolbar']['rows'][0][0]['items'][] = 'LlamaCSS';
$editor
->setSettings($settings);
$editor
->save();
$expected = $enabled_plugins + [
'llama_button' => $file['b'],
'llama_contextual' => $file['c'],
'llama_contextual_and_button' => $file['cb'],
'llama_css' => $file['css'],
];
$this
->assertSame($expected, $this->manager
->getEnabledPluginFiles($editor), 'The LlamaButton, LlamaContextual, LlamaContextualAndButton and LlamaCSS plugins are enabled.');
$this
->assertSame([
'internal' => NULL,
] + $expected, $this->manager
->getEnabledPluginFiles($editor, TRUE), 'The LLamaButton, LlamaContextual, LlamaContextualAndButton and LlamaCSS plugins are enabled.');
}
public function testCssFiles() {
$this->manager = $this->container
->get('plugin.manager.ckeditor.plugin');
$editor = Editor::load('filtered_html');
$this
->assertSame([], $this->manager
->getCssFiles($editor), 'No iframe instance CSS file found.');
$this
->enableModules([
'ckeditor_test',
]);
$this->manager = $this->container
->get('plugin.manager.ckeditor.plugin');
$settings = $editor
->getSettings();
$settings['toolbar']['rows'][0][0]['items'][] = 'LlamaCSS';
$editor
->setSettings($settings);
$editor
->save();
$expected = [
'llama_css' => [
$this
->getModulePath('ckeditor_test') . '/css/llama.css',
],
];
$this
->assertSame($expected, $this->manager
->getCssFiles($editor), 'Iframe instance CSS file found.');
}
}