You are here

class ContentTranslationManageAccessCheckTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/content_translation/tests/src/Unit/Access/ContentTranslationManageAccessCheckTest.php \Drupal\Tests\content_translation\Unit\Access\ContentTranslationManageAccessCheckTest

Tests for content translation manage check.

@coversDefaultClass \Drupal\content_translation\Access\ContentTranslationManageAccessCheck @group Access @group content_translation

Hierarchy

Expanded class hierarchy of ContentTranslationManageAccessCheckTest

File

core/modules/content_translation/tests/src/Unit/Access/ContentTranslationManageAccessCheckTest.php, line 25
Contains \Drupal\Tests\content_translation\Unit\Access\ContentTranslationManageAccessCheckTest.

Namespace

Drupal\Tests\content_translation\Unit\Access
View source
class ContentTranslationManageAccessCheckTest extends UnitTestCase {

  /**
   * The cache contexts manager.
   *
   * @var \Drupal\Core\Cache\Context\CacheContextsManager|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $cacheContextsManager;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->cacheContextsManager = $this
      ->getMockBuilder('Drupal\\Core\\Cache\\Context\\CacheContextsManager')
      ->disableOriginalConstructor()
      ->getMock();
    $this->cacheContextsManager
      ->method('assertValidTokens')
      ->willReturn(TRUE);
    $container = new ContainerBuilder();
    $container
      ->set('cache_contexts_manager', $this->cacheContextsManager);
    \Drupal::setContainer($container);
  }

  /**
   * Tests the create access method.
   *
   * @covers ::access
   */
  public function testCreateAccess() {

    // Set the mock translation handler.
    $translation_handler = $this
      ->getMock('\\Drupal\\content_translation\\ContentTranslationHandlerInterface');
    $translation_handler
      ->expects($this
      ->once())
      ->method('getTranslationAccess')
      ->will($this
      ->returnValue(AccessResult::allowed()));
    $entity_manager = $this
      ->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
    $entity_manager
      ->expects($this
      ->once())
      ->method('getHandler')
      ->withAnyParameters()
      ->will($this
      ->returnValue($translation_handler));

    // Set our source and target languages.
    $source = 'en';
    $target = 'it';

    // Set the mock language manager.
    $language_manager = $this
      ->getMock('Drupal\\Core\\Language\\LanguageManagerInterface');
    $language_manager
      ->expects($this
      ->at(0))
      ->method('getLanguage')
      ->with($this
      ->equalTo($source))
      ->will($this
      ->returnValue(new Language(array(
      'id' => 'en',
    ))));
    $language_manager
      ->expects($this
      ->at(1))
      ->method('getLanguages')
      ->will($this
      ->returnValue(array(
      'en' => array(),
      'it' => array(),
    )));
    $language_manager
      ->expects($this
      ->at(2))
      ->method('getLanguage')
      ->with($this
      ->equalTo($source))
      ->will($this
      ->returnValue(new Language(array(
      'id' => 'en',
    ))));
    $language_manager
      ->expects($this
      ->at(3))
      ->method('getLanguage')
      ->with($this
      ->equalTo($target))
      ->will($this
      ->returnValue(new Language(array(
      'id' => 'it',
    ))));

    // Set the mock entity. We need to use ContentEntityBase for mocking due to
    // issues with phpunit and multiple interfaces.
    $entity = $this
      ->getMockBuilder('Drupal\\Core\\Entity\\ContentEntityBase')
      ->disableOriginalConstructor()
      ->getMock();
    $entity
      ->expects($this
      ->once())
      ->method('getEntityTypeId');
    $entity
      ->expects($this
      ->once())
      ->method('getTranslationLanguages')
      ->with()
      ->will($this
      ->returnValue(array()));
    $entity
      ->expects($this
      ->once())
      ->method('getCacheContexts')
      ->willReturn([]);
    $entity
      ->expects($this
      ->once())
      ->method('getCacheMaxAge')
      ->willReturn(Cache::PERMANENT);
    $entity
      ->expects($this
      ->once())
      ->method('getCacheTags')
      ->will($this
      ->returnValue(array(
      'node:1337',
    )));
    $entity
      ->expects($this
      ->once())
      ->method('getCacheContexts')
      ->willReturn(array());

    // Set the route requirements.
    $route = new Route('test_route');
    $route
      ->setRequirement('_access_content_translation_manage', 'create');

    // Set up the route match.
    $route_match = $this
      ->getMock('Drupal\\Core\\Routing\\RouteMatchInterface');
    $route_match
      ->expects($this
      ->once())
      ->method('getParameter')
      ->with('node')
      ->will($this
      ->returnValue($entity));

    // Set the mock account.
    $account = $this
      ->getMock('Drupal\\Core\\Session\\AccountInterface');

    // The access check under test.
    $check = new ContentTranslationManageAccessCheck($entity_manager, $language_manager);

    // The request params.
    $language = 'en';
    $entity_type_id = 'node';
    $this
      ->assertTrue($check
      ->access($route, $route_match, $account, $source, $target, $language, $entity_type_id)
      ->isAllowed(), "The access check matches");
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ContentTranslationManageAccessCheckTest::$cacheContextsManager protected property The cache contexts manager.
ContentTranslationManageAccessCheckTest::setUp protected function Overrides UnitTestCase::setUp
ContentTranslationManageAccessCheckTest::testCreateAccess public function Tests the create access method.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.