View source
<?php
namespace Drupal\Tests\paragraphs_collection\FunctionalJavascript;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\node\Entity\Node;
use Drupal\paragraphs\Entity\Paragraph;
use Drupal\Tests\field_ui\Traits\FieldUiTestTrait;
use Drupal\Tests\paragraphs\FunctionalJavascript\LoginAdminTrait;
use Drupal\Tests\paragraphs\FunctionalJavascript\ParagraphsTestBaseTrait;
class ParagraphsStylePluginTest extends WebDriverTestBase {
use LoginAdminTrait;
use ParagraphsTestBaseTrait;
use FieldUiTestTrait;
public static $modules = [
'node',
'paragraphs',
'field',
'field_ui',
'block',
'paragraphs_test',
'paragraphs_collection',
];
protected $defaultTheme = 'stark';
protected function setUp() {
parent::setUp();
$this
->drupalPlaceBlock('system_breadcrumb_block');
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('local_actions_block');
$this
->drupalPlaceBlock('page_title_block');
$this->admin_permissions = [
'administer content types',
'administer node fields',
'administer paragraphs types',
'administer node form display',
'administer paragraph fields',
'administer paragraph form display',
];
}
public function testAdvancedStyles() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
'use advanced style',
]);
$this
->drupalGet('admin/structure/paragraphs_type/add');
$paragraph_type = 'test_style_plugin';
$this
->addParagraphsType($paragraph_type);
$this
->fieldUIAddExistingField('admin/structure/paragraphs_type/' . $paragraph_type, 'paragraphs_text', $paragraph_type);
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-enabled');
$this
->click('#edit-behavior-plugins-style-settings-groups-advanced-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][advanced_test_group][default]' => '',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page = $this
->getSession()
->getPage();
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$options = $this
->xpath('//select[contains(@id, :id)]/option', [
':id' => 'edit-paragraphs-0-behavior-plugins-style-style',
]);
$this
->assertCount(2, $options);
$this
->assertEquals('- Default -', $options[0]
->getHtml());
$this
->assertEquals('Advanced', $options[1]
->getHtml());
$page
->fillField('title[0][value]', 'advanced_style');
$page
->fillField('paragraphs[0][subform][paragraphs_text][0][value]', 'I am text enhanced with advanced style.');
$page
->clickLink('Behavior');
$page
->fillField('paragraphs[0][behavior_plugins][style][style_wrapper][styles][advanced_test_group]', 'advanced');
$page
->pressButton('Save');
$this
->assertCount(1, $this
->cssSelect('.paragraphs-behavior-style--advanced'));
$this
->assertCount(1, $this
->cssSelect('[data-attribute="test"]'));
$edit = [
'behavior_plugins[style][settings][groups][advanced_test_group]' => TRUE,
'behavior_plugins[style][settings][groups_defaults][advanced_test_group][default]' => 'advanced',
];
$this
->drupalPostForm('admin/structure/paragraphs_type/' . $paragraph_type, $edit, t('Save'));
$node = $this
->getNodeByTitle('advanced_style');
$this
->drupalLogout();
$this
->drupalGet($node
->toUrl());
$this
->assertCount(1, $this
->cssSelect('.paragraphs-behavior-style--advanced'));
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
'use super-advanced style',
]);
$this
->drupalGet($node
->toUrl('edit-form'));
$styles = $this
->xpath('//select[@name="paragraphs[0][behavior_plugins][style][style_wrapper][styles][advanced_test_group]"]');
$this
->assertEquals('disabled', $styles[0]
->getAttribute('disabled'));
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$styles = $this
->xpath('//select[@name="paragraphs[1][behavior_plugins][style][style_wrapper][styles][advanced_test_group]"]');
$this
->assertSession()
->elementNotExists('css', 'select[name="paragraphs[1][behavior_plugins][style][style_wrapper][styles][advanced_test_group]"]');
$this
->drupalPostForm(NULL, [], 'Save');
$this
->assertCount(2, $this
->cssSelect('.paragraphs-behavior-style--advanced'));
}
public function testStyleSelection() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$this
->drupalGet('admin/structure/paragraphs_type/add');
$paragraph_type = 'test_style_plugin';
$this
->addParagraphsType($paragraph_type);
$this
->fieldUIAddExistingField('admin/structure/paragraphs_type/' . $paragraph_type, 'paragraphs_text', $paragraph_type);
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$edit = [
'behavior_plugins[style][enabled]' => TRUE,
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->assertSession()
->pageTextContains('The style plugin cannot be enabled if no groups are selected.');
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][regular_test_group][default]' => '',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page = $this
->getSession()
->getPage();
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertSession()
->pageTextContains('style');
$this
->assertField('paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]');
$options = $this
->xpath('//select[contains(@id, :id)]/option', [
':id' => 'edit-paragraphs-0-behavior-plugins-style-style',
]);
$this
->assertEquals('- Default -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$this
->assertEquals('Overridden style Module', $options[2]
->getHtml());
$this
->assertEquals('Regular', $options[3]
->getHtml());
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->assertFieldByName('behavior_plugins[style][settings][groups][italic_test_group]');
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][italic_test_group][default]' => '',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$options = $this
->xpath('//select[contains(@id, :id)]/option', [
':id' => 'edit-paragraphs-0-behavior-plugins-style-style',
]);
$this
->assertCount(3, $options);
$this
->assertEquals('- Default -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$this
->assertEquals('Italic', $options[2]
->getHtml());
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->assertFieldByName('behavior_plugins[style][settings][groups_defaults][italic_test_group][default]', '');
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][regular_test_group][default]' => 'regular',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$page
->clickLink('Behavior');
$option = $this
->assertSession()
->selectExists('paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]')
->getValue();
$this
->assertEquals('regular', $option);
$options = $this
->xpath('//select[contains(@id, :id)]/option', [
':id' => 'edit-paragraphs-0-behavior-plugins-style-style',
]);
$this
->assertCount(3, $options);
$this
->assertEquals('- Regular -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$page
->clickLink('Content');
$page
->fillField('title[0][value]', 'style_plugin_node');
$page
->fillField('paragraphs[0][subform][paragraphs_text][0][value]', 'I am regular text.');
$this
->drupalPostForm(NULL, [], 'Save');
$this
->assertSession()
->pageTextContains('paragraph__test_style_plugin__regular');
$style = $this
->xpath('//div[@class="regular regular-wrapper paragraphs-behavior-style--regular paragraph paragraph--type--test-style-plugin paragraph--view-mode--default"]')[0];
$this
->assertNotNull($style);
$node = $this
->getNodeByTitle('style_plugin_node');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$option = $this
->assertSession()
->selectExists('paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]')
->getValue();
$this
->assertEquals('regular', $option);
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-bold-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-overline-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-empty-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][bold_test_group][default]' => 'bold',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->drupalGet($node
->toUrl('edit-form'));
$this
->assertSession()
->pageTextNotContains('Bold CONTEXT');
$this
->assertSession()
->pageTextNotContains('Empty Test Group');
$this
->assertOptionSelected('edit-paragraphs-0-behavior-plugins-style-style-wrapper-styles-regular-test-group', 'regular', 'Regular style group has a default option applied.');
$this
->assertOptionSelected('edit-paragraphs-0-behavior-plugins-style-style-wrapper-styles-overline-test-group', '', 'There is no configured default value for Overline style group.');
$this
->assertNoRaw('edit-paragraphs-0-behavior-plugins-style-style-wrapper-styles-bold-test-group');
$this
->assertNoRaw('edit-paragraphs-0-behavior-plugins-style-style-wrapper-styles-empty-test-group');
$this
->drupalPostForm(NULL, [], 'Save');
$this
->assertCount(1, $this
->cssSelect('.paragraphs-behavior-style--regular'));
$this
->assertCount(1, $this
->cssSelect('.paragraphs-behavior-style--bold'));
$this
->assertSession()
->elementNotExists('css', '.paragraphs-behavior-style--overline');
$this
->assertSession()
->elementNotExists('css', '.paragraphs-behavior-style--empty');
$edit = [
'behavior_plugins[style][settings][groups_defaults][overline_test_group][default]' => 'overline',
'behavior_plugins[style][settings][groups_defaults][bold_test_group][default]' => '',
];
$this
->drupalPostForm('admin/structure/paragraphs_type/' . $paragraph_type, $edit, 'Save');
$edit = [
'styles[bold][enabled]' => TRUE,
'styles[italic][enabled]' => TRUE,
'styles[underline][enabled]' => TRUE,
'styles[overline][enabled]' => TRUE,
'styles[regular][enabled]' => FALSE,
];
$this
->drupalPostForm('admin/reports/paragraphs_collection/styles', $edit, 'Save configuration');
$this
->drupalGet($node
->toUrl());
$this
->assertCount(1, $this
->cssSelect('.paragraphs-behavior-style--overline'));
$this
->assertSession()
->elementNotExists('css', '.paragraphs-behavior-style--bold');
$this
->assertSession()
->elementNotExists('css', '.paragraphs-behavior-style--regular');
$edit = [
'styles[bold][enabled]' => FALSE,
'styles[italic][enabled]' => TRUE,
'styles[underline][enabled]' => TRUE,
'styles[overline][enabled]' => FALSE,
'styles[regular][enabled]' => FALSE,
];
$this
->drupalPostForm('admin/reports/paragraphs_collection/styles', $edit, 'Save configuration');
$this
->drupalGet($node
->toUrl('edit-form'));
$this
->assertNoFieldByName('paragraphs[0][behavior_plugins][style][style_wrapper][styles][overline_test_group]');
$this
->assertNoRaw('edit-paragraphs-0-behavior-plugins-style');
}
public function testStyleSettingsSummary() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$this
->addParagraphedContentType('paragraphed_test');
$this
->loginAsAdmin([
'create paragraphed_test content',
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$text_paragraph = Paragraph::create([
'type' => 'text',
'paragraphs_text' => [
'value' => '<p>Test text 1.</p>',
'format' => 'basic_html',
],
]);
$text_paragraph
->save();
$paragraph = Paragraph::create([
'title' => 'Demo Paragraph',
'type' => 'container',
'paragraphs_container_paragraphs' => [
$text_paragraph,
],
]);
$paragraph
->save();
$node = Node::create([
'title' => 'Style plugin test',
'type' => 'paragraphed_test',
'field_paragraphs' => [
$paragraph,
],
]);
$node
->save();
$behavior_plugins = $paragraph
->getParagraphType()
->get('behavior_plugins');
$behavior_plugins['style'] = [
'enabled' => TRUE,
'groups' => [
'bold_test_group' => [
'default' => '',
],
],
];
$paragraph
->getParagraphType()
->set('behavior_plugins', $behavior_plugins);
$paragraph
->getParagraphType()
->save();
$style_plugin = $paragraph
->getParagraphType()
->getEnabledBehaviorPlugins()['style'];
$this
->assertEquals([], $style_plugin
->settingsSummary($paragraph));
$paragraph
->setBehaviorSettings('style', [
'styles' => [
'bold_test_group' => 'bold',
],
]);
$paragraph
->save();
$this
->assertEquals([
[
'label' => 'Bold CONTEXT',
'value' => 'Bold',
],
], $style_plugin
->settingsSummary($paragraph));
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph
->getParagraphType()
->id());
$this
->assertSession()
->pageTextContains('Bold Test Group');
$this
->drupalGet('admin/structure/types/manage/paragraphed_test/form-display');
$this
->drupalPostForm(NULL, [], 'field_paragraphs_settings_edit');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->drupalPostForm(NULL, [
'fields[field_paragraphs][settings_edit_form][settings][edit_mode]' => 'closed',
], t('Update'));
$this
->drupalPostForm(NULL, [], 'Save');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertRaw('edit-field-paragraphs-0-top-icons');
$this
->assertRaw('<span class="summary-content">Test text 1.</span></div><div class="paragraphs-plugin-wrapper"><span class="summary-plugin"><span class="summary-plugin-label">Bold CONTEXT</span>Bold');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph
->getType());
$edit = [
'behavior_plugins[style][settings][groups_defaults][bold_test_group][default]' => 'bold',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertRaw('<span class="summary-content">Test text 1.');
$this
->assertNoRaw('Style: Bold');
$this
->assertNoRaw('Style: - Bold -');
}
public function testNoStylesAvailable() {
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$this
->drupalGet('admin/structure/paragraphs_type/add');
$paragraph_type = 'test_style_plugin';
$this
->addParagraphsType($paragraph_type);
$this
->fieldUIAddExistingField('admin/structure/paragraphs_type/' . $paragraph_type, 'paragraphs_text', 'paragraphs_text');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$options = $this
->xpath('//*[contains(@id,"edit-behavior-plugins-style-settings-groups")]/option');
$this
->assertCount(0, $options);
$edit = [
'behavior_plugins[style][enabled]' => TRUE,
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->assertSession()
->pageTextContains('There is no style group available, the style plugin can not be enabled.');
}
public function testGlobalStyleSettings() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$paragraph_type = 'test_style_plugin';
$this
->addParagraphsType($paragraph_type);
$this
->fieldUIAddExistingField('admin/structure/paragraphs_type/' . $paragraph_type, 'paragraphs_text', 'paragraphs_text');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-enabled');
$this
->click('#edit-behavior-plugins-style-settings-groups-bold-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->drupalPostForm(NULL, [], t('Save'));
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->drupalGet('admin/reports/paragraphs_collection/styles');
$this
->assertFieldByName('styles[bold][enabled]', FALSE);
$this
->assertFieldByName('styles[italic][enabled]', FALSE);
$this
->assertFieldByName('styles[regular][enabled]', FALSE);
$this
->assertFieldByName('styles[underline][enabled]', FALSE);
$this
->drupalGet('node/add/paragraphed_test');
$page = $this
->getSession()
->getPage();
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_' . $paragraph_type . '_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$page
->clickLink('Behavior');
$options = $this
->xpath('//*[contains(@class,"paragraphs-plugin-form-element")]/option');
$this
->assertCount(6, $options);
$page
->fillField('title[0][value]', 'global_settings');
$edit = [
'paragraphs[0][behavior_plugins][style][style_wrapper][styles][bold_test_group]' => 'bold',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->assertRaw('paragraphs-behavior-style--bold');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-bold-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->drupalPostForm(NULL, [], t('Save'));
$this
->drupalGet('admin/reports/paragraphs_collection/styles');
$this
->click('#edit-styles-italic-enabled');
$this
->drupalPostForm(NULL, [], 'Save configuration');
$node = $this
->getNodeByTitle('global_settings');
$this
->drupalGet('node/' . $node
->id());
$this
->assertNoRaw('paragraphs-behavior-style--bold');
$this
->clickLink('Edit');
$options = $this
->xpath('//*[contains(@class,"paragraphs-plugin-form-element")]/option');
$this
->assertCount(2, $options);
$this
->assertEquals($options[0]
->getHtml(), '- Default -');
$this
->assertEquals($options[1]
->getHtml(), 'Italic');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$options = $this
->xpath('//*[contains(@name,"behavior_plugins[style][settings][groups_defaults][italic_test_group][default]")]/option');
$this
->assertCount(2, $options);
$this
->assertEquals($options[0]
->getHtml(), '- None -');
$this
->assertEquals($options[1]
->getHtml(), 'Italic');
$edit = [
'styles[bold][enabled]' => TRUE,
'styles[italic][enabled]' => TRUE,
];
$this
->drupalPostForm('admin/reports/paragraphs_collection/styles', $edit, 'Save configuration');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-bold-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][italic_test_group][default]' => 'italic',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/' . $node
->id() . '/edit');
$page
->clickLink('Behavior');
$this
->drupalPostForm(NULL, [
'paragraphs[0][behavior_plugins][style][style_wrapper][styles][italic_test_group]' => 'bold',
], t('Save'));
$this
->assertRaw('paragraphs-behavior-style--bold');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->assertOptionSelected('edit-paragraphs-0-behavior-plugins-style-style-wrapper-styles-italic-test-group', 'bold');
$this
->drupalGet('admin/reports/paragraphs_collection/styles');
$edit = [
'styles[bold][enabled]' => FALSE,
];
$this
->drupalPostForm(NULL, $edit, 'Save configuration');
$this
->drupalGet('node/' . $node
->id());
$this
->assertRaw('paragraphs-behavior-style--italic');
}
public function testMultipleGroups() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$this
->drupalGet('admin/structure/paragraphs_type/add');
$paragraph_type = 'test_style_plugin';
$this
->addParagraphsType($paragraph_type);
$this
->fieldUIAddExistingField('admin/structure/paragraphs_type/' . $paragraph_type, 'paragraphs_text', $paragraph_type);
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-enabled');
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][italic_test_group][default]' => 'italic',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page = $this
->getSession()
->getPage();
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_test_style_plugin_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$page
->clickLink('Behavior');
$options = $this
->xpath('//select[contains(@id, :id)]/option', [
':id' => 'edit-paragraphs-0-behavior-plugins-style-style',
]);
$this
->assertCount(2, $options);
$this
->assertEquals('- Italic -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$page
->clickLink('Content');
$edit = [
'title[0][value]' => 'title_to_remember',
'paragraphs[0][subform][paragraphs_text][0][value]' => 'text to apply styles',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->assertRaw('paragraphs-behavior-style--italic');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][regular_test_group][default]' => 'regular',
'behavior_plugins[style][settings][groups_defaults][italic_test_group][default]' => 'italic',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$node = $this
->getNodeByTitle('title_to_remember');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]',
]);
$this
->assertCount(3, $options);
$this
->assertEquals('- Regular -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][italic_test_group]',
]);
$this
->assertCount(2, $options);
$this
->assertEquals('- Italic -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$this
->drupalGet('node/' . $node
->id());
$this
->assertRaw('paragraphs-behavior-style--italic');
$this
->assertRaw('paragraphs-behavior-style--regular');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][regular_test_group][default]' => 'bold',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/' . $node
->id() . '/edit');
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]',
]);
$this
->assertCount(3, $options);
$this
->assertEquals('- Bold -', $options[0]
->getHtml());
$this
->assertEquals('Overridden style Module', $options[1]
->getHtml());
$this
->assertEquals('Regular', $options[2]
->getHtml());
$styles = $this
->xpath('//select[contains(@name, :name)]', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][italic_test_group]',
]);
$this
->assertEquals([], $styles);
$this
->drupalGet('node/' . $node
->id());
$this
->assertNoRaw('paragraphs-behavior-style--italic');
$this
->assertRaw('paragraphs-behavior-style--bold');
$this
->drupalGet('admin/structure/paragraphs_type/' . $paragraph_type);
$this
->click('#edit-behavior-plugins-style-settings-groups-italic-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->click('#edit-behavior-plugins-style-settings-groups-underline-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'behavior_plugins[style][settings][groups_defaults][italic_test_group][default]' => 'italic',
'behavior_plugins[style][settings][groups_defaults][regular_test_group][default]' => 'regular',
'behavior_plugins[style][settings][groups_defaults][underline_test_group][default]' => 'underline',
];
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->drupalGet('node/' . $node
->id() . '/edit');
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]',
]);
$this
->assertCount(3, $options);
$this
->assertEquals('- Regular -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][italic_test_group]',
]);
$this
->assertCount(2, $options);
$this
->assertEquals('- Italic -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$options = $this
->xpath('//select[contains(@name, :name)]/option', [
':name' => 'paragraphs[0][behavior_plugins][style][style_wrapper][styles][underline_test_group]',
]);
$this
->assertCount(2, $options);
$this
->assertEquals('- Underline -', $options[0]
->getHtml());
$this
->assertEquals('Bold', $options[1]
->getHtml());
$this
->drupalGet('node/' . $node
->id());
$this
->assertRaw('paragraphs-behavior-style--italic');
$this
->assertRaw('paragraphs-behavior-style--regular');
$this
->assertRaw('paragraphs-behavior-style--underline');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$page
->clickLink('Behavior');
$edit = [
'paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]' => 'bold',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->assertRaw('paragraphs-behavior-style--italic');
$this
->assertRaw('paragraphs-behavior-style--bold');
$this
->assertRaw('paragraphs-behavior-style--underline');
$this
->assertSession()
->pageTextContains('paragraph__test_style_plugin__bold');
$this
->assertSession()
->pageTextContains('paragraph__test_style_plugin__italic');
}
public function testStyleOverriding() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
$style_discovery = \Drupal::getContainer()
->get('paragraphs_collection.style_discovery');
$style = $style_discovery
->getStyle('style-overridden');
$this
->assertEquals($style['title'], new TranslatableMarkup('Overridden style Module'));
$this
->assertEquals($style['classes'], [
'overridden-style-module',
]);
\Drupal::service('theme_installer')
->install([
'paragraphs_collection_test_theme_a',
]);
$style = $style_discovery
->getStyle('style-overridden');
$this
->assertEquals($style['title'], new TranslatableMarkup('Overridden style A'));
$this
->assertEquals($style['classes'], [
'overridden-style-a',
]);
\Drupal::service('theme_installer')
->uninstall([
'paragraphs_collection_test_theme_a',
]);
$style = $style_discovery
->getStyle('style-overridden');
$this
->assertEquals($style['title'], new TranslatableMarkup('Overridden style C'));
$this
->assertEquals($style['classes'], [
'overridden-style-c',
]);
}
public function testStyleTemplate() {
\Drupal::service('module_installer')
->install([
'paragraphs_collection_test',
]);
\Drupal::service('theme_installer')
->install([
'paragraphs_collection_test_theme_a',
]);
$theme_config = \Drupal::configFactory()
->getEditable('system.theme');
$theme_config
->set('default', 'paragraphs_collection_test_theme_a');
$theme_config
->save();
$this
->addParagraphedContentType('paragraphed_test', 'paragraphs');
$this
->loginAsAdmin([
'edit any paragraphed_test content',
'edit behavior plugin settings',
]);
$this
->drupalGet('admin/structure/paragraphs_type/separator');
$this
->click('#edit-behavior-plugins-style-enabled');
$this
->click('#edit-behavior-plugins-style-settings-groups-regular-test-group');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->drupalPostForm(NULL, [], t('Save'));
$this
->drupalGet('node/add/paragraphed_test');
$page = $this
->getSession()
->getPage();
$page
->pressButton('List additional actions');
$page
->pressButton('paragraphs_separator_add_more');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$edit = [
'title[0][value]' => 'test_title',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->assertUniqueText('paragraph-type-template');
$this
->assertSession()
->pageTextNotContains('paragraph-style-template');
$node = $this
->getNodeByTitle('test_title');
$this
->drupalGet('node/' . $node
->id() . '/edit');
$page
->clickLink('Behavior');
$edit = [
'paragraphs[0][behavior_plugins][style][style_wrapper][styles][regular_test_group]' => 'style-overridden',
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$this
->assertUniqueText('paragraph-style-template');
$this
->assertSession()
->pageTextNotContains('paragraph-type-template');
}
}