You are here

class WebformSubmissionAccessTest in Webform 6.x

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

@coversDefaultClass \Drupal\webform\Access\WebformSubmissionAccess

@group webform

Hierarchy

Expanded class hierarchy of WebformSubmissionAccessTest

File

tests/src/Unit/Access/WebformSubmissionAccessTest.php, line 14

Namespace

Drupal\Tests\webform\Unit\Access
View 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

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
WebformSubmissionAccessTest::testWebformSubmissionAccess public function Tests the check webform submission access.