Tests paragraphs configuration.
@group paragraphs
Expanded class hierarchy of ParagraphsConfigTest
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.');
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ParagraphsConfigTest:: |
protected static | property |
Modules to enable. Overrides ParagraphsTestBase:: |
|
ParagraphsConfigTest:: |
public | function | Tests that we can use paragraphs widget only for paragraphs. | |
ParagraphsConfigTest:: |
public | function | Tests content translation form translatability constraints messages. | |
ParagraphsConfigTest:: |
public | function | Test excluded Paragraph types. | |
ParagraphsConfigTest:: |
public | function | Tests adding paragraphs with no translation enabled. | |
ParagraphsConfigTest:: |
public | function | Test included Paragraph types. | |
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. | |
ParagraphsTestBase:: |
protected | function | 19 | |
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. |