class ParagraphsConfigTest

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

Tests paragraphs configuration.

@group paragraphs

Hierarchy

  • class \Drupal\Tests\paragraphs\Functional\WidgetLegacy\ParagraphsTestBase extends \Drupal\Tests\BrowserTestBase uses \Drupal\Tests\field_ui\Traits\FieldUiTestTrait

Expanded class hierarchy of ParagraphsConfigTest

File

paragraphs/tests/src/Functional/WidgetLegacy/ParagraphsConfigTest.php, line 13

Namespace

Drupal\Tests\paragraphs\Functional\WidgetLegacy
View source
class ParagraphsConfigTest extends ParagraphsTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = array(
    'content_translation',
  );

  /**
   * Tests adding paragraphs with no translation enabled.
   */
  public function testFieldTranslationDisabled() {
    $this
      ->loginAsAdmin([
      'administer languages',
      'administer content translation',
      'create content translations',
      'translate any entity',
    ]);

    // Add a paragraphed content type.
    $this
      ->addParagraphedContentType('paragraphed_test', 'paragraphs_field', 'entity_reference_paragraphs');
    $this
      ->addParagraphsType('paragraph_type_test');
    $this
      ->addParagraphsType('text');

    // Add a second language.
    ConfigurableLanguage::createFromLangcode('de')
      ->save();

    // Enable translation for paragraphed content type. Do not enable
    // translation for the ERR paragraphs field nor for fields on the
    // paragraph type.
    $edit = [
      'entity_types[node]' => TRUE,
      'settings[node][paragraphed_test][translatable]' => TRUE,
      'settings[node][paragraphed_test][fields][paragraphs_field]' => FALSE,
    ];
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->submitForm($edit, 'Save configuration');

    // Create a node with a paragraph.
    $this
      ->drupalGet('node/add/paragraphed_test');
    $this
      ->submitForm([], 'paragraphs_field_paragraph_type_test_add_more');
    $edit = [
      'title[0][value]' => 'paragraphed_title',
    ];
    $this
      ->submitForm($edit, 'Save');

    // Attempt to add a translation.
    $node = $this
      ->drupalGetNodeByTitle('paragraphed_title');
    $this
      ->drupalGet('node/' . $node
      ->id() . '/translations');
    $this
      ->clickLink('Add');

    // Save the translation.
    $this
      ->submitForm([], 'Save (this translation)');
    $this
      ->assertSession()
      ->pageTextContains('paragraphed_test paragraphed_title has been updated.');
  }

  /**
   * Tests content translation form translatability constraints messages.
   */
  public function testContentTranslationForm() {
    $this
      ->loginAsAdmin([
      'administer languages',
      'administer content translation',
      'create content translations',
      'translate any entity',
    ]);

    // Check warning message is displayed.
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->assertSession()
      ->pageTextContains('(* unsupported) Paragraphs fields do not support translation.');
    $this
      ->addParagraphedContentType('paragraphed_test', 'paragraphs_field', 'entity_reference_paragraphs');

    // Check error message is not displayed.
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->assertSession()
      ->pageTextContains('(* unsupported) Paragraphs fields do not support translation.');
    $this
      ->assertSession()
      ->responseNotContains('<div class="messages messages--error');

    // Add a second language.
    ConfigurableLanguage::createFromLangcode('de')
      ->save();

    // Enable translation for paragraphed content type.
    $edit = [
      'entity_types[node]' => TRUE,
      'settings[node][paragraphed_test][translatable]' => TRUE,
      'settings[node][paragraphed_test][fields][paragraphs_field]' => FALSE,
    ];
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->submitForm($edit, 'Save configuration');

    // Check error message is still not displayed.
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->assertSession()
      ->pageTextContains('(* unsupported) Paragraphs fields do not support translation.');
    $this
      ->assertSession()
      ->responseNotContains('<div class="messages messages--error');

    // Check content type field management warning.
    $this
      ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs_field');
    $this
      ->assertSession()
      ->pageTextContains('Paragraphs fields do not support translation.');

    // Make the paragraphs field translatable.
    $edit = [
      'entity_types[node]' => TRUE,
      'settings[node][paragraphed_test][translatable]' => TRUE,
      'settings[node][paragraphed_test][fields][paragraphs_field]' => TRUE,
    ];
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->submitForm($edit, 'Save configuration');

    // Check content type field management error.
    $this
      ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs_field');
    $this
      ->assertSession()
      ->pageTextContains('Paragraphs fields do not support translation.');
    $this
      ->assertSession()
      ->responseContains('<div class="messages messages--error');

    // Check a not paragraphs translatable field does not display the message.
    $this
      ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/add-field');
    if ($this
      ->coreVersion('10.2')) {
      $selected_group = [
        'new_storage_type' => 'reference',
      ];
      $this
        ->submitForm($selected_group, 'Change field group');
      $edit = [
        'group_field_options_wrapper' => 'field_ui:entity_reference:node',
        'label' => 'new_no_field_paragraphs',
        'field_name' => 'new_no_field_paragraphs',
      ];
      $this
        ->submitForm($edit, 'Continue');
    }
    else {
      $edit = [
        'new_storage_type' => 'field_ui:entity_reference:node',
        'label' => 'new_no_paragraphs_field',
        'field_name' => 'new_no_paragraphs_field',
      ];
      $this
        ->submitForm($edit, 'Save and continue');
      $this
        ->submitForm([], 'Save field settings');
    }
    $this
      ->assertSession()
      ->pageTextNotContains('Paragraphs fields do not support translation.');
    $this
      ->assertSession()
      ->responseNotContains('<div class="messages messages--warning');
  }

  /**
   * Tests required Paragraphs field.
   */
  public function testRequiredParagraphsField() {
    $this
      ->loginAsAdmin();

    // Add a Paragraph content type and 2 Paragraphs types.
    $this
      ->addParagraphedContentType('paragraphed_test', 'paragraphs', 'entity_reference_paragraphs');
    $this
      ->addParagraphsType('paragraph_type_test');
    $this
      ->addParagraphsType('text');

    // Make the paragraphs field required and save configuration.
    $this
      ->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs');
    $edit = [
      'required' => TRUE,
    ];
    $this
      ->submitForm($edit, 'Save settings');
    $this
      ->assertSession()
      ->pageTextContains('Saved paragraphs configuration.');

    // Assert that the field is displayed in the form as required.
    $this
      ->drupalGet('node/add/paragraphed_test');
    $this
      ->assertSession()
      ->responseContains('<strong class="form-required" data-drupal-selector="edit-paragraphs-title">');
    $edit = [
      'title[0][value]' => 'test_title',
    ];
    $this
      ->submitForm($edit, 'Save');
    $this
      ->assertSession()
      ->pageTextContains('paragraphs field is required.');
    $this
      ->submitForm([], 'paragraphs_paragraph_type_test_add_more');
    $this
      ->submitForm($edit, 'Save');
    $this
      ->assertSession()
      ->pageTextContains('paragraphed_test test_title has been created.');
  }

  /**
   * Tests that we can use paragraphs widget only for paragraphs.
   */
  public function testAvoidUsingParagraphsWithWrongEntity() {
    $node_type = NodeType::create([
      'type' => 'article',
      'name' => 'article',
    ]);
    $node_type
      ->save();
    $this
      ->loginAsAdmin([
      'edit any article content',
    ]);
    $this
      ->addParagraphsType('paragraphed_type');

    // Create reference to node.
    $this
      ->fieldUIAddNewField('admin/structure/types/manage/article', 'node_reference', 'NodeReference', 'entity_reference_revisions', [
      'cardinality' => 'number',
      'cardinality_number' => 1,
      'settings[target_type]' => 'node',
    ], [
      'settings[handler_settings][target_bundles][article]' => 'article',
    ]);
    $this
      ->drupalGet('admin/structure/types/manage/article/form-display');
    $this
      ->assertSession()
      ->optionNotExists('edit-fields-field-node-reference-type', 'entity_reference_paragraphs');
    $this
      ->assertSession()
      ->optionNotExists('edit-fields-field-node-reference-type', 'paragraphs');
  }

  /**
   * Test included Paragraph types.
   */
  public function testIncludedParagraphTypes() {
    $this
      ->loginAsAdmin();

    // Add a Paragraph content type and 2 Paragraphs types.
    $this
      ->addParagraphedContentType('paragraphed_test', 'paragraphs', 'entity_reference_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]' => '0',
      'settings[handler_settings][target_bundles_drag_drop][paragraph_type_test][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');
  }

  /**
   * Test excluded Paragraph types.
   */
  public function testExcludedParagraphTypes() {
    $this
      ->loginAsAdmin();

    // Add a Paragraph content type and 2 Paragraphs types.
    $this
      ->addParagraphedContentType('paragraphed_test', 'paragraphs', 'entity_reference_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');
  }

}

