Tests the translation of heavily nested / specialized setup.
@group paragraphs
Expanded class hierarchy of ParagraphsEntityTranslationWithNonTranslatableParagraphs
class ParagraphsEntityTranslationWithNonTranslatableParagraphs extends ParagraphsTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'language',
'content_translation',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->admin_user = $this
->drupalCreateUser([], NULL, TRUE);
$this
->drupalLogin($this->admin_user);
// Add a languages.
$edit = array(
'predefined_langcode' => 'de',
);
$this
->drupalGet('admin/config/regional/language/add');
$this
->submitForm($edit, 'Add language');
$edit = array(
'predefined_langcode' => 'fr',
);
$this
->drupalGet('admin/config/regional/language/add');
$this
->submitForm($edit, '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
->drupalGet('admin/structure/types/manage/article');
$this
->submitForm($edit, 'Save');
$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
->drupalGet('admin/structure/types/manage/article/fields/node.article.field_paragraphs');
$this
->submitForm($edit, '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
->submitForm($edit, 'Save');
// Add french translation.
$this
->clickLink('Translate');
$this
->clickLink('Add', 1);
// Make sure that the original paragraph text is displayed.
$this
->assertSession()
->pageTextContains('Title English');
$edit = array(
'title[0][value]' => 'Title French',
);
$this
->submitForm($edit, 'Save (this translation)');
$this
->assertSession()
->pageTextContains('article Title French has been updated.');
// Add german translation.
$this
->clickLink('Translate');
$this
->clickLink('Add');
// Make sure that the original paragraph text is displayed.
$this
->assertSession()
->pageTextContains('Title English');
$edit = array(
'title[0][value]' => 'Title German',
);
$this
->submitForm($edit, 'Save (this translation)');
$this
->assertSession()
->pageTextContains('article Title German has been updated.');
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ParagraphsEntityTranslationWithNonTranslatableParagraphs:: |
protected static | property |
Modules to enable. Overrides ParagraphsTestBase:: |
|
ParagraphsEntityTranslationWithNonTranslatableParagraphs:: |
protected | function |
Overrides ParagraphsTestBase:: |
|
ParagraphsEntityTranslationWithNonTranslatableParagraphs:: |
public | function | Tests the revision of paragraphs. | |
ParagraphsTestBase:: |
protected | property | List of permissions used by loginAsAdmin(). | |
ParagraphsTestBase:: |
protected | property | Drupal user object created by loginAsAdmin(). | 1 |
ParagraphsTestBase:: |
protected | property | 2 | |
ParagraphsTestBase:: |
function | Creates an user with admin permissions and log in. | ||
ParagraphsTestBase:: |
protected | function |
Removes the default paragraph type. Overrides ParagraphsTestBase:: |
|
ParagraphsTestBase:: |
protected | function |
Sets the Paragraphs widget add mode. Overrides ParagraphsTestBase:: |
|
ParagraphsTestBase:: |
protected | function | Sets the allowed Paragraphs types that can be added. | |
ParagraphsTestBase:: |
protected | function | Sets the default paragraph type. | |
ParagraphsTestBase:: |
protected | function | Sets the weight of a given Paragraphs type. | |
ParagraphsTestBase:: |
protected | function | Sets the Paragraphs widget display mode. | |
ParagraphsTestBaseTrait:: |
protected | property | The workflow entity. | |
ParagraphsTestBaseTrait:: |
protected | function | Adds a field to a given paragraph type. | |
ParagraphsTestBaseTrait:: |
protected | function | Adds a content type with a Paragraphs field. | |
ParagraphsTestBaseTrait:: |
protected | function | Adds a Paragraphs field to a given entity type. | |
ParagraphsTestBaseTrait:: |
protected | function | Adds a Paragraphs type. | |
ParagraphsTestBaseTrait:: |
protected | function | Adds an icon to a paragraphs type. | |
ParagraphsTestBaseTrait:: |
protected | function | Checks the core version. | |
ParagraphsTestBaseTrait:: |
protected | function | Creates a workflow entity. | |
ParagraphsTestBaseTrait:: |
protected | function | Sets some of the settings of a paragraphs field widget. |