View source
<?php
namespace Drupal\Tests\tinymce\Functional;
use Drupal\editor\Entity\Editor;
use Drupal\filter\Entity\FilterFormat;
use Drupal\Tests\BrowserTestBase;
class TinyMCELoadingTest extends BrowserTestBase {
protected static $modules = [
'filter',
'editor',
'tinymce',
'node',
];
protected $defaultTheme = 'stark';
protected $untrustedUser;
protected $normalUser;
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' => 'tinymce',
]);
$editor
->save();
$full_html_format = FilterFormat::create([
'format' => 'full_html',
'name' => 'Full HTML',
'weight' => 1,
'filters' => [],
]);
$full_html_format
->save();
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
$this->untrustedUser = $this
->drupalCreateUser([
'create article content',
'edit any article content',
]);
$this->normalUser = $this
->drupalCreateUser([
'create article content',
'edit any article content',
'use text format filtered_html',
'use text format full_html',
]);
}
public function testLoading() {
$this
->drupalLogin($this->untrustedUser);
$this
->drupalGet('node/add/article');
list($settings, $editor_settings_present, $editor_js_present, $body, $format_selector) = $this
->getThingsToCheck();
$this
->assertFalse($editor_settings_present, 'No Text Editor module settings.');
$this
->assertFalse($editor_js_present, 'No Text Editor JavaScript.');
$this
->assertCount(1, $body, 'A body field exists.');
$this
->assertCount(0, $format_selector, 'No text format selector exists on the page.');
$hidden_input = $this
->xpath('//input[@type="hidden" and contains(@class, "editor")]');
$this
->assertCount(0, $hidden_input, 'A single text format hidden input does not exist on the page.');
$this
->assertSession()
->responseNotContains(drupal_get_path('module', 'tinymce') . '/js/tinymce.js');
$this
->drupalGet('user');
$this
->assertSession()
->responseNotContains(drupal_get_path('module', 'tinymce') . '/js/tinymce.js');
$this
->drupalLogout();
$this
->drupalLogin($this->normalUser);
$this
->drupalGet('node/add/article');
list($settings, $editor_settings_present, $editor_js_present, $body, $format_selector) = $this
->getThingsToCheck();
$tinymce_plugin = $this->container
->get('plugin.manager.editor')
->createInstance('tinymce');
$editor = Editor::load('filtered_html');
$expected = [
'formats' => [
'filtered_html' => [
'format' => 'filtered_html',
'editor' => 'tinymce',
'editorSettings' => $tinymce_plugin
->getJSSettings($editor),
'editorSupportsContentFiltering' => TRUE,
'isXssSafe' => FALSE,
],
],
];
$this
->assertTrue($editor_settings_present, "Text Editor module's JavaScript settings are on the page.");
$this
->assertEquals($expected, $settings['editor'], "Text Editor module's JavaScript settings on the page are correct.");
$this
->assertTrue($editor_js_present, 'Text Editor JavaScript is present.');
$this
->assertCount(1, $body, 'A body field exists.');
$this
->assertCount(1, $format_selector, 'A single text format selector exists on the page.');
$specific_format_selector = $this
->xpath('//select[contains(@class, "filter-list") and @data-editor-for="edit-body-0-value"]');
$this
->assertCount(1, $specific_format_selector, 'A single text format selector exists on the page and has a "data-editor-for" attribute with the correct value.');
$tinymce_js = $this
->xpath('//script[contains(@src, "tinymce.js") or contains(@src, "tinymce.min.js")]');
$this
->assertNotCount(0, $tinymce_js, 'TinyMCE glue library is present.');
}
protected function getThingsToCheck() {
$settings = $this
->getDrupalSettings();
return [
$settings,
isset($settings['editor']),
!empty($this
->xpath('//script[contains(@src, "tinymce.js") or contains(@src, "tinymce.min.js")]')),
$this
->xpath('//textarea[@id="edit-body-0-value"]'),
$this
->xpath('//select[contains(@class, "filter-list")]'),
];
}
}