Members

Name Modifiers Type Description Overridessort ascending
ParagraphsTestBase::setUp protected function 19
ParagraphsTestBase::$defaultTheme protected property 2
ParagraphsTestBase::setAddMode protected function Sets the Paragraphs widget add mode. 1
ParagraphsTestBase::removeDefaultParagraphType protected function Removes the default paragraph type. 1
ParagraphsTestBase::$admin_user protected property Drupal user object created by loginAsAdmin(). 1
ParagraphsConfigTest::testFieldTranslationDisabled public function Tests adding paragraphs with no translation enabled.
ParagraphsConfigTest::testContentTranslationForm public function Tests content translation form translatability constraints messages.
ParagraphsConfigTest::testRequiredParagraphsField public function Tests required Paragraphs field.
ParagraphsConfigTest::testAvoidUsingParagraphsWithWrongEntity public function Tests that we can use paragraphs widget only for paragraphs.
ParagraphsConfigTest::testIncludedParagraphTypes public function Test included Paragraph types.
ParagraphsConfigTest::testExcludedParagraphTypes public function Test excluded Paragraph types.
ParagraphsTestBase::loginAsAdmin function Creates an user with admin permissions and log in.
ParagraphsTestBase::setAllowedParagraphsTypes protected function Sets the allowed Paragraphs types that can be added.
ParagraphsTestBase::setParagraphsTypeWeight protected function Sets the weight of a given Paragraphs type.
ParagraphsTestBase::setDefaultParagraphType protected function Sets the default paragraph type.
ParagraphsTestBase::setParagraphsWidgetMode protected function Sets the Paragraphs widget display mode.
ParagraphsConfigTest::$modules protected static property Modules to enable. Overrides ParagraphsTestBase::$modules
ParagraphsTestBase::$admin_permissions protected property List of permissions used by loginAsAdmin().