Skip to content
Snippets Groups Projects
Commit b82897c4 authored by Justin Toupin's avatar Justin Toupin
Browse files

wip - added height test

parent cf59d83b
No related branches found
No related tags found
1 merge request!103Issue #3295875: Add a new dedicated permission for Layout paragraphs configurations
...@@ -2,41 +2,126 @@ ...@@ -2,41 +2,126 @@
namespace Drupal\Tests\layout_paragraphs\FunctionalJavascript; namespace Drupal\Tests\layout_paragraphs\FunctionalJavascript;
use Drupal\editor\Entity\Editor;
use Drupal\field\Entity\FieldConfig;
use Drupal\filter\Entity\FilterFormat;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Core\Entity\Entity\EntityFormDisplay;
/** /**
* Tests that buttons remain reachable even with tall modal heights. * Tests that buttons remain reachable even with tall modal heights.
* *
* @requires module layout_paragraphs_alter_controls_test
*
* @group layout_paragraphs * @group layout_paragraphs
*/ */
class ModalHeightTest extends BuilderTestBase { class ModalHeightTest extends BuilderTestBase {
/** /**
* Tests that buttons remain reachable even with tall modal heights. * {@inheritdoc}
*/
protected static $modules = [
'layout_paragraphs',
'paragraphs',
'node',
'field',
'field_ui',
'block',
'paragraphs_test',
'ckeditor',
'filter',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'seven';
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->addParagraphsType('rich_text');
// Create a text format and associate CKEditor.
$this->filterFormat = FilterFormat::create([
'format' => 'filtered_html',
'name' => 'Filtered HTML',
'weight' => 0,
]);
$this->filterFormat->save();
Editor::create([
'format' => 'filtered_html',
'editor' => 'ckeditor',
])->save();
$field_storage = FieldStorageConfig::create([
'field_name' => 'field_rich_text',
'type' => 'text_long',
'entity_type' => 'paragraph',
]);
$field_storage->save();
// Create a body field instance for the 'page' node type.
FieldConfig::create([
'field_storage' => $field_storage,
'bundle' => 'rich_text',
'label' => 'Body',
'settings' => ['display_summary' => TRUE],
'required' => TRUE,
])->save();
// Assign widget settings for the 'default' form mode.
EntityFormDisplay::create([
'targetEntityType' => 'paragraph',
'bundle' => 'rich_text',
'mode' => 'default',
'status' => TRUE,
])->setComponent('field_rich_text', ['type' => 'text_textarea'])
->save();
}
/**
* Tests modal height.
*/ */
public function testModalHeight() { public function testModalHeight() {
$this->loginWithPermissions([ $this->loginWithPermissions([
'create page content', 'create page content',
'edit own page content', 'edit own page content',
'use text format filtered_html',
]); ]);
$this->drupalGet('node/add/page'); $this->drupalGet('node/add/page');
$page = $this->getSession()->getPage(); $page = $this->getSession()->getPage();
// Click the Add Component button. $button = $page->find('css', '.lpb-btn--add');
$page->find('css', '.lpb-btn--add')->click(); $button->click();
$this->assertSession()->assertWaitOnAjaxRequest(1000, 'Unable to click add a component.'); $this->assertSession()->assertWaitOnAjaxRequest();
// Open the "Create text" dialog. $button = $page->find('css', '.type-rich_text');
$page->clickLink('text'); $button->click();
$this->assertSession()->waitForText('Create text'); $this->assertJsCondition('typeof CKEDITOR !== "undefined";');
$this->assertJsCondition('Object.keys(CKEDITOR.instances).length > 0;');
$this->htmlOutput();
// Causes the dialog height to grow beyond the viewport.
$text = "-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />-- rich text line --<p />";
$this->getSession()->executeScript(<<<JS
jQuery('.layout-paragraphs-component-form').height('1000px');
JS);
$button = $page->find('css', '.ui-dialog-buttonpane .lpb-btn--save');
$button->click();
// Force the dialog height to expand beyond the viewport. $this->assertSession()->assertWaitOnAjaxRequest();
// Since the dialog height is 'auto' by default, increasing the height of //$this->assertSession()->pageTextContains('-- rich text line --');
// the dialog's content will automatically increase the dialog's height. $this->htmlOutput();
$this->getSession()->executeScript('jQuery(\'.layout-paragraphs-component-form\').height(\'2000px\');');
// Pause for UI to update.
$this->getSession()->wait(1000);
// Save button should still be reachable. // $this->submitForm([
$this->assertSession()->assertVisibleInViewport('css', '.ui-dialog-buttonpane .lpb-btn--save'); // 'title[0][value]' => 'Node title',
// ], 'Save');
//$this->assertSession()->pageTextContains('-- rich text line --');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment