Version 1
[yaffs-website] / web / modules / contrib / paragraphs / src / Tests / Experimental / ParagraphsExperimentalConfigTest.php
diff --git a/web/modules/contrib/paragraphs/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php b/web/modules/contrib/paragraphs/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php
new file mode 100644 (file)
index 0000000..6e99405
--- /dev/null
@@ -0,0 +1,161 @@
+<?php
+
+namespace Drupal\paragraphs\Tests\Experimental;
+
+use Drupal\language\Entity\ConfigurableLanguage;
+use Drupal\node\Entity\NodeType;
+
+/**
+ * Tests paragraphs configuration.
+ *
+ * @group paragraphs
+ */
+class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public 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');
+
+    $this->addParagraphsType('paragraph_type_test');
+    $this->addParagraphsType('text');
+
+    // Add a second language.
+    ConfigurableLanguage::create(['id' => '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->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
+
+    // Create a node with a paragraph.
+    $this->drupalPostAjaxForm('node/add/paragraphed_test', [], 'paragraphs_field_paragraph_type_test_add_more');
+    $this->drupalPostForm(NULL, ['title[0][value]' => 'paragraphed_title'], t('Save and publish'));
+
+    // Attempt to add a translation.
+    $node = $this->drupalGetNodeByTitle('paragraphed_title');
+    $this->drupalGet('node/' . $node->id() . '/translations');
+    $this->clickLink(t('Add'));
+    // Save the translation.
+    $this->drupalPostForm(NULL, [], t('Save and keep published (this translation)'));
+    $this->assertText('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->assertText('(* unsupported) Paragraphs fields do not support translation.');
+
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs_field');
+    // Check error message is not displayed.
+    $this->drupalGet('admin/config/regional/content-language');
+    $this->assertText('(* unsupported) Paragraphs fields do not support translation.');
+    $this->assertNoRaw('<div class="messages messages--error');
+
+    // Add a second language.
+    ConfigurableLanguage::create(['id' => '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->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
+
+    // Check error message is still not displayed.
+    $this->drupalGet('admin/config/regional/content-language');
+    $this->assertText('(* unsupported) Paragraphs fields do not support translation.');
+    $this->assertNoRaw('<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->assertText('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->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
+
+    // Check content type field management error.
+    $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs_field');
+    $this->assertText('Paragraphs fields do not support translation.');
+    $this->assertRaw('<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');
+    $edit = [
+      'new_storage_type' => 'field_ui:entity_reference:node',
+      'label' => 'new_no_paragraphs_field',
+      'field_name' => 'new_no_paragraphs_field',
+    ];
+    $this->drupalPostForm(NULL, $edit, t('Save and continue'));
+    $this->drupalPostForm(NULL, [], t('Save field settings'));
+    $this->assertNoText('Paragraphs fields do not support translation.');
+    $this->assertNoRaw('<div class="messages messages--warning');
+  }
+
+  /**
+   * 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->assertNoOption('edit-fields-field-node-reference-type', 'entity_reference_paragraphs');
+    $this->assertNoOption('edit-fields-field-node-reference-type', 'paragraphs');
+  }
+
+}