AjaxBlockTest.php in Drupal 10
File
core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php
View source
<?php
namespace Drupal\Tests\layout_builder\FunctionalJavascript;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay;
class AjaxBlockTest extends WebDriverTestBase {
protected static $modules = [
'block',
'node',
'datetime',
'layout_builder',
'user',
'layout_builder_test',
];
protected $defaultTheme = 'classy';
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalLogin($this
->drupalCreateUser([
'configure any layout',
]));
$this
->createContentType([
'type' => 'bundle_with_section_field',
]);
LayoutBuilderEntityViewDisplay::load('node.bundle_with_section_field.default')
->enableLayoutBuilder()
->setOverridable()
->save();
}
public function testAddAjaxBlock() {
$assert_session = $this
->assertSession();
$page = $this
->getSession()
->getPage();
$this
->createNode([
'type' => 'bundle_with_section_field',
'body' => [
[
'value' => 'The node body',
],
],
]);
$this
->drupalGet('node/1');
$assert_session
->pageTextContains('The node body');
$assert_session
->pageTextNotContains('Every word is like an unnecessary stain on silence and nothingness.');
$this
->clickLink('Layout');
$assert_session
->elementExists('css', '.field--name-body');
$assert_session
->linkExists('Add block');
$this
->clickLink('Add block');
$assert_session
->assertWaitOnAjaxRequest();
$assert_session
->linkExists('TestAjax');
$this
->clickLink('TestAjax');
$assert_session
->assertWaitOnAjaxRequest();
$name = 'settings[ajax_test]';
$this
->markTestSkipped('Temporarily skipped due to random failures.');
$radios = $this
->assertSession()
->fieldExists($name);
foreach ([
1,
2,
] as $rounds) {
foreach ($radios as $radio) {
$radio
->click();
$assert_session
->assertWaitOnAjaxRequest();
}
}
$assert_session
->waitForElementVisible('named', [
'button',
'Add block',
])
->press();
$assert_session
->assertWaitOnAjaxRequest();
$block_elements = $this
->cssSelect('.block-layout-builder-test-testajax');
$this
->assertCount(1, $block_elements);
$assert_session
->pageTextContains('Every word is like an unnecessary stain on silence and nothingness.');
}
}