class WebformAccountAccessTest in Webform 8.5
Same name and namespace in other branches
- 6.x tests/src/Unit/Access/WebformAccountAccessTest.php \Drupal\Tests\webform\Unit\Access\WebformAccountAccessTest
@coversDefaultClass \Drupal\webform\Access\WebformAccountAccess
@group webform
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\webform\Unit\Access\WebformAccessTestBase
- class \Drupal\Tests\webform\Unit\Access\WebformAccountAccessTest
- class \Drupal\Tests\webform\Unit\Access\WebformAccessTestBase
Expanded class hierarchy of WebformAccountAccessTest
File
- tests/
src/ Unit/ Access/ WebformAccountAccessTest.php, line 13
Namespace
Drupal\Tests\webform\Unit\AccessView source
class WebformAccountAccessTest extends WebformAccessTestBase {
/**
* Tests the check webform account access.
*
* @covers ::checkAdminAccess
* @covers ::checkSubmissionAccess
* @covers ::checkOverviewAccess
*/
public function testWebformAccountAccess() {
// Mock anonymous account.
$anonymous_account = $this
->mockAccount();
// Mock admin account.
$admin_account = $this
->mockAccount([
'administer webform' => TRUE,
'administer webform submission' => TRUE,
]);
// Mock submission account.
$submission_account = $this
->mockAccount([
'access webform overview' => TRUE,
'view any webform submission' => TRUE,
]);
/**************************************************************************/
// Check admin access.
$this
->assertEquals(AccessResult::neutral()
->cachePerPermissions(), WebformAccountAccess::checkAdminAccess($anonymous_account)
->setReason(''));
$this
->assertEquals(AccessResult::allowed()
->cachePerPermissions(), WebformAccountAccess::checkAdminAccess($admin_account));
// Check submission access.
$this
->assertEquals(AccessResult::neutral()
->cachePerPermissions(), WebformAccountAccess::checkSubmissionAccess($anonymous_account)
->setReason(''));
$this
->assertEquals(AccessResult::allowed()
->cachePerPermissions(), WebformAccountAccess::checkSubmissionAccess($submission_account));
// Check overview access.
$this
->assertEquals(AccessResult::neutral()
->cachePerPermissions(), WebformAccountAccess::checkOverviewAccess($anonymous_account)
->setReason(''));
$this
->assertEquals(AccessResult::allowed()
->cachePerPermissions(), WebformAccountAccess::checkOverviewAccess($submission_account));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
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 | Mocks a block with a block plugin. | 1 |
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. | |
WebformAccessTestBase:: |
protected | property | The test container. | |
WebformAccessTestBase:: |
protected | function | Create a mock account with permissions. | |
WebformAccessTestBase:: |
protected | function |
Overrides UnitTestCase:: |
|
WebformAccountAccessTest:: |
public | function | Tests the check webform account access. |