View source  
  <?php
namespace Drupal\Tests\block\Functional;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\Component\Utility\Html;
use Drupal\block\Entity\Block;
use Drupal\Core\Url;
use Drupal\user\Entity\Role;
use Drupal\user\RoleInterface;
class BlockTest extends BlockTestBase {
  
  protected $defaultTheme = 'classy';
  
  public function testBlockVisibility() {
    $block_name = 'system_powered_by_block';
    
    $title = $this
      ->randomMachineName(8);
    
    $default_theme = $this
      ->config('system.theme')
      ->get('default');
    $edit = [
      'id' => strtolower($this
        ->randomMachineName(8)),
      'region' => 'sidebar_first',
      'settings[label]' => $title,
      'settings[label_display]' => TRUE,
    ];
    
    $edit['visibility[request_path][pages]'] = '/user*';
    $edit['visibility[request_path][negate]'] = TRUE;
    $edit['visibility[user_role][roles][' . RoleInterface::AUTHENTICATED_ID . ']'] = TRUE;
    $this
      ->drupalGet('admin/structure/block/add/' . $block_name . '/' . $default_theme);
    $this
      ->assertFieldChecked('edit-visibility-request-path-negate-0');
    $this
      ->drupalPostForm(NULL, $edit, t('Save block'));
    $this
      ->assertText('The block configuration has been saved.', 'Block was saved');
    $this
      ->clickLink('Configure');
    $this
      ->assertFieldChecked('edit-visibility-request-path-negate-1');
    $this
      ->drupalGet('');
    $this
      ->assertText($title, 'Block was displayed on the front page.');
    $this
      ->drupalGet('user');
    $this
      ->assertNoText($title, 'Block was not displayed according to block visibility rules.');
    
    $this
      ->drupalLogout();
    $this
      ->drupalGet('');
    $this
      ->assertNoText($title, 'Block was not displayed to anonymous users.');
    
    $this
      ->assertNoText('Powered by Drupal', 'Empty block not displayed.');
    $this
      ->assertNoRaw('sidebar-first', 'Empty sidebar-first region is not displayed.');
  }
  
  public function testBlockToggleVisibility() {
    $block_name = 'system_powered_by_block';
    
    $title = $this
      ->randomMachineName(8);
    
    $default_theme = $this
      ->config('system.theme')
      ->get('default');
    $edit = [
      'id' => strtolower($this
        ->randomMachineName(8)),
      'region' => 'sidebar_first',
      'settings[label]' => $title,
    ];
    $block_id = $edit['id'];
    
    $edit['visibility[user_role][roles][' . RoleInterface::AUTHENTICATED_ID . ']'] = TRUE;
    $this
      ->drupalPostForm('admin/structure/block/add/' . $block_name . '/' . $default_theme, $edit, t('Save block'));
    $this
      ->clickLink('Configure');
    $this
      ->assertFieldChecked('edit-visibility-user-role-roles-authenticated');
    $edit = [
      'visibility[user_role][roles][' . RoleInterface::AUTHENTICATED_ID . ']' => FALSE,
    ];
    $this
      ->drupalPostForm(NULL, $edit, 'Save block');
    $this
      ->clickLink('Configure');
    $this
      ->assertNoFieldChecked('edit-visibility-user-role-roles-authenticated');
    
    
    $block = Block::load($block_id);
    $visibility_config = $block
      ->getVisibilityConditions()
      ->getConfiguration();
    $this
      ->assertIdentical([], $visibility_config);
    $this
      ->assertIdentical([], $block
      ->get('visibility'));
  }
  
