function CKEditor5Test::testExistingContent

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

Tests configuring CKEditor 5 for existing content.

File

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

Class

CKEditor5Test
Tests for CKEditor 5.

Namespace

Drupal\Tests\ckeditor5\FunctionalJavascript

Code

public function testExistingContent() : void {
  $page = $this->getSession()
    ->getPage();
  $assert_session = $this->assertSession();
  // Add a node with text rendered via the Plain Text format.
  $this->drupalGet('node/add/page');
  $page->fillField('title[0][value]', 'My test content');
  $page->fillField('body[0][value]', '<p>This is test content</p>');
  $page->pressButton('Save');
  $assert_session->responseNotContains('<p>This is test content</p>');
  $assert_session->responseContains('&lt;p&gt;This is test content&lt;/p&gt;');
  $this->addNewTextFormat();
  // Change the node to use the new text format.
  $this->drupalGet('node/1/edit');
  $page->selectFieldOption('body[0][format]', 'ckeditor5');
  $this->assertNotEmpty($assert_session->waitForText('Change text format?'));
  $page->pressButton('Continue');
  // Ensure the editor is loaded.
  $this->assertNotEmpty($assert_session->waitForElement('css', '.ck-editor'));
  $page->pressButton('Save');
  // Assert that the HTML is rendered correctly.
  $assert_session->responseContains('<p>This is test content</p>');
  $assert_session->responseNotContains('&lt;p&gt;This is test content&lt;/p&gt;');
}

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