public function ParagraphsWidgetElementsTest::testDragHandler in Paragraphs 8
Test paragraphs drag handler during translation.
File
- tests/
src/ FunctionalJavascript/ ParagraphsWidgetElementsTest.php, line 42
Class
- ParagraphsWidgetElementsTest
- Test paragraphs widget elements.
Namespace
Drupal\Tests\paragraphs\FunctionalJavascriptCode
public function testDragHandler() {
$this
->addParagraphedContentType('paragraphed_content_demo', 'field_paragraphs_demo');
$this
->addParagraphsType('text');
$this
->addFieldtoParagraphType('text', 'field_text_demo', 'text');
$this
->loginAsAdmin([
'administer site configuration',
'create paragraphed_content_demo content',
'edit any paragraphed_content_demo content',
'delete any paragraphed_content_demo content',
'administer content translation',
'translate any entity',
'create content translations',
'administer languages',
]);
ConfigurableLanguage::createFromLangcode('sr')
->save();
$edit = [
'entity_types[paragraph]' => TRUE,
'entity_types[node]' => TRUE,
'settings[node][paragraphed_content_demo][translatable]' => TRUE,
'settings[paragraph][text][translatable]' => TRUE,
'settings[paragraph][text][settings][language][language_alterable]' => TRUE,
];
$this
->drupalGet('admin/config/regional/content-language');
$this
->submitForm($edit, 'Save configuration');
$settings = [
'add_mode' => 'modal',
];
$this
->setParagraphsWidgetSettings('paragraphed_content_demo', 'field_paragraphs_demo', $settings);
// Create a node and add a paragraph.
$page = $this
->getSession()
->getPage();
$this
->drupalGet('node/add/paragraphed_content_demo');
$page
->pressButton('Add Paragraph');
$paragraphs_dialog = $this
->assertSession()
->waitForElementVisible('css', 'div.ui-dialog');
$paragraphs_dialog
->pressButton('text');
$this
->assertSession()
->assertWaitOnAjaxRequest();
// Assert the draghandle is visible.
$style_selector = $page
->find('css', '.tabledrag-handle');
$this
->assertTrue($style_selector
->isVisible());
$edit = [
'title[0][value]' => 'Title',
'field_paragraphs_demo[0][subform][field_text_demo][0][value]' => 'First',
];
$this
->submitForm($edit, 'Save');
// Translate the node.
$node = $this
->getNodeByTitle('Title');
$this
->drupalGet('node/' . $node
->id() . '/translations/add/en/sr');
$page = $this
->getSession()
->getPage();
// Assert that the draghandle is not displayed.
$this
->assertEmpty($page
->find('css', '.tabledrag-handle'));
}