You are here

class WebformSourceEntityAccessTest in Webform 6.x

Same name and namespace in other branches
  1. 8.5 tests/src/Unit/Access/WebformSourceEntityAccessTest.php \Drupal\Tests\webform\Unit\Access\WebformSourceEntityAccessTest

@coversDefaultClass \Drupal\webform\Access\WebformSourceEntityAccess

@group webform

Hierarchy

Expanded class hierarchy of WebformSourceEntityAccessTest

File

tests/src/Unit/Access/WebformSourceEntityAccessTest.php, line 13

Namespace

Drupal\Tests\webform\Unit\Access
View source
class WebformSourceEntityAccessTest extends WebformAccessTestBase {

  /**
   * Tests the check webform source entity access.
   *
   * @covers ::checkEntityResultsAccess
   */
  public function testWebformSourceEntityAccess() {

    // Mock anonymous account.
    $anonymous_account = $this
      ->mockAccount();

    // Mock submission account.
    $submission_account = $this
      ->mockAccount([
      'access webform overview' => TRUE,
      'view any webform submission' => TRUE,
    ]);

    // Mock node.
    $node = $this
      ->getMockBuilder('Drupal\\node\\NodeInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $node
      ->expects($this
      ->any())
      ->method('access')
      ->willReturn(AccessResult::neutral());

    // Mock webform.
    $webform = $this
      ->createMock('Drupal\\webform\\WebformInterface');

    // Mock webform node.
    $webform_node = $this
      ->getMockBuilder('Drupal\\node\\NodeInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $webform_node
      ->expects($this
      ->any())
      ->method('access')
      ->willReturn(AccessResult::allowed());

    // Mock entity reference manager.
    $entity_reference_manager = $this
      ->getMockBuilder('Drupal\\webform\\WebformEntityReferenceManagerInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $entity_reference_manager
      ->expects($this
      ->any())
      ->method('getWebform')
      ->will($this
      ->returnValueMap([
      [
        $node,
        NULL,
      ],
      [
        $webform_node,
        $webform,
      ],
    ]));
    $this->container
      ->set('webform.entity_reference_manager', $entity_reference_manager);

    /**************************************************************************/

    // Check entity results access.
    $this
      ->assertEquals(AccessResult::neutral(), WebformSourceEntityAccess::checkEntityResultsAccess($node, $anonymous_account));
    $this
      ->assertEquals(AccessResult::allowed(), WebformSourceEntityAccess::checkEntityResultsAccess($webform_node, $submission_account));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed 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.
UnitTestCase::setUpBeforeClass public static function
WebformAccessTestBase::$container protected property The test container.
WebformAccessTestBase::mockAccount protected function Create a mock account with permissions.
WebformAccessTestBase::setUp protected function Overrides UnitTestCase::setUp
WebformSourceEntityAccessTest::testWebformSourceEntityAccess public function Tests the check webform source entity access.