function WorkflowStateTransitionOperationsAccessCheckTest::testInvalidOperationName

Same name and namespace in other branches
  1. 9 core/modules/workflows/tests/src/Unit/WorkflowStateTransitionOperationsAccessCheckTest.php \Drupal\Tests\workflows\Unit\WorkflowStateTransitionOperationsAccessCheckTest::testInvalidOperationName()
  2. 8.9.x core/modules/workflows/tests/src/Unit/WorkflowStateTransitionOperationsAccessCheckTest.php \Drupal\Tests\workflows\Unit\WorkflowStateTransitionOperationsAccessCheckTest::testInvalidOperationName()
  3. 11.x core/modules/workflows/tests/src/Unit/WorkflowStateTransitionOperationsAccessCheckTest.php \Drupal\Tests\workflows\Unit\WorkflowStateTransitionOperationsAccessCheckTest::testInvalidOperationName()

@covers ::access
@dataProvider invalidOperationNameTestCases

File

core/modules/workflows/tests/src/Unit/WorkflowStateTransitionOperationsAccessCheckTest.php, line 129

Class

WorkflowStateTransitionOperationsAccessCheckTest
@coversDefaultClass \Drupal\workflows\WorkflowStateTransitionOperationsAccessCheck[[api-linebreak]] @group workflows

Namespace

Drupal\Tests\workflows\Unit

Code

public function testInvalidOperationName($operation_name) : void {
  $this->expectException(\Exception::class);
  $this->expectExceptionMessage("Invalid _workflow_access operation '{$operation_name}' specified for route 'Foo Route'.");
  $route = new Route('', [], [
    '_workflow_access' => $operation_name,
  ]);
  $access_check = new WorkflowStateTransitionOperationsAccessCheck();
  $account = $this->prophesize(AccountInterface::class);
  $access_check->access(new RouteMatch('Foo Route', $route, []), $account->reveal());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.