paragraphs-8.x-1.11/tests/src/Functional/WidgetStable/ParagraphsConfigTest.php
tests/src/Functional/WidgetStable/ParagraphsConfigTest.php
<?php
namespace Drupal\Tests\paragraphs\Functional\WidgetStable;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\node\Entity\NodeType;
/**
* Tests paragraphs configuration.
*
* @group paragraphs
*/
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');
$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][field_paragraphs]' => 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([], 'field_paragraphs_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');
// 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][field_paragraphs]' => 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.field_paragraphs');
$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][field_paragraphs]' => 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.field_paragraphs');
$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');
$selected_group = [
'new_storage_type' => 'reference',
];
$this->submitForm($selected_group, $this->coreVersion('10.3') ? 'Continue' : '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');
$this->assertSession()->pageTextNotContains('Paragraphs fields do not support translation.');
$this->assertSession()->responseNotContains('<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->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');
$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');
$edit = [
'title[0][value]' => 'Testing included types'
];
$this->submitForm($edit, 'Save');
$this->assertSession()->pageTextContains('paragraphed_test Testing included types has been created.');
// Include all types.
$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][text][enabled]' => '1',
'settings[handler_settings][target_bundles_drag_drop][paragraph_type_test][enabled]' => '1',
];
$this->submitForm($edit, 'Save settings');
$this->drupalGet('node/add/paragraphed_test');
$button_paragraphed_type_test = $this->xpath('//input[@id=:id]', [':id' => 'paragraphs-paragraph-type-test-add-more']);
$button_text = $this->xpath('//input[@id=:id]', [':id' => 'paragraphs-text-add-more']);
$this->assertNotNull($button_paragraphed_type_test);
$this->assertNotNull($button_text);
$edit = [
'title[0][value]' => 'Testing all excluded types'
];
$this->submitForm($edit, 'Save');
$this->assertSession()->pageTextContains('paragraphed_test Testing all excluded types has been created.');
}
/**
* Test excluded Paragraph types.
*/
public function testExcludedParagraphTypes() {
$this->loginAsAdmin();
// Add a Paragraph content type and 2 Paragraphs types.
$this->addParagraphedContentType('paragraphed_test', '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');
$edit = [
'title[0][value]' => 'Testing excluded types'
];
$this->submitForm($edit, 'Save');
$this->assertSession()->pageTextContains('paragraphed_test Testing excluded types has been created.');
// Exclude all types.
$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',
'settings[handler_settings][target_bundles_drag_drop][paragraph_type_test][enabled]' => '1',
];
$this->submitForm($edit, 'Save settings');
$this->drupalGet('node/add/paragraphed_test');
$this->assertSession()->pageTextContains('You are not allowed to add any of the Paragraph types.');
$edit = [
'title[0][value]' => 'Testing all excluded types'
];
$this->submitForm($edit, 'Save');
$this->assertSession()->pageTextContains('paragraphed_test Testing all excluded types has been created.');
}
}