  public function testBlockVisibilityListedEmpty() {
    $block_name = 'system_powered_by_block';
    
    $title = $this
      ->randomMachineName(8);
    
    $default_theme = $this
      ->config('system.theme')
      ->get('default');
    $edit = [
      'id' => strtolower($this
        ->randomMachineName(8)),
      'region' => 'sidebar_first',
      'settings[label]' => $title,
      'visibility[request_path][negate]' => TRUE,
    ];
    
    $this
      ->drupalPostForm('admin/structure/block/add/' . $block_name . '/' . $default_theme, $edit, t('Save block'));
    $this
      ->assertText('The block configuration has been saved.', 'Block was saved');
    $this
      ->drupalGet('user');
    $this
      ->assertNoText($title, 'Block was not displayed according to block visibility rules.');
    $this
      ->drupalGet('USER');
    $this
      ->assertNoText($title, 'Block was not displayed according to block visibility rules regardless of path case.');
    
    $this
      ->drupalLogout();
    $this
      ->drupalGet('');
    $this
      ->assertNoText($title, 'Block was not displayed to anonymous users on the front page.');
  }
  
  public function testAddBlockFromLibraryWithWeight() {
    $default_theme = $this
      ->config('system.theme')
      ->get('default');
    
    foreach ([
      '7',
      '0',
      '-9',
    ] as $weight) {
      $options = [
        'query' => [
          'region' => 'sidebar_first',
          'weight' => $weight,
        ],
      ];
      $this
        ->drupalGet(Url::fromRoute('block.admin_library', [
        'theme' => $default_theme,
      ], $options));
      $block_name = 'system_powered_by_block';
      $add_url = Url::fromRoute('block.admin_add', [
        'plugin_id' => $block_name,
        'theme' => $default_theme,
      ]);
      $links = $this
        ->xpath('//a[contains(@href, :href)]', [
        ':href' => $add_url
          ->toString(),
      ]);
      $this
        ->assertCount(1, $links, 'Found one matching link.');
      $this
        ->assertEqual(t('Place block'), $links[0]
        ->getText(), 'Found the expected link text.');
      list($path, $query_string) = explode('?', $links[0]
        ->getAttribute('href'), 2);
      parse_str($query_string, $query_parts);
      $this
        ->assertEqual($weight, $query_parts['weight'], 'Found the expected weight query string.');
      
      $title = $this
        ->randomMachineName(8);
      $block_id = strtolower($this
        ->randomMachineName(8));
      $edit = [
        'id' => $block_id,
        'settings[label]' => $title,
      ];
      
      $this
        ->drupalPostForm($this
        ->getAbsoluteUrl($links[0]
        ->getAttribute('href')), $edit, t('Save block'));
      
      
      $block = Block::load($block_id);
      $this
        ->assertEqual($weight, $block
        ->getWeight(), 'Found the block with expected weight.');
    }
  }
  
  public function testBlock() {
    
    $this
      ->drupalPlaceBlock('page_title_block');
    
    $this
      ->drupalGet('admin/structure/block');
    $this
      ->clickLink('Disable');
    
    $block = [];
    $block['id'] = 'system_powered_by_block';
    $block['settings[label]'] = $this
      ->randomMachineName(8);
    $block['settings[label_display]'] = TRUE;
    $block['theme'] = $this
      ->config('system.theme')
      ->get('default');
    $block['region'] = 'header';
    
    $this
      ->drupalPostForm('admin/structure/block/add/' . $block['id'] . '/' . $block['theme'], [
      'settings[label]' => $block['settings[label]'],
      'settings[label_display]' => $block['settings[label_display]'],
      'id' => $block['id'],
      'region' => $block['region'],
    ], t('Save block'));
    $this
      ->assertText(t('The block configuration has been saved.'), 'Block title set.');
    
    $instance = Block::load($block['id']);
    $this
      ->assertEqual($instance
      ->label(), $block['settings[label]'], 'Stored block title found.');
    
    foreach ($this->regions as $region) {
      $this
        ->moveBlockToRegion($block, $region);
    }
    
    $this
      ->drupalGet('admin/structure/block');
    $this
      ->clickLink('Disable');
    
    $this
      ->assertText(t('The block settings have been updated.'), 'Block successfully moved to disabled region.');
    
    $this
      ->drupalGet('node');
    $this
      ->assertNoText(t($block['settings[label]']));
    
    $xpath = $this
      ->buildXPathQuery('//div[@id=:id]/*', [
      ':id' => 'block-' . str_replace('_', '-', strtolower($block['id'])),
    ]);
    $this
      ->assertNoFieldByXPath($xpath, FALSE, 'Block found in no regions.');
    
    $this
      ->drupalGet('admin/structure/block/manage/' . $block['id']);
    $this
      ->clickLink(t('Remove block'));
    $this
      ->assertRaw(t('Are you sure you want to remove the block @name?', [
      '@name' => $block['settings[label]'],
    ]));
    $this
      ->drupalPostForm(NULL, [], t('Remove'));
    $this
      ->assertRaw(t('The block %name has been removed.', [
      '%name' => $block['settings[label]'],
    ]));
    
    $block = $this
      ->drupalPlaceBlock('system_powered_by_block');
    $this
      ->drupalGet('admin/structure/block/manage/' . $block
      ->id(), [
      'query' => [
        'destination' => 'admin',
      ],
    ]);
    $this
      ->clickLink(t('Remove block'));
    $this
      ->assertRaw(t('Are you sure you want to remove the block @name?', [
      '@name' => $block
        ->label(),
    ]));
    $this
      ->drupalPostForm(NULL, [], t('Remove'));
    $this
      ->assertRaw(t('The block %name has been removed.', [
      '%name' => $block
        ->label(),
    ]));
    $this
      ->assertUrl('admin');
    $this
      ->assertNoRaw($block
      ->id());
  }
  
