<?php
namespace Drupal\Tests\paragraphs\Functional\WidgetStable;
use Drupal\field\Entity\FieldStorageConfig;
class ParagraphsDuplicateFeatureTest extends ParagraphsTestBase {
protected static $modules = [
'node',
'paragraphs',
'field',
'field_ui',
'block',
'paragraphs_test',
];
public function testDuplicateButton() {
$this
->addParagraphedContentType('paragraphed_test');
$this
->loginAsAdmin([
'create paragraphed_test content',
'edit any paragraphed_test content',
]);
$paragraph_type = 'text_paragraph';
$this
->addParagraphsType($paragraph_type);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'text', 'Text', 'text_long', [], []);
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_text_paragraph_add_more');
$this
->submitForm([], 'field_paragraphs_text_paragraph_add_more');
$edit = [
'title[0][value]' => 'paragraphs_mode_test',
'field_paragraphs[0][subform][field_text][0][value]' => 'A',
'field_paragraphs[1][subform][field_text][0][value]' => 'B',
'field_paragraphs[2][subform][field_text][0][value]' => 'C',
];
$this
->submitForm($edit, 'Save');
$node = $this
->drupalGetNodeByTitle('paragraphs_mode_test');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$edit = [
'field_paragraphs[2][_weight]' => -1,
];
$this
->submitForm($edit, 'field_paragraphs_0_duplicate');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'A');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][_weight]', 1);
$this
->assertSession()
->fieldValueEquals('field_paragraphs[1][subform][field_text][0][value]', 'B');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[1][_weight]', 3);
$this
->assertSession()
->fieldValueEquals('field_paragraphs[2][subform][field_text][0][value]', 'C');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[2][_weight]', 0);
$this
->assertSession()
->fieldValueEquals('field_paragraphs[3][subform][field_text][0][value]', 'A');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[3][_weight]', 2);
$edit = [
'field_paragraphs[0][_weight]' => -2,
'field_paragraphs[1][_weight]' => 2,
'field_paragraphs[2][_weight]' => 1,
'field_paragraphs[3][_weight]' => -1,
];
$this
->submitForm($edit, 'Save');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'A');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[1][subform][field_text][0][value]', 'A');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[2][subform][field_text][0][value]', 'C');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[3][subform][field_text][0][value]', 'B');
$this
->submitForm([], 'field_paragraphs_1_remove');
$this
->submitForm([], 'field_paragraphs_2_duplicate');
$this
->submitForm([], 'Save');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'A');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[1][subform][field_text][0][value]', 'C');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[2][subform][field_text][0][value]', 'C');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[3][subform][field_text][0][value]', 'B');
$this
->assertSession()
->buttonExists('field_paragraphs_0_duplicate');
$this
->drupalGet('admin/structure/types/manage/paragraphed_test/form-display');
$this
->assertSession()
->pageTextContains('Features: Duplicate, Collapse / Edit all');
$this
->submitForm([], 'field_paragraphs_settings_edit');
$this
->submitForm([
'fields[field_paragraphs][settings_edit_form][settings][features][duplicate]' => FALSE,
], 'Update');
$this
->assertSession()
->pageTextContains('Features: Collapse / Edit all');
$this
->submitForm([], 'Save');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->buttonNotExists('field_paragraphs_0_duplicate');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'A');
$this
->drupalGet('admin/structure/types/manage/paragraphed_test/form-display');
$this
->assertSession()
->pageTextContains('Features: Collapse / Edit all');
$this
->submitForm([], 'field_paragraphs_settings_edit');
$this
->submitForm([
'fields[field_paragraphs][settings_edit_form][settings][features][duplicate]' => TRUE,
], 'Update');
$this
->assertSession()
->pageTextContains('Features: Duplicate, Collapse / Edit all');
$this
->submitForm([], 'Save');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->buttonExists('field_paragraphs_0_duplicate');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'A');
}
public function testDuplicateButtonWithNesting() {
$this
->addParagraphedContentType('paragraphed_test');
$this
->loginAsAdmin([
'create paragraphed_test content',
'edit any paragraphed_test content',
]);
$nested_paragraph_type = 'nested_paragraph';
$this
->addParagraphsType($nested_paragraph_type);
$paragraph_type = 'text';
$this
->addParagraphsType($paragraph_type);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'text', 'Text', 'text_long', [], []);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $nested_paragraph_type, 'nested', 'Nested', 'field_ui:entity_reference_revisions:paragraph', [
'settings[target_type]' => 'paragraph',
'cardinality' => '-1',
], []);
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_nested_paragraph_add_more');
$edit = [
'title[0][value]' => 'paragraphs_mode_test',
];
$this
->submitForm($edit, 'Save');
$node = $this
->drupalGetNodeByTitle('paragraphs_mode_test');
$text = 'recognizable_text';
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm([], 'field_paragraphs_0_subform_field_nested_text_add_more');
$edit = [
'field_paragraphs[0][subform][field_nested][0][subform][field_text][0][value]' => $text,
];
$this
->submitForm($edit, 'Save');
$this
->setParagraphsWidgetMode('paragraphed_test', 'field_paragraphs', 'closed');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm([], 'field_paragraphs_0_duplicate');
$this
->submitForm([], 'field_paragraphs_0_edit');
$this
->assertSession()
->fieldValueEquals('field_paragraphs[0][subform][field_nested][0][subform][field_text][0][value]', $text);
$this
->assertSession()
->fieldValueEquals('field_paragraphs[1][subform][field_nested][0][subform][field_text][0][value]', $text);
$second_paragraph_text = 'duplicated_text';
$edit = [
'field_paragraphs[1][subform][field_nested][0][subform][field_text][0][value]' => $second_paragraph_text,
];
$this
->submitForm($edit, 'Save');
$page_text = $this
->getSession()
->getPage()
->getText();
$text_nr_found = substr_count($page_text, $text);
$this
->assertSame(1, $text_nr_found);
$page_text = $this
->getSession()
->getPage()
->getText();
$second_paragraph_text_nr_found = substr_count($page_text, $second_paragraph_text);
$this
->assertSame(1, $second_paragraph_text_nr_found);
}
public function testDuplicateButtonWithLimitedCardinality() {
$this
->addParagraphedContentType('paragraphed_test');
$field_storage = FieldStorageConfig::load('node.field_paragraphs');
$field_storage
->setCardinality(2)
->save();
$this
->loginAsAdmin([
'create paragraphed_test content',
'edit any paragraphed_test content',
]);
$paragraph_type = 'text_paragraph';
$this
->addParagraphsType($paragraph_type);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'text', 'Text', 'text_long', [], []);
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_text_paragraph_add_more');
$edit = [
'title[0][value]' => 'paragraphs_mode_test',
'field_paragraphs[0][subform][field_text][0][value]' => 'A',
'field_paragraphs[1][subform][field_text][0][value]' => 'B',
];
$this
->submitForm($edit, 'Save');
$node = $this
->drupalGetNodeByTitle('paragraphs_mode_test');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->fieldNotExists('field_paragraphs_0_duplicate');
$this
->assertSession()
->fieldNotExists('field_paragraphs_1_duplicate');
}
}