You are here

public function ConfigAccessTest::testBlockConfigAccess in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php \Drupal\Tests\settings_tray\FunctionalJavascript\ConfigAccessTest::testBlockConfigAccess()
  2. 9 core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php \Drupal\Tests\settings_tray\FunctionalJavascript\ConfigAccessTest::testBlockConfigAccess()

Tests access to block forms with related configuration is correct.

File

core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php, line 45

Class

ConfigAccessTest
Tests handling of configuration overrides.

Namespace

Drupal\Tests\settings_tray\FunctionalJavascript

Code

public function testBlockConfigAccess() {
  $page = $this
    ->getSession()
    ->getPage();
  $web_assert = $this
    ->assertSession();

  // Confirm that System Branding block does not expose Site Name field
  // without permission.
  $block = $this
    ->placeBlock('system_branding_block');
  $this
    ->drupalGet('user');
  $this
    ->enableEditMode();
  $this
    ->openBlockForm($this
    ->getBlockSelector($block));

  // The site name field should not appear because the user doesn't have
  // permission.
  $web_assert
    ->fieldNotExists('settings[site_information][site_name]');
  $page
    ->pressButton('Save Site branding');
  $this
    ->waitForOffCanvasToClose();
  $this
    ->assertElementVisibleAfterWait('css', 'div:contains(The block configuration has been saved)');
  $web_assert
    ->assertWaitOnAjaxRequest();

  // Confirm we did not save changes to the configuration.
  $this
    ->assertEquals('Drupal', \Drupal::configFactory()
    ->getEditable('system.site')
    ->get('name'));
  $this
    ->grantPermissions(Role::load(Role::AUTHENTICATED_ID), [
    'administer site configuration',
  ]);
  $this
    ->drupalGet('user');
  $this
    ->openBlockForm($this
    ->getBlockSelector($block));

  // The site name field should appear because the user does have permission.
  $web_assert
    ->fieldExists('settings[site_information][site_name]');

  // Confirm that the Menu block does not expose menu configuration without
  // permission.
  // Add a link or the menu will not render.
  $menu_link_content = MenuLinkContent::create([
    'title' => 'This is on the menu',
    'menu_name' => 'main',
    'link' => [
      'uri' => 'route:<front>',
    ],
  ]);
  $menu_link_content
    ->save();
  $this
    ->assertNotEmpty($menu_link_content
    ->isEnabled());
  $menu_without_overrides = \Drupal::configFactory()
    ->getEditable('system.menu.main')
    ->get();
  $block = $this
    ->placeBlock('system_menu_block:main');
  $this
    ->drupalGet('user');
  $web_assert
    ->pageTextContains('This is on the menu');
  $this
    ->openBlockForm($this
    ->getBlockSelector($block));

  // Edit menu form should not appear because the user doesn't have
  // permission.
  $web_assert
    ->pageTextNotContains('Edit menu');
  $page
    ->pressButton('Save Main navigation');
  $this
    ->assertElementVisibleAfterWait('css', 'div:contains(The block configuration has been saved)');
  $web_assert
    ->assertWaitOnAjaxRequest();

  // Confirm we did not save changes to the menu or the menu link.
  $this
    ->assertEquals($menu_without_overrides, \Drupal::configFactory()
    ->getEditable('system.menu.main')
    ->get());
  $menu_link_content = MenuLinkContent::load($menu_link_content
    ->id());
  $this
    ->assertNotEmpty($menu_link_content
    ->isEnabled());

  // Confirm menu is still on the page.
  $this
    ->drupalGet('user');
  $web_assert
    ->pageTextContains('This is on the menu');
  $this
    ->grantPermissions(Role::load(Role::AUTHENTICATED_ID), [
    'administer menu',
  ]);
  $this
    ->drupalGet('user');
  $web_assert
    ->pageTextContains('This is on the menu');
  $this
    ->openBlockForm($this
    ->getBlockSelector($block));

  // Edit menu form should appear because the user does have permission.
  $web_assert
    ->pageTextContains('Edit menu');
}