LayoutLibraryIntegrationTest.php in Layout Builder Restrictions 8.2
File
tests/src/FunctionalJavascript/LayoutLibraryIntegrationTest.php
View source
<?php
namespace Drupal\Tests\layout_builder_restrictions\FunctionalJavascript;
use Drupal\Core\Url;
class LayoutLibraryIntegrationTest extends LayoutBuilderRestrictionsTestBase {
protected static $modules = [
'layout_builder',
'layout_builder_restrictions',
'layout_library',
'field_ui',
'node',
];
protected function setUp() : void {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'alpha',
'name' => 'Alpha',
]);
$this
->drupalLogin($this
->drupalCreateUser([
'access administration pages',
'configure any layout',
'administer node display',
]));
}
public function testLayoutLibraryWithRestrictionsEnabled() {
$assert_session = $this
->assertSession();
$page = $this
->getSession()
->getPage();
$this
->drupalGet(Url::fromRoute('entity.layout.add_form'));
$page
->fillField('Label', 'Charlie');
$this
->assertNotEmpty($assert_session
->waitForText('Machine name: charlie'));
$page
->selectFieldOption('Entity Type', 'node:alpha');
$page
->pressButton('Save');
$page
->clickLink('Add section');
$this
->assertNotEmpty($assert_session
->waitForElementVisible('css', '.layout-selection'));
$page
->clickLink('One column');
$this
->assertNotEmpty($assert_session
->waitForText('Configure section'));
}
}