  public function testBlockThemeSelector() {
    
    \Drupal::service('theme_installer')
      ->install([
      'bartik',
      'seven',
      'stark',
    ]);
    $theme_settings = $this
      ->config('system.theme');
    foreach ([
      'bartik',
      'seven',
      'stark',
    ] as $theme) {
      $this
        ->drupalGet('admin/structure/block/list/' . $theme);
      $this
        ->assertTitle('Block layout | Drupal');
      
      $block = [];
      $block['id'] = strtolower($this
        ->randomMachineName());
      $block['theme'] = $theme;
      $block['region'] = 'content';
      $this
        ->drupalPostForm('admin/structure/block/add/system_powered_by_block', $block, t('Save block'));
      $this
        ->assertText(t('The block configuration has been saved.'));
      $this
        ->assertUrl('admin/structure/block/list/' . $theme . '?block-placement=' . Html::getClass($block['id']));
      
      $theme_settings
        ->set('default', $theme)
        ->save();
      $this
        ->drupalGet('');
      $elements = $this
        ->xpath('//div[@id = :id]', [
        ':id' => Html::getUniqueId('block-' . $block['id']),
      ]);
      $this
        ->assertTrue(!empty($elements), 'The block was found.');
    }
  }
  
  public function testThemeName() {
    
    $this
      ->drupalPlaceBlock('help_block', [
      'region' => 'help',
    ]);
    $this
      ->drupalPlaceBlock('local_tasks_block');
    
    $theme = 'block_test_specialchars_theme';
    \Drupal::service('theme_installer')
      ->install([
      $theme,
    ]);
    \Drupal::service('router.builder')
      ->rebuild();
    $this
      ->drupalGet('admin/structure/block');
    $this
      ->assertEscaped('<"Cat" & \'Mouse\'>');
    $this
      ->drupalGet('admin/structure/block/list/block_test_specialchars_theme');
    $this
      ->assertEscaped('Demonstrate block regions (<"Cat" & \'Mouse\'>)');
  }
  
  public function testHideBlockTitle() {
    $block_name = 'system_powered_by_block';
    
    $title = $this
      ->randomMachineName(8);
    $id = strtolower($this
      ->randomMachineName(8));
    
    $default_theme = $this
      ->config('system.theme')
      ->get('default');
    $edit = [
      'id' => $id,
      'region' => 'sidebar_first',
      'settings[label]' => $title,
    ];
    $this
      ->drupalPostForm('admin/structure/block/add/' . $block_name . '/' . $default_theme, $edit, t('Save block'));
    $this
      ->assertText('The block configuration has been saved.', 'Block was saved');
    $this
      ->drupalGet('user');
    $this
      ->assertNoText($title, 'Block title was not displayed by default.');
    $edit = [
      'settings[label_display]' => TRUE,
    ];
    $this
      ->drupalPostForm('admin/structure/block/manage/' . $id, $edit, t('Save block'));
    $this
      ->assertText('The block configuration has been saved.', 'Block was saved');
    $this
      ->drupalGet('admin/structure/block/manage/' . $id);
    $this
      ->assertFieldChecked('edit-settings-label-display', 'The display_block option has the correct default value on the configuration form.');
    $this
      ->drupalGet('user');
    $this
      ->assertText($title, 'Block title was displayed when enabled.');
  }
  
