class WebformSubmissionAccessTest in Webform 6.x
Same name and namespace in other branches
- 8.5 tests/src/Unit/Access/WebformSubmissionAccessTest.php \Drupal\Tests\webform\Unit\Access\WebformSubmissionAccessTest
@coversDefaultClass \Drupal\webform\Access\WebformSubmissionAccess
@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\WebformSubmissionAccessTest
- class \Drupal\Tests\webform\Unit\Access\WebformAccessTestBase
Expanded class hierarchy of WebformSubmissionAccessTest
File
- tests/
src/ Unit/ Access/ WebformSubmissionAccessTest.php, line 14
Namespace
Drupal\Tests\webform\Unit\AccessView source
class WebformSubmissionAccessTest extends WebformAccessTestBase {
/**
* Tests the check webform submission access.
*
* @covers ::checkResendAccess
* @covers ::checkWizardPagesAccess
*/
public function testWebformSubmissionAccess() {
// Mock Drupal service container.
$this->container = new ContainerBuilder();
\Drupal::setContainer($this->container);
// Mock module handler.
$module_handler = $this
->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$module_handler
->expects($this
->any())
->method('moduleExists')
->will($this
->returnValue(FALSE));
$this->container
->set('module_handler', $module_handler);
// Mock anonymous account.
$anonymous_account = $this
->mockAccount();
// Mock submission account.
$submission_account = $this
->mockAccount([
'access webform overview' => TRUE,
'view any webform submission' => TRUE,
]);
// Mock webform.
$webform = $this
->createMock('Drupal\\webform\\WebformInterface');
// Mock webform submission.
$webform_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$webform_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($webform));
// Mock message handler.
$message_handler = $this
->createMock('\\Drupal\\webform\\Plugin\\WebformHandlerMessageInterface');
// Mock email webform.
$email_webform = $this
->createMock('Drupal\\webform\\WebformInterface');
$email_webform
->expects($this
->any())
->method('getHandlers')
->will($this
->returnValue([
$message_handler,
]));
$email_webform
->expects($this
->any())
->method('access')
->with('submission_update_any')
->will($this
->returnValue(TRUE));
$email_webform
->expects($this
->any())
->method('hasMessageHandler')
->will($this
->returnValue(TRUE));
// Mock email webform submission.
$email_webform_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$email_webform_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($email_webform));
// Mock webform wizard.
$webform_wizard = $this
->createMock('Drupal\\webform\\WebformInterface');
$webform_wizard
->expects($this
->any())
->method('hasWizardPages')
->will($this
->returnValue(TRUE));
// Mock webform wizard submission.
$webform_wizard_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$webform_wizard_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($webform_wizard));
/**************************************************************************/
// Check resend (email) message access.
$this
->assertEquals(AccessResult::forbidden(), WebformSubmissionAccess::checkResendAccess($webform_submission, $anonymous_account));
$this
->assertEquals(AccessResult::allowed(), WebformSubmissionAccess::checkResendAccess($email_webform_submission, $submission_account));
// Check wizard page access.
$this
->assertEquals(AccessResult::neutral(), WebformSubmissionAccess::checkWizardPagesAccess($webform_submission));
$this
->assertEquals(AccessResult::allowed(), WebformSubmissionAccess::checkWizardPagesAccess($webform_wizard_submission));
}
}
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:: |
|
WebformSubmissionAccessTest:: |
public | function | Tests the check webform submission access. |