You are here

public function QueryAccessTest::testViews in Entity API 8

Tests Views filtering.

File

tests/src/Kernel/QueryAccess/QueryAccessTest.php, line 192

Class

QueryAccessTest
Test query access filtering for EntityQuery and Views.

Namespace

Drupal\Tests\entity\Kernel\QueryAccess

Code

public function testViews() {

  // Admin permission, full access.
  $admin_user = $this
    ->createUser([], [
    'administer entity_test_enhanced',
  ]);
  $this->container
    ->get('current_user')
    ->setAccount($admin_user);
  $view = Views::getView('entity_test_enhanced');
  $view
    ->execute();
  $this
    ->assertIdenticalResultset($view, [
    [
      'id' => $this->entities[0]
        ->id(),
    ],
    [
      'id' => $this->entities[1]
        ->id(),
    ],
    [
      'id' => $this->entities[2]
        ->id(),
    ],
  ], [
    'id' => 'id',
  ]);

  // No view permissions, no access.
  $user = $this
    ->createUser([], [
    'access content',
  ]);
  $this->container
    ->get('current_user')
    ->setAccount($user);
  $view = Views::getView('entity_test_enhanced');
  $view
    ->execute();
  $this
    ->assertIdenticalResultset($view, []);

  // View (published-only).
  $user = $this
    ->createUser([], [
    'view entity_test_enhanced',
  ]);
  $this->container
    ->get('current_user')
    ->setAccount($user);
  $view = Views::getView('entity_test_enhanced');
  $view
    ->execute();
  $this
    ->assertIdenticalResultset($view, [
    [
      'id' => $this->entities[1]
        ->id(),
    ],
    [
      'id' => $this->entities[2]
        ->id(),
    ],
  ], [
    'id' => 'id',
  ]);

  // View $bundle (published-only).
  $user = $this
    ->createUser([], [
    'view first entity_test_enhanced',
  ]);
  $this->container
    ->get('current_user')
    ->setAccount($user);
  $view = Views::getView('entity_test_enhanced');
  $view
    ->execute();
  $this
    ->assertIdenticalResultset($view, [
    [
      'id' => $this->entities[1]
        ->id(),
    ],
  ], [
    'id' => 'id',
  ]);
}