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('
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('
'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'); } }