EntityAccessCheckTest.php

Contains \Drupal\Tests\Core\Entity\EntityAccessCheckTest.

Namespace

Drupal\Tests\Core\Entity

File

drupal/core/tests/Drupal/Tests/Core/Entity/EntityAccessCheckTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\Core\Entity\EntityAccessCheckTest.
 */
namespace Drupal\Tests\Core\Entity;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Route;
use Drupal\Core\Entity\EntityAccessCheck;
use Drupal\Tests\UnitTestCase;

/**
 * Tests the entity access controller.
 *
 * @group Entity
 */
class EntityAccessCheckTest extends UnitTestCase {
  public static function getInfo() {
    return array(
      'name' => 'Entity access check test',
      'description' => 'Unit test of entity access checking system.',
      'group' => 'Entity',
    );
  }

  /**
   * Tests the method for checking if the access check applies to a route.
   */
  public function testApplies() {
    $applies_check = new EntityAccessCheck();
    $route = $this
      ->getMockBuilder('Symfony\\Component\\Routing\\Route')
      ->disableOriginalConstructor()
      ->getMock();
    $route
      ->expects($this
      ->any())
      ->method('getRequirements')
      ->will($this
      ->returnValue(array(
      '_entity_access' => '',
    )));
    $res = $applies_check
      ->applies($route);
    $this
      ->assertEquals(TRUE, $res);
    $route = $this
      ->getMockBuilder('Symfony\\Component\\Routing\\Route')
      ->disableOriginalConstructor()
      ->getMock();
    $route
      ->expects($this
      ->any())
      ->method('getRequirements')
      ->will($this
      ->returnValue(array()));
    $res = $applies_check
      ->applies($route);
    $this
      ->assertEquals(FALSE, $res);
  }

  /**
   * Tests the method for checking access to routes.
   */
  public function testAccess() {
    $route = new Route('/foo', array(), array(
      '_entity_access' => 'node.update',
    ));
    $request = new Request();
    $node = $this
      ->getMockBuilder('Drupal\\node\\Plugin\\Core\\Entity\\Node')
      ->disableOriginalConstructor()
      ->getMock();
    $node
      ->expects($this
      ->any())
      ->method('access')
      ->will($this
      ->returnValue(TRUE));
    $access_check = new EntityAccessCheck();
    $request->attributes
      ->set('node', $node);
    $access = $access_check
      ->access($route, $request);
    $this
      ->assertEquals(TRUE, $access);
  }

}

Classes

Namesort descending Description
EntityAccessCheckTest Tests the entity access controller.