View source  
  <?php
namespace Drupal\Tests\ckeditor5\FunctionalJavascript;
use Drupal\ckeditor5\Plugin\Editor\CKEditor5;
use Drupal\editor\Entity\Editor;
use Drupal\filter\Entity\FilterFormat;
use Drupal\Tests\ckeditor5\Traits\CKEditor5TestTrait;
use Symfony\Component\Validator\ConstraintViolation;
class StyleTest extends CKEditor5TestBase {
  use CKEditor5TestTrait;
  
  public function testStyleSettingsForm() {
    $this
      ->drupalLogin($this
      ->drupalCreateUser([
      'administer filters',
    ]));
    $page = $this
      ->getSession()
      ->getPage();
    $assert_session = $this
      ->assertSession();
    $this
      ->createNewTextFormat($page, $assert_session);
    $assert_session
      ->assertWaitOnAjaxRequest();
    
    $assert_session
      ->elementNotExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style"]');
    $this
      ->assertNotEmpty($assert_session
      ->waitForElement('css', '.ckeditor5-toolbar-item-style'));
    $this
      ->triggerKeyUp('.ckeditor5-toolbar-item-style', 'ArrowDown');
    $assert_session
      ->assertWaitOnAjaxRequest();
    
    $this
      ->assertNoRealtimeValidationErrors();
    $assert_session
      ->pageTextContains('No styles configured');
    
    $this
      ->triggerKeyUp('.ckeditor5-toolbar-item-undo', 'ArrowDown');
    $assert_session
      ->assertWaitOnAjaxRequest();
    $this
      ->assertNoRealtimeValidationErrors();
    
    $page
      ->clickLink('Style');
    $this
      ->assertNotNull($assert_session
      ->waitForElementVisible('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]'));
    $javascript = <<<JS
      const allowedTags = document.querySelector('[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]');
      allowedTags.value = 'p.foo.bar  | Foobar paragraph';
      allowedTags.dispatchEvent(new Event('input'));
JS;
    $this
      ->getSession()
      ->executeScript($javascript);
    
    $page
      ->pressButton('Save configuration');
    $assert_session
      ->pageTextContains('Added text format');
    
    $this
      ->drupalGet('admin/config/content/formats/manage/ckeditor5');
    $page
      ->clickLink('Style');
    $this
      ->assertNotNull($styles_textarea = $assert_session
      ->waitForElementVisible('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]'));
    $this
      ->assertSame("p.foo.bar|Foobar paragraph\n", $styles_textarea
      ->getValue());
    $assert_session
      ->pageTextContains('One style configured');
    $allowed_html_field = $assert_session
      ->fieldExists('filters[filter_html][settings][allowed_html]');
    $this
      ->assertStringContainsString('<p class="foo bar">', $allowed_html_field
      ->getValue());
    
    $javascript = <<<JS
      const allowedTags = document.querySelector('[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]');
      allowedTags.value = 's.redacted|Redacted';
      allowedTags.dispatchEvent(new Event('change'));
JS;
    $this
      ->getSession()
      ->executeScript($javascript);
    
    $assert_session
      ->waitForElement('css', '[role=alert][data-drupal-message-type="error"]:contains("The Style plugin needs another plugin to create <s>, for it to be able to create the following attributes: <s class="redacted">. Enable a plugin that supports creating this tag. If none exists, you can configure the Source Editing plugin to support it.")');
    
    $assert_session
      ->elementExists('css', '.vertical-tabs__pane[data-ckeditor5-plugin-id="ckeditor5_style"][aria-invalid="true"]');
    $assert_session
      ->elementExists('css', '.vertical-tabs__pane[data-ckeditor5-plugin-id="ckeditor5_style"] textarea[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"][aria-invalid="true"]');
    
    $page
      ->pressButton('Save configuration');
    $assert_session
      ->pageTextNotContains('Added text format');
    $assert_session
      ->elementExists('css', '[aria-label="Error message"]:contains("The Style plugin needs another plugin to create <s>, for it to be able to create the following attributes: <s class="redacted">. Enable a plugin that supports creating this tag. If none exists, you can configure the Source Editing plugin to support it.")');
    
    $javascript = <<<JS
      const allowedTags = document.querySelector('[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]');
      allowedTags.value = 'drupal-media.sensational|Sensational media';
      allowedTags.dispatchEvent(new Event('change'));
JS;
    $this
      ->getSession()
      ->executeScript($javascript);
    
    $assert_session
      ->waitForElement('css', '[role=alert][data-drupal-message-type="error"]:contains("A style can only be specified for an HTML 5 tag. <drupal-media> is not an HTML5 tag.")');
    
    $assert_session
      ->elementNotExists('css', '.vertical-tabs__pane[data-ckeditor5-plugin-id="ckeditor5_style"][aria-invalid="true"]');
    $assert_session
      ->elementExists('css', '.vertical-tabs__pane[data-ckeditor5-plugin-id="ckeditor5_style"] textarea[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"][aria-invalid="true"]');
    
    $this
      ->drupalGet('admin/config/content/formats/manage/ckeditor5');
    $this
      ->assertNotEmpty($assert_session
      ->elementExists('css', '.ckeditor5-toolbar-item-sourceEditing'));
    $this
      ->triggerKeyUp('.ckeditor5-toolbar-item-sourceEditing', 'ArrowDown');
    $assert_session
      ->assertWaitOnAjaxRequest();
    
    $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 = '<aside class>';
      allowedTags.dispatchEvent(new Event('change'));
JS;
    $this
      ->getSession()
      ->executeScript($javascript);
    $assert_session
      ->assertWaitOnAjaxRequest();
    
    $javascript = <<<JS
      const allowedTags = document.querySelector('[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-style-styles"]');
      allowedTags.value = 'aside.error|Aside';
      allowedTags.dispatchEvent(new Event('change'));
JS;
    $this
      ->getSession()
      ->executeScript($javascript);
    $assert_session
      ->assertWaitOnAjaxRequest();
    
    $assert_session
      ->waitForElement('css', '[role=alert][data-drupal-message-type="error"]:contains("A style must only specify classes not supported by other plugins.")');
  }
  
