<?php
namespace Drupal\Tests\paragraphs\Functional\WidgetStable;
use Drupal\block_content\Entity\BlockContent;
class ParagraphsEditModesTest extends ParagraphsTestBase {
protected static $modules = [
'image',
'block_field',
'block_content',
'link',
'field_ui',
];
public function testCollapsedSummary() {
$this
->addParagraphedContentType('paragraphed_test');
$this
->loginAsAdmin([
'create paragraphed_test content',
'edit any paragraphed_test content',
]);
$paragraph_type = 'image_text_paragraph';
$this
->addParagraphsType($paragraph_type);
$title_paragraphs_type = 'title';
$this
->addParagraphsType($title_paragraphs_type);
$this
->addParagraphsType('text');
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'image', 'Image', 'image', [], [
'settings[alt_field_required]' => FALSE,
]);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'text', 'Text', 'text_long', [], []);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $title_paragraphs_type, 'title', 'Title', 'string', [], []);
$paragraph_type = 'user_paragraph';
$this
->addParagraphsType($paragraph_type);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'user', 'User', 'entity_reference', [
'settings[target_type]' => 'user',
], []);
$this
->drupalGet('admin/structure/types/manage/paragraphed_test/form-display');
$this
->submitForm([], "field_paragraphs_settings_edit");
$edit = [
'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'closed',
];
$this
->submitForm($edit, 'Save');
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_image_text_paragraph_add_more');
$this
->submitForm([], 'field_paragraphs_title_add_more');
$files = $this
->getTestFiles('image');
$file_system = \Drupal::service('file_system');
$edit = [
'title[0][value]' => 'Test article',
'field_paragraphs[0][subform][field_text][0][value]' => 'text_summary',
'files[field_paragraphs_0_subform_field_image_0]' => $file_system
->realpath($files[0]->uri),
'field_paragraphs[1][subform][field_title][0][value]' => 'Title example',
];
$this
->submitForm($edit, 'Save');
$this
->clickLink('Edit');
$this
->submitForm([], 'Add user_paragraph');
$edit = [
'field_paragraphs[2][subform][field_user][0][target_id]' => $this->admin_user
->label() . ' (' . $this->admin_user
->id() . ')',
];
$this
->submitForm($edit, 'Save');
$this
->clickLink('Edit');
$this
->assertSession()
->responseContains('<span class="summary-content">' . $files[0]->filename . '</span>, <span class="summary-content">text_summary</span>');
$this
->assertSession()
->responseContains('<span class="summary-content">' . $this->admin_user
->label());
$this
->assertSession()
->responseContains('<span class="summary-content">Title example');
$this
->submitForm([], 'field_paragraphs_0_edit');
$edit = [
'field_paragraphs[0][subform][field_image][0][alt]' => 'alternative_text_summary',
];
$this
->submitForm($edit, 'field_paragraphs_0_collapse');
$this
->assertSession()
->responseContains('<span class="summary-content">alternative_text_summary</span>, <span class="summary-content">text_summary</span>');
$this
->submitForm([], 'field_paragraphs_0_edit');
$this
->submitForm([], 'field_paragraphs_0_subform_field_image_0_remove_button');
$this
->submitForm([], 'Save');
$this
->clickLink('Edit');
$this
->assertSession()
->responseContains('<span class="summary-content">text_summary');
$this
->addParagraphsType('nested_paragraph');
static::fieldUIAddNewField('admin/structure/paragraphs_type/nested_paragraph', 'nested_content', 'Nested Content', 'entity_reference_revisions', [
'settings[target_type]' => 'paragraph',
], []);
$this
->drupalGet('admin/structure/paragraphs_type/nested_paragraph/form-display');
$this
->submitForm([
'fields[field_nested_content][type]' => 'entity_reference_paragraphs',
], 'Save');
$test_user = $this
->drupalCreateUser([]);
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'Add nested_paragraph');
$this
->submitForm([], 'field_paragraphs_0_subform_field_nested_content_user_paragraph_add_more');
$edit = [
'title[0][value]' => 'Node title',
'field_paragraphs[0][subform][field_nested_content][0][subform][field_user][0][target_id]' => $test_user
->label() . ' (' . $test_user
->id() . ')',
];
$this
->submitForm($edit, 'Save');
$test_user
->delete();
$nodes = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties([
'title' => 'Node title',
]);
$this
->drupalGet('node/' . current($nodes)
->id() . '/edit');
$this
->submitForm([], 'field_paragraphs_0_edit');
$this
->submitForm([], 'field_paragraphs_0_collapse');
$this
->assertSession()
->statusCodeEquals(200);
$this
->addParagraphsType('block_paragraph');
$this
->addFieldtoParagraphType('block_paragraph', 'field_block', 'block_field');
$after_block2 = BlockContent::create([
'info' => 'Llama custom block',
'type' => 'basic_block',
]);
$after_block2
->save();
$this
->placeBlock($after_block2
->id());
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_block_paragraph_add_more');
$edit = [
'field_paragraphs[0][subform][field_block][0][plugin_id]' => 'block_content:' . $after_block2
->uuid(),
];
$this
->submitForm($edit, 'field_paragraphs_0_collapse');
$this
->assertSession()
->responseContains('<span class="summary-content">Llama custom block');
$edit = [
'title[0][value]' => 'Test llama block',
];
$this
->submitForm($edit, 'Save');
$after_block2
->delete();
$node = $this
->getNodeByTitle('Test llama block');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->statusCodeEquals(200);
$paragraph_type = 'link_paragraph';
$this
->addParagraphsType($paragraph_type);
static::fieldUIAddNewField('admin/structure/paragraphs_type/' . $paragraph_type, 'link', 'Link', 'link', [], []);
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_link_paragraph_add_more');
$edit = [
'title[0][value]' => 'Test link',
'field_paragraphs[0][subform][field_link][0][uri]' => 'http://www.google.com',
];
$this
->submitForm($edit, 'Save');
$this
->clickLink('Edit');
$this
->assertSession()
->responseContains('<span class="summary-content">http://www.google.com');
$this
->submitForm([], 'field_paragraphs_0_edit');
$edit = [
'field_paragraphs[0][subform][field_link][0][title]' => 'Link title',
];
$this
->submitForm($edit, 'Save');
$this
->clickLink('Edit');
$this
->assertSession()
->responseContains('<span class="summary-content">Link title');
$edit = [
'fields[status][region]' => 'content',
'fields[status][type]' => 'boolean_checkbox',
];
$this
->drupalGet('admin/structure/paragraphs_type/' . $title_paragraphs_type . '/form-display');
$this
->submitForm($edit, 'Save');
$edit = [
'fields[field_nested_content][type]' => 'paragraphs',
'fields[status][region]' => 'content',
'fields[status][type]' => 'boolean_checkbox',
];
$this
->drupalGet('admin/structure/paragraphs_type/nested_paragraph/form-display');
$this
->submitForm($edit, 'Save');
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_title_add_more');
$edit = [
'title[0][value]' => 'Access summary test',
'field_paragraphs[0][subform][field_title][0][value]' => 'memorable_summary_title',
'field_paragraphs[0][subform][status][value]' => FALSE,
];
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextNotContains('memorable_summary_title');
$node = $this
->getNodeByTitle('Access summary test');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->responseContains('<span class="summary-content">memorable_summary_title');
$this
->assertEquals(1, count($this
->xpath("//*[contains(@class, 'paragraphs-icon-view')]")));
$this
->drupalGet('node/add/paragraphed_test');
$this
->submitForm([], 'field_paragraphs_nested_paragraph_add_more');
$this
->submitForm([], 'field_paragraphs_0_subform_field_nested_content_title_add_more');
$edit = [
'title[0][value]' => 'Access nested summary test',
'field_paragraphs[0][subform][status][value]' => FALSE,
'field_paragraphs[0][subform][field_nested_content][0][subform][status][value]' => FALSE,
'field_paragraphs[0][subform][field_nested_content][0][subform][field_title][0][value]' => 'memorable_nested_summary_title',
];
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextNotContains('memorable_nested_summary_title');
$node = $this
->getNodeByTitle('Access nested summary test');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->responseContains('<span class="summary-content">memorable_nested_summary_title');
$this
->assertEquals(1, count($this
->xpath("//*[contains(@class, 'paragraphs-icon-view')]")));
$this
->submitForm([], 'field_paragraphs_0_edit');
$this
->submitForm([], 'field_paragraphs_0_subform_field_nested_content_0_collapse');
$this
->assertSession()
->responseContains('<span class="summary-content">memorable_nested_summary_title');
$this
->assertEquals(1, count($this
->xpath("//*[contains(@class, 'paragraphs-icon-view')]")));
$permissions = [
'edit any paragraphed_test content',
];
$this
->loginAsAdmin($permissions);
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertSession()
->responseContains('<span class="summary-content">memorable_nested_summary_title');
$this
->assertEquals(1, count($this
->xpath("//*[contains(@class, 'paragraphs-icon-view')]")));
$this
->submitForm([], 'field_paragraphs_0_edit');
$this
->submitForm([], 'field_paragraphs_0_subform_field_nested_content_0_collapse');
$this
->assertSession()
->responseContains('<span class="summary-content">memorable_nested_summary_title');
$this
->assertEquals(1, count($this
->xpath("//*[contains(@class, 'paragraphs-icon-view')]")));
}
}