X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fparagraphs%2Ftests%2Fsrc%2FFunctional%2FParagraphsExperimentalWidgetButtonsTest.php;fp=web%2Fmodules%2Fcontrib%2Fparagraphs%2Ftests%2Fsrc%2FFunctional%2FParagraphsExperimentalWidgetButtonsTest.php;h=c89217324f5e44285fa5709d028b06db4e7aa01b;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/modules/contrib/paragraphs/tests/src/Functional/ParagraphsExperimentalWidgetButtonsTest.php b/web/modules/contrib/paragraphs/tests/src/Functional/ParagraphsExperimentalWidgetButtonsTest.php new file mode 100644 index 000000000..c89217324 --- /dev/null +++ b/web/modules/contrib/paragraphs/tests/src/Functional/ParagraphsExperimentalWidgetButtonsTest.php @@ -0,0 +1,238 @@ +addParagraphedContentType('paragraphed_test'); + + $permissions = [ + 'administer content types', + 'administer node fields', + 'administer paragraphs types', + 'administer node form display', + 'administer paragraph fields', + 'administer paragraph form display', + 'create paragraphed_test content', + 'edit any paragraphed_test content', + ]; + $this->loginAsAdmin($permissions, TRUE); + + // Add a text Paragraph type. + $this->addParagraphsType('text_paragraph'); + $this->addFieldtoParagraphType('text_paragraph', 'field_text', 'text_long'); + + // Add another Paragraph type so that there is no default Paragraphs type. + $this->addParagraphsType('another_paragraph'); + + // Check that the paragraphs field uses the experimental widget. + $this->drupalGet('admin/structure/types/manage/paragraphed_test/form-display'); + $option = $this->assertSession()->optionExists('fields[field_paragraphs][type]', 'paragraphs'); + $this->assertTrue($option->isSelected()); + // Check that the autocollapse is disabled by default. + $this->assertSession()->pageTextContains('Autocollapse: None'); + + // Create a new node with 2 paragraphs. + $this->drupalGet('node/add/paragraphed_test'); + $this->getSession()->getPage()->findButton('field_paragraphs_text_paragraph_add_more')->press(); + $this->getSession()->getPage()->findButton('field_paragraphs_text_paragraph_add_more')->press(); + $edit = [ + 'title[0][value]' => 'Autocollapse test node', + 'field_paragraphs[0][subform][field_text][0][value]' => 'Fist paragraph', + 'field_paragraphs[1][subform][field_text][0][value]' => 'Second paragraph', + ]; + $this->drupalPostForm(NULL, $edit, t('Save')); + $node = $this->drupalGetNodeByTitle('Autocollapse test node'); + + // Set the settings to "Open" edit mode without autocollapse. + $settings = [ + 'edit_mode' => 'open', + 'closed_mode' => 'summary', + 'autocollapse' => 'none', + ]; + $this->setParagraphsWidgetSettings('paragraphed_test', 'field_paragraphs', $settings); + + // Edit the node. Edit mode is "Open". All paragraphs are in the "Edit" + // mode. + $this->drupalGet('node/' . $node->id() . '/edit'); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // Autocollapse is disabled. Closing and opening a paragraphs does not + // affect the other one. + $this->getSession()->getPage()->findButton('field_paragraphs_0_collapse')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // "Collapse all" enables autocollapse. + $this->getSession()->getPage()->findButton('field_paragraphs_collapse_all')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + // Open the first paragraph and then the second. Opening the second closes + // the first. + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + $this->getSession()->getPage()->findButton('field_paragraphs_1_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // "Edit all" disables autocollapse. + $this->getSession()->getPage()->findButton('field_paragraphs_edit_all')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // Closing and opening a paragraphs does not affect the other one anymore. + $this->getSession()->getPage()->findButton('field_paragraphs_0_collapse')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // Enable autocollapse. Set edit mode to "Closed". + $settings = [ + 'edit_mode' => 'closed', + 'closed_mode' => 'summary', + 'autocollapse' => 'all', + ]; + $this->setParagraphsWidgetSettings('paragraphed_test', 'field_paragraphs', $settings); + + // Edit the node. All paragraphs are closed. + $this->drupalGet('node/' . $node->id() . '/edit'); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + // Open the first paragraph and then the second. Opening the second closes + // the first. + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + $this->getSession()->getPage()->findButton('field_paragraphs_1_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // "Edit all" disables auto collapse. + $this->getSession()->getPage()->findButton('field_paragraphs_edit_all')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // Closing and opening a paragraphs does not affect the other one anymore. + $this->getSession()->getPage()->findButton('field_paragraphs_0_collapse')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // "Collapse all" re-enables autocollapse. + $this->getSession()->getPage()->findButton('field_paragraphs_collapse_all')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + // Open the first paragraph and then the second. Opening the second closes + // the first. + $this->getSession()->getPage()->findButton('field_paragraphs_0_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'edit'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + + $this->getSession()->getPage()->findButton('field_paragraphs_1_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'edit'); + + // Check that adding a new paragraphs closes the others. + $this->getSession()->getPage()->findButton('field_paragraphs_text_paragraph_add_more')->press(); + $this->getSession()->getPage()->fillField('field_paragraphs[2][subform][field_text][0][value]', 'Third paragraph'); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + $this->checkParagraphInMode('field_paragraphs_2', 'edit'); + + // Check that duplicating closes the other paragraphs. + $this->getSession()->getPage()->findButton('field_paragraphs_2_duplicate')->press(); + $this->getSession()->getPage()->fillField('field_paragraphs[3][subform][field_text][0][value]', 'Fourth paragraph'); + $this->checkParagraphInMode('field_paragraphs_0', 'closed'); + $this->checkParagraphInMode('field_paragraphs_1', 'closed'); + $this->checkParagraphInMode('field_paragraphs_2', 'closed'); + $this->checkParagraphInMode('field_paragraphs_3', 'edit'); + + // Check that autocollapse does not restore removed paragraphs. + $this->getSession()->getPage()->findButton('field_paragraphs_3_remove')->press(); + $this->checkParagraphInMode('field_paragraphs_3', 'removed'); + $this->getSession()->getPage()->findButton('field_paragraphs_2_edit')->press(); + $this->checkParagraphInMode('field_paragraphs_3', 'removed'); + } + + /** + * Asserts that a paragraph is in a particular mode. + * + * It does this indirectly by checking checking what buttons are available. + * + * @param string $button_prefix + * An initial part of the button name; namely "_". + * + * @param string $mode + * Assert that the paragraphs is in this widget item mode. Supported modes + * are "edit", "closed" and "removed". A paragraph in the "removed" mode + * cannot be distinguished from one that has never been added. + */ + public function checkParagraphInMode($button_prefix, $mode) { + switch ($mode) { + case 'edit': + $this->assertSession()->buttonNotExists($button_prefix . '_edit'); + $this->assertSession()->buttonExists($button_prefix . '_collapse'); + break; + case 'closed': + $this->assertSession()->buttonExists($button_prefix . '_edit'); + $this->assertSession()->buttonNotExists($button_prefix . '_collapse'); + break; + case 'removed': + $this->assertSession()->buttonNotExists($button_prefix . '_edit'); + $this->assertSession()->buttonNotExists($button_prefix . '_collapse'); + break; + default: + throw new \InvalidArgumentException('This function does not support "' . $mode . '" as an argument for "$mode" parameter'); + } + } + +}