  public function testStyleFunctionality() {
    FilterFormat::create([
      'format' => 'test_format',
      'name' => 'Test format',
      'filters' => [
        'filter_html' => [
          'status' => TRUE,
          'settings' => [
            'allowed_html' => '<p class="highlighted interesting"> <br> <a href class="reliable"> <blockquote class="famous"> <h2 class="red-heading">',
          ],
        ],
      ],
    ])
      ->save();
    Editor::create([
      'editor' => 'ckeditor5',
      'format' => 'test_format',
      'settings' => [
        'toolbar' => [
          'items' => [
            'heading',
            'link',
            'blockQuote',
            'style',
          ],
        ],
        'plugins' => [
          'ckeditor5_heading' => [
            'enabled_headings' => [
              'heading2',
            ],
          ],
          'ckeditor5_style' => [
            'styles' => [
              [
                'label' => 'Highlighted & interesting',
                'element' => '<p class="highlighted interesting">',
              ],
              [
                'label' => 'Red heading',
                'element' => '<h2 class="red-heading">',
              ],
              [
                'label' => 'Reliable source',
                'element' => '<a class="reliable">',
              ],
              [
                'label' => 'Famous',
                'element' => '<blockquote class="famous">',
              ],
            ],
          ],
        ],
      ],
      'image_upload' => [
        'status' => FALSE,
      ],
    ])
      ->save();
    $this
      ->assertSame([], array_map(function (ConstraintViolation $v) {
      return (string) $v
        ->getMessage();
    }, iterator_to_array(CKEditor5::validatePair(Editor::load('test_format'), FilterFormat::load('test_format')))));
    
    $node = $this
      ->createNode([
      'type' => 'page',
      'title' => 'A selection of the history of Drupal',
      'body' => [
        'value' => '<h2>Upgrades</h2><p class="history">Drupal has historically been difficult to upgrade from one major version to the next.</p><p class="highlighted interesting">This changed with Drupal 8.</p><blockquote class="famous"><p>Updating from Drupal 8\'s latest version to Drupal 9.0.0 should be as easy as updating between minor versions of Drupal 8.</p></blockquote><p> — <a class="reliable" href="https://dri.es/making-drupal-upgrades-easy-forever">Dries</a></p>',
        'format' => 'test_format',
      ],
    ]);
    $node
      ->save();
    
    $this
      ->drupalLogin($this
      ->drupalCreateUser([
      'use text format test_format',
      'bypass node access',
    ]));
    $this
      ->drupalGet($node
      ->toUrl('edit-form'));
    $this
      ->waitForEditor();
    
    $this
      ->selectTextInsideElement('h2');
    $assert_session = $this
      ->assertSession();
    $style_dropdown = $assert_session
      ->elementExists('css', '.ck-style-dropdown');
    $this
      ->assertSame('Styles', $style_dropdown
      ->getText());
    
    $style_dropdown
      ->click();
    $buttons = $style_dropdown
      ->findAll('css', '.ck-dropdown__panel button');
    $this
      ->assertCount(4, $buttons);
    $this
      ->assertSame('Highlighted & interesting', $buttons[0]
      ->find('css', '.ck-button__label')
      ->getText());
    $this
      ->assertSame('Red heading', $buttons[1]
      ->find('css', '.ck-button__label')
      ->getText());
    $this
      ->assertSame('Famous', $buttons[2]
      ->find('css', '.ck-button__label')
      ->getText());
    $this
      ->assertSame('Reliable source', $buttons[3]
      ->find('css', '.ck-button__label')
      ->getText());
    $this
      ->assertSame('true', $buttons[0]
      ->getAttribute('aria-disabled'));
    $this
      ->assertFalse($buttons[1]
      ->hasAttribute('aria-disabled'));
    $this
      ->assertSame('true', $buttons[2]
      ->getAttribute('aria-disabled'));
    
    $this
      ->assertTrue($buttons[0]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[1]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[2]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[3]
      ->hasClass('ck-off'));
    
    $assert_session
      ->elementExists('css', '.ck-editor__main h2:not(.red-heading)');
    $buttons[1]
      ->click();
    $assert_session
      ->elementExists('css', '.ck-editor__main h2.red-heading');
    $this
      ->assertTrue($buttons[0]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[1]
      ->hasClass('ck-on'));
    $this
      ->assertTrue($buttons[2]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[3]
      ->hasClass('ck-off'));
    $this
      ->assertSame('Red heading', $style_dropdown
      ->getText());
    
    $this
      ->selectTextInsideElement('p');
    $this
      ->assertSame('Styles', $style_dropdown
      ->getText());
    $style_dropdown
      ->click();
    $this
      ->assertTrue($buttons[0]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[1]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[2]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[3]
      ->hasClass('ck-off'));
    $this
      ->assertFalse($buttons[0]
      ->hasAttribute('aria-disabled'));
    $this
      ->assertSame('true', $buttons[1]
      ->getAttribute('aria-disabled'));
    $this
      ->assertSame('true', $buttons[2]
      ->getAttribute('aria-disabled'));
    
    $style_dropdown
      ->click();
    
    $this
      ->selectTextInsideElement('blockquote');
    $this
      ->assertSame('Famous', $style_dropdown
      ->getText());
    $style_dropdown
      ->click();
    $this
      ->assertTrue($buttons[0]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[1]
      ->hasClass('ck-off'));
    $this
      ->assertTrue($buttons[2]
      ->hasClass('ck-on'));
    $this
      ->assertTrue($buttons[3]
      ->hasClass('ck-off'));
    $this
      ->assertFalse($buttons[0]
      ->hasAttribute('aria-disabled'));
    $this
      ->assertSame('true', $buttons[1]
      ->getAttribute('aria-disabled'));
    $this
      ->assertFalse($buttons[2]
      ->hasAttribute('aria-disabled'));
    
    $style_dropdown
      ->click();
    
    $this
      ->assertSame('<h2 class="red-heading">Upgrades</h2><p>Drupal has historically been difficult to upgrade from one major version to the next.</p><p class="highlighted interesting">This changed with Drupal 8.</p><blockquote class="famous"><p>Updating from Drupal 8\'s latest version to Drupal 9.0.0 should be as easy as updating between minor versions of Drupal 8.</p></blockquote><p>— <a class="reliable" href="https://dri.es/making-drupal-upgrades-easy-forever">Dries</a></p>', $this
      ->getEditorDataAsHtmlString());
  }
}