View source
<?php
namespace Drupal\Tests\ckeditor\FunctionalJavascript;
use Drupal\comment\CommentInterface;
use Drupal\comment\Entity\Comment;
use Drupal\comment\Plugin\Field\FieldType\CommentItemInterface;
use Drupal\comment\Tests\CommentTestTrait;
use Drupal\editor\Entity\Editor;
use Drupal\filter\Entity\FilterFormat;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\Tests\node\Traits\ContentTypeCreationTrait;
use Drupal\Tests\node\Traits\NodeCreationTrait;
class BigPipeRegressionTest extends WebDriverTestBase {
use CommentTestTrait;
use ContentTypeCreationTrait;
use NodeCreationTrait;
protected static $modules = [
'big_pipe',
'big_pipe_regression_test',
];
protected $defaultTheme = 'stark';
public function setUp() : void {
parent::setUp();
$this->container
->get('theme_installer')
->install([
'big_pipe_test_theme',
]);
$this->container
->get('config.factory')
->getEditable('system.theme')
->set('default', 'big_pipe_test_theme')
->save();
}
public function testCommentForm_2698811() {
$this
->assertTrue($this->container
->get('module_installer')
->install([
'comment',
'history',
'ckeditor',
], TRUE), 'Installed modules.');
$this
->createContentType([
'type' => 'article',
]);
$this
->addDefaultCommentField('node', 'article');
$format = $this
->randomMachineName();
FilterFormat::create([
'format' => $format,
'name' => $this
->randomString(),
'weight' => 1,
'filters' => [],
])
->save();
$settings['toolbar']['rows'] = [
[
[
'name' => 'Links',
'items' => [
'DrupalLink',
'DrupalUnlink',
],
],
],
];
$editor = Editor::create([
'format' => $format,
'editor' => 'ckeditor',
]);
$editor
->setSettings($settings);
$editor
->save();
$admin_user = $this
->drupalCreateUser([
'access comments',
'post comments',
'use text format ' . $format,
]);
$this
->drupalLogin($admin_user);
$node = $this
->createNode([
'type' => 'article',
'comment' => CommentItemInterface::OPEN,
]);
foreach (range(1, 5) as $i) {
$comment = Comment::create([
'status' => CommentInterface::PUBLISHED,
'field_name' => 'comment',
'entity_type' => 'node',
'entity_id' => $node
->id(),
]);
$comment
->save();
}
$this
->drupalGet($node
->toUrl()
->toString());
$javascript = <<<JS
(function(){
return window.CKEDITOR && Object.keys(CKEDITOR.instances).length > 0;
}())
JS;
$this
->assertJsCondition($javascript);
}
}