paragraphs_collection-8.x-1.x-dev/modules/paragraphs_collection_demo/tests/src/Functional/ParagraphsAccordionPluginTest.php
modules/paragraphs_collection_demo/tests/src/Functional/ParagraphsAccordionPluginTest.php
<?php
namespace Drupal\Tests\paragraphs_collection_demo\Functional;
use Drupal\Tests\paragraphs\Functional\WidgetStable\ParagraphsTestBase;
/**
* Tests Accordion plugin.
*
* @see \Drupal\paragraphs_collection_demo\Plugin\paragraphs\Behavior\ParagraphsAccordionPlugin
* @group paragraphs_collection_demo
*/
class ParagraphsAccordionPluginTest extends ParagraphsTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'starterkit_theme';
/**
* Modules to be enabled.
*
* @var array
*/
protected static $modules = [
'paragraphs_collection_demo',
];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->loginAsAdmin([
'administer modules',
'edit behavior plugin settings',
]);
$this->addParagraphedContentType('paragraphed_accordion_test');
$this->addParagraphsType('accordion_content');
static::fieldUIAddNewField('admin/structure/paragraphs_type/accordion_content', 'accordion_content', 'accordion_title', 'text_long', ['cardinality' => 'number', 'cardinality_number' => '1'], []);
}
/**
* Test creating accordion content.
*/
public function testCreatingAccordionContent() {
$this->drupalGet('node/add/paragraphed_accordion_test');
$this->submitForm([], 'field_paragraphs_accordion_add_more');
$this->submitForm([], 'field_paragraphs_0_subform_paragraphs_accordion_paragraphs_accordion_content_add_more');
$this->submitForm([], 'field_paragraphs_0_subform_paragraphs_accordion_paragraphs_accordion_content_add_more');
$this->submitForm([], 'field_paragraphs_0_subform_paragraphs_accordion_paragraphs_accordion_content_add_more');
$this->submitForm([], 'field_paragraphs_0_subform_paragraphs_accordion_paragraphs_accordion_content_add_more');
$edit = [
'title[0][value]' => 'Accordion',
'field_paragraphs[0][subform][paragraphs_accordion_paragraphs][0][subform][field_accordion_content][0][value]' => 'Title',
'field_paragraphs[0][subform][paragraphs_accordion_paragraphs][1][subform][field_accordion_content][0][value]' => 'Body text.',
'field_paragraphs[0][subform][paragraphs_accordion_paragraphs][2][subform][field_accordion_content][0][value]' => 'Second title',
'field_paragraphs[0][subform][paragraphs_accordion_paragraphs][3][subform][field_accordion_content][0][value]' => 'Second Body text.',
];
$this->submitForm($edit, 'Save');
$node = $this->getNodeByTitle('Accordion');
$this->drupalGet('node/' . $node->id());
// Ensure expected markup for an accordion.
$elements = $this->xpath('//div[contains(@class, :accordion-class)]/div[contains(@class, :items-class)]', [
':accordion-class' => 'accordion',
':items-class' => 'field__items',
]);
$this->assertTrue(!empty($elements), 'The proper accordion markup was found.');
$this->drupalGet('admin/structure/paragraphs_type/accordion/fields/paragraph.accordion.paragraphs_accordion_paragraphs/delete');
$this->submitForm([], t('Delete'));
$this->assertSession()->pageTextContains('The field Accordion has been deleted from the Accordion paragraphs type.');
$node = $this->getNodeByTitle('Accordion');
$this->drupalGet('node/' . $node->id());
$this->assertSession()->statusCodeEquals(200);
$this->drupalGet('admin/structure/paragraphs_type/accordion');
$this->assertSession()->statusCodeEquals(200);
$this->submitForm(['behavior_plugins[accordion][enabled]' => TRUE], t('Save'));
$this->assertSession()->responseContains('The Accordion plugin cannot be enabled if the accordion field is missing.');
}
/**
* Test accordion plugin configuration form.
*/
public function testConfigurationForm() {
$this->drupalGet('admin/structure/paragraphs_type/accordion_content');
$this->assertSession()->pageTextContains('There are no fields available with the cardinality greater than one. Please add at least one in the Manage fields page.');
$this->drupalGet('admin/structure/paragraphs_type/accordion');
$this->assertSession()->responseContains('Accordion effect for paragraphs.');
$this->assertSession()->optionExists('edit-behavior-plugins-accordion-settings-paragraph-accordion-field', 'paragraphs_accordion_paragraphs');
$this->assertSession()->responseContains('Choose a field to be used as the accordion container.');
}
}
