public function ParagraphsAdministrationTest::testParagraphsCreation

Same name in this branch
  1. 8.x-1.x paragraphs/tests/src/Functional/WidgetStable/ParagraphsAdministrationTest.php \Drupal\Tests\paragraphs\Functional\WidgetStable\ParagraphsAdministrationTest::testParagraphsCreation()
  2. 8.x-1.x paragraphs/tests/src/Functional/WidgetLegacy/ParagraphsAdministrationTest.php \Drupal\Tests\paragraphs\Functional\WidgetLegacy\ParagraphsAdministrationTest::testParagraphsCreation()

Tests the paragraph creation.

File

paragraphs/tests/src/Functional/WidgetLegacy/ParagraphsAdministrationTest.php, line 130

Class

ParagraphsAdministrationTest
Tests the configuration of paragraphs.

Namespace

Drupal\Tests\paragraphs\Functional\WidgetLegacy

Code

public function testParagraphsCreation() {

  // Create an article with paragraphs field.
  $this
    ->addParagraphedContentType('article', 'field_paragraphs', 'entity_reference_paragraphs');
  $this
    ->loginAsAdmin([
    'administer site configuration',
    'create article content',
    'create paragraphs content',
    'administer node display',
    'administer paragraph display',
    'edit any article content',
    'delete any article content',
    'access files overview',
  ]);

  // Assert suggested 'Add a paragraph type' link when there is no type yet.
  $this
    ->drupalGet('admin/structure/paragraphs_type');
  $this
    ->assertSession()
    ->pageTextContains('There are no Paragraphs types yet.');
  $this
    ->drupalGet('admin/structure/types/manage/paragraphs/fields/add-field');
  $edit = [
    'new_storage_type' => 'field_ui:entity_reference_revisions:paragraph',
    'label' => 'Paragraph',
    'field_name' => 'paragraph',
  ];
  $this
    ->submitForm($edit, $this
    ->coreVersion('10.2') ? 'Continue' : 'Save and continue');
  if (!$this
    ->coreVersion('10.2')) {
    $this
      ->submitForm([], 'Save field settings');
  }
  $this
    ->assertSession()
    ->linkByHrefExists('admin/structure/paragraphs_type/add');
  $this
    ->clickLink('here');
  $this
    ->assertSession()
    ->addressEquals('admin/structure/paragraphs_type/add');
  $this
    ->drupalGet('admin/structure/paragraphs_type');
  $this
    ->clickLink('Add paragraph type');
  $this
    ->assertSession()
    ->titleEquals('Add Paragraphs type | Drupal');

  // Create paragraph type text + image.
  $this
    ->addParagraphsType('text_image');
  $this
    ->drupalGet('admin/structure/paragraphs_type/text_image');
  $this
    ->assertSession()
    ->titleEquals('Edit text_image paragraph type | Drupal');

  // Create field types for text and image.
  static::fieldUIAddNewField('admin/structure/paragraphs_type/text_image', 'text', 'Text', 'text_long', array(), array());
  $this
    ->assertSession()
    ->pageTextContains('Saved Text configuration.');
  static::fieldUIAddNewField('admin/structure/paragraphs_type/text_image', 'image', 'Image', 'image', array(), array(
    'settings[alt_field_required]' => FALSE,
  ));
  $this
    ->assertSession()
    ->pageTextContains('Saved Image configuration.');

  // Create paragraph type Nested test.
  $this
    ->addParagraphsType('nested_test');
  static::fieldUIAddNewField('admin/structure/paragraphs_type/nested_test', 'paragraphs', 'Paragraphs', 'entity_reference_revisions', array(
    'settings[target_type]' => 'paragraph',
    'cardinality' => '-1',
  ), array());

  // Change the add more button to select mode.
  $this
    ->clickLink('Manage form display');
  $this
    ->submitForm([
    'fields[field_paragraphs][type]' => 'entity_reference_paragraphs',
  ], 'field_paragraphs_settings_edit');
  $this
    ->submitForm([
    'fields[field_paragraphs][settings_edit_form][settings][add_mode]' => 'select',
  ], 'Update');
  $this
    ->submitForm([], 'Save');

  // Create paragraph type image.
  $this
    ->addParagraphsType('image');

  // Create field types for image.
  static::fieldUIAddNewField('admin/structure/paragraphs_type/image', 'image_only', 'Image only', 'image', array(), array());
  $this
    ->assertSession()
    ->pageTextContains('Saved Image only configuration.');
  $this
    ->drupalGet('admin/structure/paragraphs_type');
  $rows = $this
    ->xpath('//tbody/tr');

  // Make sure 2 types are available with their label.
  $this
    ->assertEquals(count($rows), 3);
  $this
    ->assertSession()
    ->pageTextContains('text_image');
  $this
    ->assertSession()
    ->pageTextContains('image');

  // Make sure there is an edit link for each type.
  $this
    ->clickLink('Edit');

  // Make sure the field UI appears.
  $this
    ->assertSession()
    ->linkExists('Manage fields');
  $this
    ->assertSession()
    ->linkExists('Manage form display');
  $this
    ->assertSession()
    ->linkExists('Manage display');
  $this
    ->assertSession()
    ->titleEquals('Edit image paragraph type | Drupal');

  // Test for "Add mode" setting.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $field_name = 'field_paragraphs';

  // Click on the widget settings button to open the widget settings form.
  $this
    ->submitForm(array(), $field_name . "_settings_edit");

  // Enable setting.
  $edit = array(
    'fields[' . $field_name . '][settings_edit_form][settings][add_mode]' => 'button',
  );
  $this
    ->submitForm($edit, 'Save');

  // Check if the setting is stored.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $this
    ->assertSession()
    ->pageTextContains('Add mode: Buttons');
  $this
    ->submitForm(array(), $field_name . "_settings_edit");

  // Assert the 'Buttons' option is selected.
  $add_mode_option = $this
    ->assertSession()
    ->optionExists('edit-fields-field-paragraphs-settings-edit-form-settings-add-mode', 'button');
  $this
    ->assertTrue($add_mode_option
    ->hasAttribute('selected'), 'Updated value correctly.');

  // Add two Text + Image paragraphs in article.
  $this
    ->drupalGet('node/add/article');

  // Checking changes on article.
  $this
    ->assertSession()
    ->responseContains('<div class="paragraphs-dropbutton-wrapper"><input');
  $this
    ->submitForm(array(), 'field_paragraphs_text_image_add_more');
  $this
    ->submitForm(array(), 'field_paragraphs_text_image_add_more');

  // Upload some images.
  $files = $this
    ->getTestFiles('image');
  $file_system = \Drupal::service('file_system');
  $edit = array(
    'title[0][value]' => 'Test article',
    'field_paragraphs[0][subform][field_text][0][value]' => 'Test text 1',
    'files[field_paragraphs_0_subform_field_image_0]' => $file_system
      ->realpath($files[0]->uri),
    'field_paragraphs[1][subform][field_text][0][value]' => 'Test text 2',
    'files[field_paragraphs_1_subform_field_image_0]' => $file_system
      ->realpath($files[1]->uri),
  );
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('article Test article has been created.');
  $node = $this
    ->drupalGetNodeByTitle('Test article');
  $img1_url = \Drupal::service('file_url_generator')
    ->generateString(\Drupal::token()
    ->replace('public://[date:custom:Y]-[date:custom:m]/' . $files[0]->filename));
  $img2_url = \Drupal::service('file_url_generator')
    ->generateString(\Drupal::token()
    ->replace('public://[date:custom:Y]-[date:custom:m]/' . $files[1]->filename));
  $img1_mime = \Drupal::service('file.mime_type.guesser')
    ->guessMimeType($files[0]->uri);
  $img2_mime = \Drupal::service('file.mime_type.guesser')
    ->guessMimeType($files[1]->uri);

  // Check the text and image after publish.
  $this
    ->assertSession()
    ->pageTextContains('Test text 1');
  $this
    ->assertSession()
    ->elementExists('css', 'img[src="' . $img1_url . '"]');
  $this
    ->assertSession()
    ->pageTextContains('Test text 2');
  $this
    ->assertSession()
    ->elementExists('css', 'img[src="' . $img2_url . '"]');

  // Tests for "Edit mode" settings.
  // Test for closed setting.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');

  // Click on the widget settings button to open the widget settings form.
  $this
    ->submitForm(array(), "field_paragraphs_settings_edit");

  // Enable setting.
  $edit = array(
    'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'closed',
  );
  $this
    ->submitForm($edit, 'Save');

  // Check if the setting is stored.
  $this
    ->assertSession()
    ->pageTextContains('Edit mode: Closed');
  $this
    ->submitForm(array(), "field_paragraphs_settings_edit");

  // Assert the 'Closed' option is selected.
  $edit_mode_option = $this
    ->assertSession()
    ->optionExists('edit-fields-field-paragraphs-settings-edit-form-settings-edit-mode', 'closed');
  $this
    ->assertTrue($edit_mode_option
    ->hasAttribute('selected'), 'Updated value correctly.');
  $this
    ->drupalGet('node/1/edit');

  // The textareas for paragraphs should not be visible.
  $this
    ->assertSession()
    ->responseNotContains('field_paragraphs[0][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->responseNotContains('field_paragraphs[1][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->responseContains('<span class="summary-content">Test text 1</span>, <span class="summary-content">' . $files[0]->filename);
  $this
    ->assertSession()
    ->responseContains('<span class="summary-content">Test text 2</span>, <span class="summary-content">' . $files[1]->filename);

  // Test for preview option.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $this
    ->submitForm(array(), "field_paragraphs_settings_edit");
  $edit = array(
    'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'preview',
  );
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Edit mode: Preview');
  $this
    ->drupalGet('node/1/edit');

  // The texts in the paragraphs should be visible.
  $this
    ->assertSession()
    ->responseNotContains('field_paragraphs[0][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->responseNotContains('field_paragraphs[1][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->pageTextContains('Test text 1');
  $this
    ->assertSession()
    ->pageTextContains('Test text 2');

  // Test for open option.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $this
    ->submitForm(array(), "field_paragraphs_settings_edit");

  // Assert the 'Preview' option is selected.
  $edit_mode_option = $this
    ->assertSession()
    ->optionExists('edit-fields-field-paragraphs-settings-edit-form-settings-edit-mode', 'preview');
  $this
    ->assertTrue($edit_mode_option
    ->hasAttribute('selected'), 'Updated value correctly.');

  // Restore the value to Open for next test.
  $edit = array(
    'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'open',
  );
  $this
    ->submitForm($edit, 'Save');
  $this
    ->drupalGet('node/1/edit');

  // The textareas for paragraphs should be visible.
  $this
    ->assertSession()
    ->responseContains('field_paragraphs[0][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->responseContains('field_paragraphs[1][subform][field_text][0][value]');
  $paragraphs = Paragraph::loadMultiple();
  $this
    ->assertEquals(count($paragraphs), 2, 'Two paragraphs in article');

  // Check article edit page.
  $this
    ->drupalGet('node/' . $node
    ->id() . '/edit');

  // Check both paragraphs in edit page.
  $this
    ->assertSession()
    ->fieldValueEquals('field_paragraphs[0][subform][field_text][0][value]', 'Test text 1');
  $this
    ->assertSession()
    ->elementTextContains('css', 'A[href="' . $img1_url . '"][type^="' . $img1_mime . '"]', $files[0]->filename);
  $this
    ->assertSession()
    ->fieldValueEquals('field_paragraphs[1][subform][field_text][0][value]', 'Test text 2');
  $this
    ->assertSession()
    ->elementTextContains('css', 'A[href="' . $img2_url . '"][type^="' . $img2_mime . '"]', $files[1]->filename);

  // Remove 2nd paragraph.
  $this
    ->getSession()
    ->getPage()
    ->find('css', '[name="field_paragraphs_1_remove"]')
    ->press();

  // Confirm the removal.
  $this
    ->submitForm([], 'Confirm removal');
  $this
    ->assertSession()
    ->fieldNotExists('field_paragraphs[1][subform][field_text][0][value]');
  $this
    ->assertSession()
    ->elementNotExists('css', 'A[href="' . $img2_url . '"][type^="' . $img2_mime . '"]');

  // Assert the paragraph is not deleted unless the user saves the node.
  $this
    ->drupalGet('node/' . $node
    ->id() . '/edit');
  $this
    ->assertSession()
    ->elementTextContains('css', 'A[href="' . $img2_url . '"][type^="' . $img2_mime . '"]', $files[1]->filename);

  // Remove the second paragraph.
  $this
    ->getSession()
    ->getPage()
    ->find('css', '[name="field_paragraphs_1_remove"]')
    ->press();

  // Confirm the removal.
  $this
    ->submitForm([], 'Confirm removal');
  $this
    ->assertSession()
    ->elementNotExists('css', 'A[href="' . $img2_url . '"][type^="' . $img2_mime . '"]');
  $edit = [
    'field_paragraphs[0][subform][field_image][0][alt]' => 'test_alt',
  ];
  $this
    ->submitForm($edit, 'Save');

  // Assert the paragraph is deleted after the user saves the node.
  $this
    ->drupalGet('node/' . $node
    ->id() . '/edit');
  $this
    ->assertSession()
    ->elementNotExists('css', 'A[href="' . $img2_url . '"][type^="' . $img2_mime . '"]');

  // Delete the node.
  $this
    ->clickLink('Delete');
  $this
    ->submitForm([], 'Delete');
  $this
    ->assertSession()
    ->pageTextContains('Test article has been deleted.');

  // Check if the publish/unpublish option works.
  $this
    ->drupalGet('admin/structure/paragraphs_type/text_image/form-display');
  $edit = [
    'fields[status][type]' => 'boolean_checkbox',
    'fields[status][region]' => 'content',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->drupalGet('node/add/article');
  $this
    ->submitForm([], 'Add text_image');
  $this
    ->assertSession()
    ->responseContains('edit-field-paragraphs-0-subform-status-value');
  $edit = [
    'title[0][value]' => 'Example publish/unpublish',
    'field_paragraphs[0][subform][field_text][0][value]' => 'Example published and unpublished',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Example published and unpublished');
  $this
    ->clickLink('Edit');
  $edit = [
    'field_paragraphs[0][subform][status][value]' => FALSE,
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextNotContains('Example published and unpublished');

  // Set the fields as required.
  $this
    ->drupalGet('admin/structure/types/manage/article/fields');
  $this
    ->clickLink('Edit', 1);
  $this
    ->submitForm([
    'preview_mode' => '1',
  ], 'Save');
  $this
    ->drupalGet('admin/structure/paragraphs_type/nested_test/fields');
  $this
    ->clickLink('Edit');
  $this
    ->submitForm([
    'required' => TRUE,
  ], 'Save settings');

  // Add a new article.
  $this
    ->drupalGet('node/add/article');
  $this
    ->submitForm([], 'field_paragraphs_nested_test_add_more');
  $edit = [
    'field_paragraphs[0][subform][field_paragraphs][add_more][add_more_select]' => 'image',
  ];
  $this
    ->submitForm($edit, 'field_paragraphs_0_subform_field_paragraphs_add_more');

  // Test the new field is displayed.
  $this
    ->assertSession()
    ->fieldExists('files[field_paragraphs_0_subform_field_paragraphs_0_subform_field_image_only_0]');

  // Add an image to the required field.
  $edit = array(
    'title[0][value]' => 'test required',
    'files[field_paragraphs_0_subform_field_paragraphs_0_subform_field_image_only_0]' => $file_system
      ->realpath($files[2]->uri),
  );
  $this
    ->submitForm($edit, 'Save');
  $edit = [
    'field_paragraphs[0][subform][field_paragraphs][0][subform][field_image_only][0][alt]' => 'Alternative_text',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('test required has been created.');
  $this
    ->assertSession()
    ->responseNotContains('This value should not be null.');

  // Test that unsupported widgets are not displayed.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $select = $this
    ->xpath('//*[@id="edit-fields-field-paragraphs-type"]')[0];
  $this
    ->assertCount(2, $select
    ->findAll('css', 'option'));
  $this
    ->assertSession()
    ->responseContains('value="entity_reference_paragraphs" selected="selected"');

  // Test that all Paragraph types can be referenced if none is selected.
  $this
    ->addParagraphsType('nested_double_test');
  static::fieldUIAddExistingField('admin/structure/paragraphs_type/nested_double_test', 'field_paragraphs', 'paragraphs_1');
  $this
    ->clickLink('Manage form display');

  // Fields now keep form display settings when reused in 10.1+, restore it to the
  // default.
  $this
    ->submitForm([
    'fields[field_paragraphs][type]' => 'paragraphs',
  ], 'field_paragraphs_settings_edit');
  $this
    ->submitForm([
    'fields[field_paragraphs][settings_edit_form][settings][add_mode]' => 'dropdown',
  ], 'Update');
  $this
    ->submitForm([], 'Save');

  //$this->drupalPostForm(NULL, array('fields[field_paragraphs][type]' => 'entity_reference_revisions_entity_view'), 'Save');
  static::fieldUIAddNewField('admin/structure/paragraphs_type/nested_double_test', 'paragraphs_2', 'paragraphs_2', 'entity_reference_revisions', array(
    'settings[target_type]' => 'paragraph',
    'cardinality' => '-1',
  ), array());
  $this
    ->clickLink('Manage form display');
  $this
    ->submitForm([], 'Save');
  $this
    ->drupalGet('node/add/article');
  $this
    ->submitForm([], 'field_paragraphs_nested_test_add_more');
  $edit = [
    'field_paragraphs[0][subform][field_paragraphs][add_more][add_more_select]' => 'nested_double_test',
  ];
  $this
    ->submitForm($edit, 'field_paragraphs_0_subform_field_paragraphs_add_more');
  $this
    ->submitForm([], 'field_paragraphs_0_subform_field_paragraphs_0_subform_field_paragraphs_image_add_more');
  $edit = array(
    'title[0][value]' => 'Nested twins',
  );
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Nested twins has been created.');
  $this
    ->assertSession()
    ->pageTextNotContains('This entity (paragraph: ) cannot be referenced.');

  // Set the fields as not required.
  if ($this
    ->coreVersion('10.2')) {
    $this
      ->drupalGet('admin/structure/types/manage/article/fields/node.article.field_paragraphs');
    $this
      ->submitForm([
      'required' => FALSE,
    ], 'Save');
  }
  else {
    $this
      ->drupalGet('admin/structure/types/manage/article/fields');
    $this
      ->clickLink('Edit');
    $this
      ->submitForm([
      'required' => FALSE,
    ], 'Save settings');
  }

  // Set the Paragraph field edit mode to 'Closed'.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $this
    ->submitForm([], 'field_paragraphs_settings_edit');
  $this
    ->submitForm([
    'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'closed',
  ], 'Update');
  $this
    ->submitForm([], 'Save');
  $this
    ->addParagraphsType('node_test');

  // Add a required node reference field.
  static::fieldUIAddNewField('admin/structure/paragraphs_type/node_test', 'entity_reference', 'Entity reference', 'entity_reference', array(
    'settings[target_type]' => 'node',
    'cardinality' => '-1',
  ), [
    'settings[handler_settings][target_bundles][article]' => TRUE,
    'required' => TRUE,
  ]);
  $node = $this
    ->drupalGetNodeByTitle('Nested twins');

  // Create a node with a reference in a Paragraph.
  $this
    ->drupalGet('node/add/article');
  $this
    ->submitForm([], 'field_paragraphs_node_test_add_more');
  \Drupal::service('entity_field.manager')
    ->clearCachedFieldDefinitions();
  $edit = [
    'field_paragraphs[0][subform][field_entity_reference][0][target_id]' => $node
      ->label() . ' (' . $node
      ->id() . ')',
    'title[0][value]' => 'choke test',
  ];
  $this
    ->submitForm($edit, 'Save');

  // Delete the referenced node.
  $node
    ->delete();

  // Edit the node with the reference.
  $this
    ->clickLink('Edit');

  // Since we have validation error (reference to deleted node), paragraph is
  // by default in edit mode.
  $this
    ->assertSession()
    ->fieldExists('field_paragraphs[0][subform][field_entity_reference][0][target_id]');
  $this
    ->assertSession()
    ->fieldExists('field_paragraphs[0][subform][field_entity_reference][1][target_id]');

  // Assert the validation error message.
  $this
    ->assertSession()
    ->pageTextContains('The referenced entity (node: 4) does not exist');

  // Triggering unrelated button, assert that error message is still present.
  $this
    ->submitForm([], 'Add another item');
  $this
    ->assertSession()
    ->pageTextContains('The referenced entity (node: 4) does not exist');
  $this
    ->assertSession()
    ->pageTextContains('Entity reference (value 1) field is required.');

  // Try to collapse with an invalid reference.
  $this
    ->submitForm([
    'field_paragraphs[0][subform][field_entity_reference][0][target_id]' => 'foo',
  ], 'field_paragraphs_0_collapse');

  // Paragraph should be still in edit mode.
  $this
    ->assertSession()
    ->fieldExists('field_paragraphs[0][subform][field_entity_reference][0][target_id]');
  $this
    ->assertSession()
    ->fieldExists('field_paragraphs[0][subform][field_entity_reference][1][target_id]');
  $this
    ->submitForm([], 'Add another item');

  // Assert the validation message.
  $this
    ->assertSession()
    ->pageTextMatches('/There are no (entities|content items) matching "foo"./');

  // Attempt to remove the Paragraph.
  $this
    ->submitForm([], 'field_paragraphs_0_remove');
  $elements = $this
    ->xpath('//*[@name="field_paragraphs_0_confirm_remove"]');
  $this
    ->assertNotEmpty($elements, "'Confirm removal' button appears.");

  // Restore the Paragraph and fix the broken reference.
  $this
    ->submitForm([], 'field_paragraphs_0_restore');
  $node = $this
    ->drupalGetNodeByTitle('Example publish/unpublish');
  $edit = [
    'field_paragraphs[0][subform][field_entity_reference][0][target_id]' => $node
      ->label() . ' (' . $node
      ->id() . ')',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('choke test has been updated.');
  $this
    ->assertSession()
    ->linkExists('Example publish/unpublish');

  // Delete the new referenced node.
  $node
    ->delete();

  // Set the Paragraph field edit mode to 'Preview'.
  $this
    ->drupalGet('admin/structure/types/manage/article/form-display');
  $this
    ->submitForm([], 'field_paragraphs_settings_edit');
  $this
    ->submitForm([
    'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'preview',
  ], 'Update');
  $this
    ->submitForm([], 'Save');
  $node = $this
    ->drupalGetNodeByTitle('choke test');

  // Attempt to edit the Paragraph.
  $this
    ->drupalGet('node/' . $node
    ->id() . '/edit');
  $this
    ->SubmitForm([], 'field_paragraphs_0_edit');

  // Try to save with an invalid reference.
  $edit = [
    'field_paragraphs[0][subform][field_entity_reference][0][target_id]' => 'foo',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextMatches('/There are no (entities|content items) matching "foo"./');

  // Remove the Paragraph and save the node.
  $this
    ->submitForm([], 'field_paragraphs_0_remove');
  $elements = $this
    ->xpath('//*[@name="field_paragraphs_0_confirm_remove"]');
  $this
    ->assertNotEmpty($elements, "'Confirm removal' button appears.");
  $this
    ->submitForm([], 'field_paragraphs_0_confirm_remove');
  $this
    ->submitForm([], 'Save');
  $this
    ->assertSession()
    ->pageTextContains('choke test has been updated.');

  // Verify that the text displayed is correct when no paragraph has been
  // added yet.
  $this
    ->drupalGet('node/add/article');
  $this
    ->assertSession()
    ->pageTextContains('No Paragraph added yet.');
  $this
    ->drupalGet('admin/content/files');
  $this
    ->clickLink('1 place');
  $label = $this
    ->xpath('//tbody/tr/td[1]');
  $this
    ->assertEquals(trim(htmlspecialchars_decode(strip_tags($label[0]
    ->getText()))), 'test required > field_paragraphs > Paragraphs');
}