function CKEditor5Test::languageOfPartsPluginInitialConfigurationHelper

Same name and namespace in other branches
  1. 11.x core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5Test.php \Drupal\Tests\ckeditor5\FunctionalJavascript\CKEditor5Test::languageOfPartsPluginInitialConfigurationHelper()

Helper to configure CKEditor5 with Language plugin.

1 call to CKEditor5Test::languageOfPartsPluginInitialConfigurationHelper()
CKEditor5Test::testLanguageOfPartsPlugin in core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5Test.php
Test for Language of Parts plugin.

File

core/modules/ckeditor5/tests/src/FunctionalJavascript/CKEditor5Test.php, line 185

Class

CKEditor5Test
Tests for CKEditor 5.

Namespace

Drupal\Tests\ckeditor5\FunctionalJavascript

Code

public function languageOfPartsPluginInitialConfigurationHelper($page, $assert_session) {
  $this->createNewTextFormat($page, $assert_session);
  // Press arrow down key to add the button to the active toolbar.
  $this->assertNotEmpty($assert_session->waitForElement('css', '.ckeditor5-toolbar-item-textPartLanguage'));
  $this->triggerKeyUp('.ckeditor5-toolbar-item-textPartLanguage', 'ArrowDown');
  $assert_session->assertWaitOnAjaxRequest();
  // The CKEditor 5 module should warn that `<span>` cannot be created.
  $assert_session->waitForElement('css', '[role=alert][data-drupal-message-type="warning"]:contains("The Language plugin needs another plugin to create <span>, for it to be able to create the following attributes: <span lang dir>. Enable a plugin that supports creating this tag. If none exists, you can configure the Source Editing plugin to support it.")');
  // Make `<span>` creatable.
  $this->assertNotEmpty($assert_session->elementExists('css', '.ckeditor5-toolbar-item-sourceEditing'));
  $this->triggerKeyUp('.ckeditor5-toolbar-item-sourceEditing', 'ArrowDown');
  $assert_session->assertWaitOnAjaxRequest();
  // The Source Editing plugin settings form should now be present and should
  // have no allowed tags configured.
  $page->clickLink('Source editing');
  $this->assertNotNull($assert_session->waitForElementVisible('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-sourceediting-allowed-tags"]'));
  $javascript = <<<JS
      const allowedTags = document.querySelector('[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-sourceediting-allowed-tags"]');
      allowedTags.value = '<span>';
      allowedTags.dispatchEvent(new Event('input'));
JS;
  $this->getSession()
    ->executeScript($javascript);
  // Dispatching an `input` event does not work in WebDriver. Enabling another
  // toolbar item which has no associated HTML elements forces it.
  $this->triggerKeyUp('.ckeditor5-toolbar-item-undo', 'ArrowDown');
  $assert_session->assertWaitOnAjaxRequest();
  // Confirm there are no longer any warnings.
  $assert_session->waitForElementRemoved('css', '[data-drupal-messages] [role="alert"]');
  $page->pressButton('Save configuration');
  $assert_session->responseContains('Added text format <em class="placeholder">ckeditor5</em>.');
}

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