X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fparagraphs%2Fsrc%2FTests%2FClassic%2FParagraphsEntityTranslationWithNonTranslatableParagraphs.php;fp=web%2Fmodules%2Fcontrib%2Fparagraphs%2Fsrc%2FTests%2FClassic%2FParagraphsEntityTranslationWithNonTranslatableParagraphs.php;h=91c236a02324c0877d9542c3cf0c01c9f0e4fdc1;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/modules/contrib/paragraphs/src/Tests/Classic/ParagraphsEntityTranslationWithNonTranslatableParagraphs.php b/web/modules/contrib/paragraphs/src/Tests/Classic/ParagraphsEntityTranslationWithNonTranslatableParagraphs.php new file mode 100644 index 000000000..91c236a02 --- /dev/null +++ b/web/modules/contrib/paragraphs/src/Tests/Classic/ParagraphsEntityTranslationWithNonTranslatableParagraphs.php @@ -0,0 +1,109 @@ +admin_user = $this->drupalCreateUser([], NULL, TRUE); + $this->drupalLogin($this->admin_user); + + // Add a languages. + $edit = array( + 'predefined_langcode' => 'de', + ); + $this->drupalPostForm('admin/config/regional/language/add', $edit, t('Add language')); + $edit = array( + 'predefined_langcode' => 'fr', + ); + $this->drupalPostForm('admin/config/regional/language/add', $edit, t('Add language')); + + // Create article content type with a paragraphs field. + $this->addParagraphedContentType('article', 'field_paragraphs'); + $this->drupalGet('admin/structure/types/manage/article'); + // Make content type translatable. + $edit = array( + 'language_configuration[content_translation]' => TRUE, + ); + $this->drupalPostForm('admin/structure/types/manage/article', $edit, t('Save content type')); + $this->drupalGet('admin/structure/types/manage/article'); + + // Ensue the paragraphs field itself isn't translatable - this would be a + // currently not supported configuration otherwise. + $edit = array( + 'translatable' => FALSE, + ); + $this->drupalPostForm('admin/structure/types/manage/article/fields/node.article.field_paragraphs', $edit, t('Save settings')); + + // Add Paragraphs type. + $this->addParagraphsType('test_paragraph_type'); + // Configure paragraphs type. + static::fieldUIAddNewField('admin/structure/paragraphs_type/test_paragraph_type', 'text', 'Text', 'string', [ + 'cardinality' => '-1', + ]); + + // Just for verbose-sake - check the content language settings. + $this->drupalGet('admin/config/regional/content-language'); + } + + /** + * Tests the revision of paragraphs. + */ + public function testParagraphsIEFTranslation() { + $this->drupalLogin($this->admin_user); + + // Create node with one paragraph. + $this->drupalGet('node/add/article'); + + // Set the values and save. + $edit = [ + 'title[0][value]' => 'Title English', + ]; + $this->drupalPostForm(NULL, $edit, t('Save')); + + // Add french translation. + $this->clickLink(t('Translate')); + $this->clickLink(t('Add'), 1); + // Make sure that the original paragraph text is displayed. + $this->assertText('Title English'); + + $edit = array( + 'title[0][value]' => 'Title French', + ); + $this->drupalPostForm(NULL, $edit, t('Save (this translation)')); + $this->assertText('article Title French has been updated.'); + + // Add german translation. + $this->clickLink(t('Translate')); + $this->clickLink(t('Add')); + // Make sure that the original paragraph text is displayed. + $this->assertText('Title English'); + + $edit = array( + 'title[0][value]' => 'Title German', + ); + $this->drupalPostForm(NULL, $edit, t('Save (this translation)')); + $this->assertText('article Title German has been updated.'); + } + +}