WebformSubmissionAccessTest.php in Webform 6.x
File
tests/src/Unit/Access/WebformSubmissionAccessTest.php
View source
<?php
namespace Drupal\Tests\webform\Unit\Access;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\webform\Access\WebformSubmissionAccess;
class WebformSubmissionAccessTest extends WebformAccessTestBase {
public function testWebformSubmissionAccess() {
$this->container = new ContainerBuilder();
\Drupal::setContainer($this->container);
$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);
$anonymous_account = $this
->mockAccount();
$submission_account = $this
->mockAccount([
'access webform overview' => TRUE,
'view any webform submission' => TRUE,
]);
$webform = $this
->createMock('Drupal\\webform\\WebformInterface');
$webform_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$webform_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($webform));
$message_handler = $this
->createMock('\\Drupal\\webform\\Plugin\\WebformHandlerMessageInterface');
$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));
$email_webform_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$email_webform_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($email_webform));
$webform_wizard = $this
->createMock('Drupal\\webform\\WebformInterface');
$webform_wizard
->expects($this
->any())
->method('hasWizardPages')
->will($this
->returnValue(TRUE));
$webform_wizard_submission = $this
->createMock('Drupal\\webform\\WebformSubmissionInterface');
$webform_wizard_submission
->expects($this
->any())
->method('getWebform')
->will($this
->returnValue($webform_wizard));
$this
->assertEquals(AccessResult::forbidden(), WebformSubmissionAccess::checkResendAccess($webform_submission, $anonymous_account));
$this
->assertEquals(AccessResult::allowed(), WebformSubmissionAccess::checkResendAccess($email_webform_submission, $submission_account));
$this
->assertEquals(AccessResult::neutral(), WebformSubmissionAccess::checkWizardPagesAccess($webform_submission));
$this
->assertEquals(AccessResult::allowed(), WebformSubmissionAccess::checkWizardPagesAccess($webform_wizard_submission));
}
}