You are here

class WorkflowStateTransitionOperationsAccessCheckTest in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/workflows/tests/src/Unit/WorkflowStateTransitionOperationsAccessCheckTest.php \Drupal\Tests\workflows\Unit\WorkflowStateTransitionOperationsAccessCheckTest

@coversDefaultClass \Drupal\workflows\WorkflowStateTransitionOperationsAccessCheck @group workflows

Hierarchy

Expanded class hierarchy of WorkflowStateTransitionOperationsAccessCheckTest

File

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

Namespace

Drupal\Tests\workflows\Unit
View source
class WorkflowStateTransitionOperationsAccessCheckTest extends UnitTestCase {

  /**
   * Tests the access method correctly proxies to the entity access system.
   *
   * @covers ::access
   * @dataProvider accessTestCases
   */
  public function testAccess($route_requirement, $resulting_entity_access_check, $route_parameters = []) {
    $workflow_entity_access_result = AccessResult::allowed();
    $workflow = $this
      ->prophesize(WorkflowInterface::class);
    $workflow
      ->access($resulting_entity_access_check, Argument::type(AccountInterface::class), TRUE)
      ->shouldBeCalled()
      ->willReturn($workflow_entity_access_result);
    $route = new Route('', [
      'workflow' => NULL,
      'workflow_transition' => NULL,
      'workflow_state' => NULL,
    ], [
      '_workflow_access' => $route_requirement,
    ]);
    $route_match_params = [
      'workflow' => $workflow
        ->reveal(),
    ] + $route_parameters;
    $route_match = new RouteMatch(NULL, $route, $route_match_params);
    $access_check = new WorkflowStateTransitionOperationsAccessCheck();
    $account = $this
      ->prophesize(AccountInterface::class);
    $this
      ->assertEquals($workflow_entity_access_result, $access_check
      ->access($route_match, $account
      ->reveal()));
  }

  /**
   * Test cases for ::testAccess.
   */
  public function accessTestCases() {
    return [
      'Transition add' => [
        'add-transition',
        'add-transition',
      ],
      'Transition update' => [
        'update-transition',
        'update-transition:foo-transition',
        [
          'workflow_transition' => 'foo-transition',
        ],
      ],
      'Transition delete' => [
        'delete-transition',
        'delete-transition:foo-transition',
        [
          'workflow_transition' => 'foo-transition',
        ],
      ],
      'State add' => [
        'add-state',
        'add-state',
      ],
      'State update' => [
        'update-state',
        'update-state:bar-state',
        [
          'workflow_state' => 'bar-state',
        ],
      ],
      'State delete' => [
        'delete-state',
        'delete-state:bar-state',
        [
          'workflow_state' => 'bar-state',
        ],
      ],
    ];
  }

  /**
   * @covers ::access
   */
  public function testMissingRouteParams() {
    $workflow = $this
      ->prophesize(WorkflowInterface::class);
    $workflow
      ->access()
      ->shouldNotBeCalled();
    $route = new Route('', [
      'workflow' => NULL,
      'workflow_state' => NULL,
    ], [
      '_workflow_access' => 'update-state',
    ]);
    $access_check = new WorkflowStateTransitionOperationsAccessCheck();
    $account = $this
      ->prophesize(AccountInterface::class);
    $missing_both = new RouteMatch(NULL, $route, []);
    $this
      ->assertEquals(AccessResult::neutral(), $access_check
      ->access($missing_both, $account
      ->reveal()));
    $missing_state = new RouteMatch(NULL, $route, [
      'workflow' => $workflow
        ->reveal(),
    ]);
    $this
      ->assertEquals(AccessResult::neutral(), $access_check
      ->access($missing_state, $account
      ->reveal()));
    $missing_workflow = new RouteMatch(NULL, $route, [
      'workflow_state' => 'foo',
    ]);
    $this
      ->assertEquals(AccessResult::neutral(), $access_check
      ->access($missing_workflow, $account
      ->reveal()));
  }

  /**
   * @covers ::access
   * @dataProvider invalidOperationNameTestCases
   */
  public function testInvalidOperationName($operation_name) {
    $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());
  }

  /**
   * Test cases for ::testInvalidOperationName.
   */
  public function invalidOperationNameTestCases() {
    return [
      [
        'invalid-op',
      ],
      [
        'foo-add-transition',
      ],
      [
        'add-transition-bar',
      ],
    ];
  }

}

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::setUp protected function 308
UnitTestCase::setUpBeforeClass public static function
WorkflowStateTransitionOperationsAccessCheckTest::accessTestCases public function Test cases for ::testAccess.
WorkflowStateTransitionOperationsAccessCheckTest::invalidOperationNameTestCases public function Test cases for ::testInvalidOperationName.
WorkflowStateTransitionOperationsAccessCheckTest::testAccess public function Tests the access method correctly proxies to the entity access system.
WorkflowStateTransitionOperationsAccessCheckTest::testInvalidOperationName public function @covers ::access @dataProvider invalidOperationNameTestCases
WorkflowStateTransitionOperationsAccessCheckTest::testMissingRouteParams public function @covers ::access