class WebformSourceEntityAccessTest in Webform 6.x
Same name and namespace in other branches
- 8.5 tests/src/Unit/Access/WebformSourceEntityAccessTest.php \Drupal\Tests\webform\Unit\Access\WebformSourceEntityAccessTest
@coversDefaultClass \Drupal\webform\Access\WebformSourceEntityAccess
@group webform
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\webform\Unit\Access\WebformAccessTestBase
- class \Drupal\Tests\webform\Unit\Access\WebformSourceEntityAccessTest
- class \Drupal\Tests\webform\Unit\Access\WebformAccessTestBase
Expanded class hierarchy of WebformSourceEntityAccessTest
File
- tests/
src/ Unit/ Access/ WebformSourceEntityAccessTest.php, line 13
Namespace
Drupal\Tests\webform\Unit\AccessView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
public static | function | ||
WebformAccessTestBase:: |
protected | property | The test container. | |
WebformAccessTestBase:: |
protected | function | Create a mock account with permissions. | |
WebformAccessTestBase:: |
protected | function |
Overrides UnitTestCase:: |
|
WebformSourceEntityAccessTest:: |
public | function | Tests the check webform source entity access. |