public function ParagraphsConfigTest::testExcludedParagraphTypes

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

Test excluded Paragraph types.

File

paragraphs/tests/src/Functional/WidgetStable/ParagraphsConfigTest.php, line 231

Class

ParagraphsConfigTest
Tests paragraphs configuration.

Namespace

Drupal\Tests\paragraphs\Functional\WidgetStable

Code

public function testExcludedParagraphTypes() {
  $this
    ->loginAsAdmin();

  // Add a Paragraph content type and 2 Paragraphs types.
  $this
    ->addParagraphedContentType('paragraphed_test', 'paragraphs');
  $this
    ->addParagraphsType('paragraph_type_test');
  $this
    ->addParagraphsType('text');
  $this
    ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs');
  $edit = [
    'settings[handler_settings][negate]' => '1',
    'settings[handler_settings][target_bundles_drag_drop][text][enabled]' => '1',
  ];
  $this
    ->submitForm($edit, 'Save settings');
  $this
    ->assertSession()
    ->pageTextContains('Saved paragraphs configuration.');
  $this
    ->drupalGet('node/add/paragraphed_test');
  $this
    ->assertSession()
    ->buttonExists('Add paragraph_type_test');
  $this
    ->assertSession()
    ->responseNotContains('Add text');
  $edit = [
    'title[0][value]' => 'Testing excluded types',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('paragraphed_test Testing excluded types has been created.');

  // Exclude all types.
  $this
    ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs');
  $edit = [
    'settings[handler_settings][negate]' => '1',
    'settings[handler_settings][target_bundles_drag_drop][text][enabled]' => '1',
    'settings[handler_settings][target_bundles_drag_drop][paragraph_type_test][enabled]' => '1',
  ];
  $this
    ->submitForm($edit, 'Save settings');
  $this
    ->drupalGet('node/add/paragraphed_test');
  $this
    ->assertSession()
    ->pageTextContains('You are not allowed to add any of the Paragraph types.');
  $edit = [
    'title[0][value]' => 'Testing all excluded types',
  ];
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('paragraphed_test Testing all excluded types has been created.');
}