  public function moveBlockToRegion(array $block, $region) {
    
    $block += [
      'theme' => $this
        ->config('system.theme')
        ->get('default'),
    ];
    $edit = [];
    $edit['blocks[' . $block['id'] . '][region]'] = $region;
    $this
      ->drupalPostForm('admin/structure/block', $edit, t('Save blocks'));
    
    $this
      ->assertText(t('The block settings have been updated.'), new FormattableMarkup('Block successfully moved to %region_name region.', [
      '%region_name' => $region,
    ]));
    
    $this
      ->drupalGet('');
    $this
      ->assertText(t($block['settings[label]']), 'Block successfully being displayed on the page.');
    
    $xpath = $this
      ->buildXPathQuery('//div[@class=:region-class]//div[@id=:block-id]/*', [
      ':region-class' => 'region region-' . Html::getClass($region),
      ':block-id' => 'block-' . str_replace('_', '-', strtolower($block['id'])),
    ]);
    $this
      ->assertFieldByXPath($xpath, NULL, t('Block found in %region_name region.', [
      '%region_name' => Html::getClass($region),
    ]));
  }
  
  public function testBlockCacheTags() {
    
    $this
      ->drupalLogout();
    
    $config = $this
      ->config('system.performance');
    $config
      ->set('cache.page.max_age', 300);
    $config
      ->save();
    
    $block = $this
      ->drupalPlaceBlock('system_powered_by_block', [
      'id' => 'powered',
    ]);
    
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'MISS');
    
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'HIT');
    $cid_parts = [
      Url::fromRoute('<front>', [], [
        'absolute' => TRUE,
      ])
        ->toString(),
      '',
    ];
    $cid = implode(':', $cid_parts);
    $cache_entry = \Drupal::cache('page')
      ->get($cid);
    $expected_cache_tags = [
      'config:block_list',
      'block_view',
      'config:block.block.powered',
      'config:user.role.anonymous',
      'http_response',
      'rendered',
    ];
    sort($expected_cache_tags);
    $keys = \Drupal::service('cache_contexts_manager')
      ->convertTokensToKeys([
      'languages:language_interface',
      'theme',
      'user.permissions',
    ])
      ->getKeys();
    $this
      ->assertIdentical($cache_entry->tags, $expected_cache_tags);
    $cache_entry = \Drupal::cache('render')
      ->get('entity_view:block:powered:' . implode(':', $keys));
    $expected_cache_tags = [
      'block_view',
      'config:block.block.powered',
      'rendered',
    ];
    sort($expected_cache_tags);
    $this
      ->assertIdentical($cache_entry->tags, $expected_cache_tags);
    
    $block
      ->setRegion('content');
    $block
      ->save();
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'MISS');
    
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'HIT');
    
    $this
      ->drupalPlaceBlock('system_powered_by_block', [
      'id' => 'powered-2',
    ]);
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'MISS');
    
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'HIT');
    $cid_parts = [
      Url::fromRoute('<front>', [], [
        'absolute' => TRUE,
      ])
        ->toString(),
      '',
    ];
    $cid = implode(':', $cid_parts);
    $cache_entry = \Drupal::cache('page')
      ->get($cid);
    $expected_cache_tags = [
      'config:block_list',
      'block_view',
      'config:block.block.powered',
      'config:block.block.powered-2',
      'config:user.role.anonymous',
      'http_response',
      'rendered',
    ];
    sort($expected_cache_tags);
    $this
      ->assertEqual($cache_entry->tags, $expected_cache_tags);
    $expected_cache_tags = [
      'block_view',
      'config:block.block.powered',
      'rendered',
    ];
    sort($expected_cache_tags);
    $keys = \Drupal::service('cache_contexts_manager')
      ->convertTokensToKeys([
      'languages:language_interface',
      'theme',
      'user.permissions',
    ])
      ->getKeys();
    $cache_entry = \Drupal::cache('render')
      ->get('entity_view:block:powered:' . implode(':', $keys));
    $this
      ->assertIdentical($cache_entry->tags, $expected_cache_tags);
    $expected_cache_tags = [
      'block_view',
      'config:block.block.powered-2',
      'rendered',
    ];
    sort($expected_cache_tags);
    $keys = \Drupal::service('cache_contexts_manager')
      ->convertTokensToKeys([
      'languages:language_interface',
      'theme',
      'user.permissions',
    ])
      ->getKeys();
    $cache_entry = \Drupal::cache('render')
      ->get('entity_view:block:powered-2:' . implode(':', $keys));
    $this
      ->assertIdentical($cache_entry->tags, $expected_cache_tags);
    
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'HIT');
    
    $block_storage = \Drupal::entityTypeManager()
      ->getStorage('block');
    $block_storage
      ->load('powered')
      ->delete();
    $block_storage
      ->load('powered-2')
      ->delete();
    $this
      ->drupalGet('<front>');
    $this
      ->assertEqual($this
      ->drupalGetHeader('X-Drupal-Cache'), 'MISS');
  }
  
  public function testThemeAdminLink() {
    $this
      ->drupalPlaceBlock('help_block', [
      'region' => 'help',
    ]);
    $theme_admin = $this
      ->drupalCreateUser([
      'administer blocks',
      'administer themes',
      'access administration pages',
    ]);
    $this
      ->drupalLogin($theme_admin);
    $this
      ->drupalGet('admin/appearance');
    $this
      ->assertText('You can place blocks for each theme on the block layout page');
    $this
      ->assertLinkByHref('admin/structure/block');
  }
  
  public function testUninstallTheme() {
    
    $theme_installer = \Drupal::service('theme_installer');
    $theme_installer
      ->install([
      'seven',
    ]);
    $this
      ->config('system.theme')
      ->set('default', 'seven')
      ->save();
    $block = $this
      ->drupalPlaceBlock('system_powered_by_block', [
      'theme' => 'seven',
      'region' => 'help',
    ]);
    $this
      ->drupalGet('<front>');
    $this
      ->assertText('Powered by Drupal');
    $this
      ->config('system.theme')
      ->set('default', 'classy')
      ->save();
    $theme_installer
      ->uninstall([
      'seven',
    ]);
    
    $this
      ->assertIdentical(NULL, Block::load($block
      ->id()));
  }
  
  public function testBlockAccess() {
    $this
      ->drupalPlaceBlock('test_access', [
      'region' => 'help',
    ]);
    $this
      ->drupalGet('<front>');
    $this
      ->assertNoText('Hello test world');
    \Drupal::state()
      ->set('test_block_access', TRUE);
    $this
      ->drupalGet('<front>');
    $this
      ->assertText('Hello test world');
  }
  
  public function testBlockUserRoleDelete() {
    $role1 = Role::create([
      'id' => 'test_role1',
      'name' => $this
        ->randomString(),
    ]);
    $role1
      ->save();
    $role2 = Role::create([
      'id' => 'test_role2',
      'name' => $this
        ->randomString(),
    ]);
    $role2
      ->save();
    $block = Block::create([
      'id' => $this
        ->randomMachineName(),
      'plugin' => 'system_powered_by_block',
    ]);
    $block
      ->setVisibilityConfig('user_role', [
      'roles' => [
        $role1
          ->id() => $role1
          ->id(),
        $role2
          ->id() => $role2
          ->id(),
      ],
    ]);
    $block
      ->save();
    $this
      ->assertEqual($block
      ->getVisibility()['user_role']['roles'], [
      $role1
        ->id() => $role1
        ->id(),
      $role2
        ->id() => $role2
        ->id(),
    ]);
    $role1
      ->delete();
    $block = Block::load($block
      ->id());
    $this
      ->assertEqual($block
      ->getVisibility()['user_role']['roles'], [
      $role2
        ->id() => $role2
        ->id(),
    ]);
  }
}