You are here

public function ContextualFiltersBlockContextTest::testBlockContext in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php \Drupal\Tests\views\Functional\Plugin\ContextualFiltersBlockContextTest::testBlockContext()
  2. 10 core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php \Drupal\Tests\views\Functional\Plugin\ContextualFiltersBlockContextTest::testBlockContext()

Tests exposed context.

File

core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php, line 83

Class

ContextualFiltersBlockContextTest
A test for contextual filters exposed as block context.

Namespace

Drupal\Tests\views\Functional\Plugin

Code

public function testBlockContext() {
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'administer views',
    'administer blocks',
  ]));

  // Check if context was correctly propagated to the block.
  $definition = $this->container
    ->get('plugin.manager.block')
    ->getDefinition('views_block:test_view_block_with_context-block_1');
  $this
    ->assertInstanceOf(ContextDefinitionInterface::class, $definition['context_definitions']['nid']);

  /** @var \Drupal\Core\Plugin\Context\ContextDefinitionInterface $context */
  $context = $definition['context_definitions']['nid'];
  $this
    ->assertEqual($context
    ->getDataType(), 'entity:node', 'Context definition data type is correct.');
  $this
    ->assertEqual($context
    ->getLabel(), 'Content: ID', 'Context definition label is correct.');
  $this
    ->assertFalse($context
    ->isRequired(), 'Context is not required.');

  // Place test block via block UI to check if contexts are correctly exposed.
  $this
    ->drupalGet('admin/structure/block/add/views_block:test_view_block_with_context-block_1/classy', [
    'query' => [
      'region' => 'content',
    ],
  ]);
  $edit = [
    'settings[context_mapping][nid]' => '@node.node_route_context:node',
  ];
  $this
    ->drupalPostForm(NULL, $edit, 'Save block');

  // Check if mapping saved correctly.

  /** @var \Drupal\block\BlockInterface $block */
  $block = $this->container
    ->get('entity_type.manager')
    ->getStorage('block')
    ->load('views_block__test_view_block_with_context_block_1');
  $expected_settings = [
    'id' => 'views_block:test_view_block_with_context-block_1',
    'label' => '',
    'provider' => 'views',
    'label_display' => 'visible',
    'views_label' => '',
    'items_per_page' => 'none',
    'context_mapping' => [
      'nid' => '@node.node_route_context:node',
    ],
  ];
  $this
    ->assertEqual($block
    ->getPlugin()
    ->getConfiguration(), $expected_settings, 'Block settings are correct.');

  // Make sure view behaves as expected.
  $this
    ->drupalGet('<front>');
  $this
    ->assertText('Test view: No results found.');
  $this
    ->drupalGet($this->nodes[0]
    ->toUrl());
  $this
    ->assertText('Test view row: First test node');
  $this
    ->drupalGet($this->nodes[1]
    ->toUrl());
  $this
    ->assertText('Test view row: Second test node');

  // Check the second block which should expose two integer contexts, one
  // based on the numeric plugin and the other based on numeric validation.
  $definition = $this->container
    ->get('plugin.manager.block')
    ->getDefinition('views_block:test_view_block_with_context-block_2');
  $this
    ->assertInstanceOf(ContextDefinitionInterface::class, $definition['context_definitions']['created']);

  /** @var \Drupal\Core\Plugin\Context\ContextDefinitionInterface $context */
  $context = $definition['context_definitions']['created'];
  $this
    ->assertEqual($context
    ->getDataType(), 'integer', 'Context definition data type is correct.');
  $this
    ->assertEqual($context
    ->getLabel(), 'Content: Authored on', 'Context definition label is correct.');
  $this
    ->assertFalse($context
    ->isRequired(), 'Context is not required.');
  $this
    ->assertInstanceOf(ContextDefinitionInterface::class, $definition['context_definitions']['vid']);

  /** @var \Drupal\Core\Plugin\Context\ContextDefinitionInterface $context */
  $context = $definition['context_definitions']['vid'];
  $this
    ->assertEqual($context
    ->getDataType(), 'integer', 'Context definition data type is correct.');
  $this
    ->assertEqual($context
    ->getLabel(), 'Content: Revision ID', 'Context definition label is correct.');
  $this
    ->assertFalse($context
    ->isRequired(), 'Context is not required.');
  $this
    ->assertInstanceOf(ContextDefinitionInterface::class, $definition['context_definitions']['title']);

  /** @var \Drupal\Core\Plugin\Context\ContextDefinitionInterface $context */
  $context = $definition['context_definitions']['title'];
  $this
    ->assertEqual($context
    ->getDataType(), 'string', 'Context definition data type is correct.');
  $this
    ->assertEqual($context
    ->getLabel(), 'Content: Title', 'Context definition label is correct.');
  $this
    ->assertFalse($context
    ->isRequired(), 'Context is not required.');
}