installEntitySchema('entity_test_enhanced'); // Create uid: 1 here so that it's skipped in test cases. $admin_user = $this->createUser(); $entity_type_manager = $this->container->get('entity_type.manager'); $entity_type = $entity_type_manager->getDefinition('entity_test_enhanced'); $this->handler = QueryAccessHandler::createInstance($this->container, $entity_type); } /** * Tests the event. */ public function testEvent() { // By default, the first user should have full access, and the second // user should have no access. The QueryAccessSubscriber flips that. $first_user = $this->createUser(['mail' => 'user1@example.com'], ['administer entity_test_enhanced']); $second_user = $this->createUser(['mail' => 'user2@example.com']); $conditions = $this->handler->getConditions('view', $first_user); $this->assertTrue($conditions->isAlwaysFalse()); $conditions = $this->handler->getConditions('view', $second_user); $this->assertFalse($conditions->isAlwaysFalse()); } }