|
7 | 7 | use Symfony\Component\Workflow\Definition; |
8 | 8 | use Symfony\Component\Workflow\Event\Event; |
9 | 9 | use Symfony\Component\Workflow\Event\GuardEvent; |
| 10 | +use Symfony\Component\Workflow\Exception\BlockedTransitionException; |
10 | 11 | use Symfony\Component\Workflow\Marking; |
11 | 12 | use Symfony\Component\Workflow\MarkingStore\MarkingStoreInterface; |
12 | 13 | use Symfony\Component\Workflow\MarkingStore\MultipleStateMarkingStore; |
13 | 14 | use Symfony\Component\Workflow\Transition; |
| 15 | +use Symfony\Component\Workflow\TransitionBlocker; |
14 | 16 | use Symfony\Component\Workflow\Workflow; |
15 | 17 |
|
16 | 18 | class WorkflowTest extends TestCase |
@@ -411,6 +413,116 @@ public function testGetEnabledTransitionsWithSameNameTransition() |
411 | 413 | $this->assertSame('to_a', $transitions[1]->getName()); |
412 | 414 | $this->assertSame('to_a', $transitions[2]->getName()); |
413 | 415 | } |
| 416 | + |
| 417 | + public function testWhyCannotReturnsReasonsProvidedInGuards() |
| 418 | + { |
| 419 | + $definition = $this->createSimpleWorkflowDefinition(); |
| 420 | + $subject = new \stdClass(); |
| 421 | + $subject->marking = null; |
| 422 | + $dispatcher = new EventDispatcher(); |
| 423 | + $workflow = new Workflow($definition, new MultipleStateMarkingStore(), $dispatcher); |
| 424 | + |
| 425 | + $guardsAddingTransitionBlockers = array( |
| 426 | + function (GuardEvent $event) { |
| 427 | + $event->addTransitionBlocker(new TransitionBlocker('Transition blocker 1', 'blocker_1')); |
| 428 | + $event->addTransitionBlocker(new TransitionBlocker('Transition blocker 2', 'blocker_2')); |
| 429 | + }, |
| 430 | + function (GuardEvent $event) { |
| 431 | + $event->addTransitionBlocker(new TransitionBlocker('Transition blocker 3', 'blocker_3')); |
| 432 | + }, |
| 433 | + ); |
| 434 | + |
| 435 | + foreach ($guardsAddingTransitionBlockers as $guard) { |
| 436 | + $dispatcher->addListener('workflow.guard', $guard); |
| 437 | + } |
| 438 | + |
| 439 | + $transitionBlockerList = $workflow->buildTransitionBlockerList($subject, 't1'); |
| 440 | + |
| 441 | + $this->assertCount(3, $transitionBlockerList); |
| 442 | + |
| 443 | + $assertTransitionBlockerPresentByCodeFn = function (string $code) use ($transitionBlockerList) { |
| 444 | + $this->assertNotNull( |
| 445 | + $transitionBlockerList->findByCode($code), |
| 446 | + sprintf('Workflow did not produce transition blocker with code "%s"', $code) |
| 447 | + ); |
| 448 | + }; |
| 449 | + |
| 450 | + $assertTransitionBlockerPresentByCodeFn('blocker_1'); |
| 451 | + $assertTransitionBlockerPresentByCodeFn('blocker_2'); |
| 452 | + $assertTransitionBlockerPresentByCodeFn('blocker_3'); |
| 453 | + } |
| 454 | + |
| 455 | + public function testWhyCannotReturnsTransitionNotDefinedReason() |
| 456 | + { |
| 457 | + $definition = $this->createSimpleWorkflowDefinition(); |
| 458 | + $subject = new \stdClass(); |
| 459 | + $subject->marking = null; |
| 460 | + $workflow = new Workflow($definition); |
| 461 | + |
| 462 | + $transitionBlockerList = $workflow->buildTransitionBlockerList($subject, 'undefined_transition_name'); |
| 463 | + |
| 464 | + $this->assertCount(1, $transitionBlockerList); |
| 465 | + $this->assertEquals( |
| 466 | + TransitionBlocker::REASON_TRANSITION_NOT_DEFINED, |
| 467 | + $transitionBlockerList->get(0)->getCode() |
| 468 | + ); |
| 469 | + } |
| 470 | + |
| 471 | + public function testWhyCannotReturnsTransitionNotApplicableReason() |
| 472 | + { |
| 473 | + $definition = $this->createSimpleWorkflowDefinition(); |
| 474 | + $subject = new \stdClass(); |
| 475 | + $subject->marking = null; |
| 476 | + $workflow = new Workflow($definition); |
| 477 | + |
| 478 | + $transitionBlockerList = $workflow->buildTransitionBlockerList($subject, 't2'); |
| 479 | + |
| 480 | + $this->assertCount(1, $transitionBlockerList); |
| 481 | + $this->assertEquals( |
| 482 | + TransitionBlocker::REASON_TRANSITION_NOT_APPLICABLE, |
| 483 | + $transitionBlockerList->get(0)->getCode() |
| 484 | + ); |
| 485 | + } |
| 486 | + |
| 487 | + public function testApplyConveysTheTransitionBlockers() |
| 488 | + { |
| 489 | + $definition = $this->createSimpleWorkflowDefinition(); |
| 490 | + $subject = new \stdClass(); |
| 491 | + $subject->marking = null; |
| 492 | + $dispatcher = new EventDispatcher(); |
| 493 | + $workflow = new Workflow($definition, new MultipleStateMarkingStore(), $dispatcher); |
| 494 | + |
| 495 | + $dispatcher->addListener('workflow.guard', function (GuardEvent $event) { |
| 496 | + $event->addTransitionBlocker(new TransitionBlocker('Transition blocker 3', 'blocker_1')); |
| 497 | + }); |
| 498 | + |
| 499 | + try { |
| 500 | + $workflow->apply($subject, 't1'); |
| 501 | + } catch (BlockedTransitionException $exception) { |
| 502 | + $this->assertNotNull( |
| 503 | + $exception->getTransitionBlockerList()->findByCode('blocker_1'), |
| 504 | + 'Workflow failed to convey it could not transition subject because of expected blocker' |
| 505 | + ); |
| 506 | + |
| 507 | + return; |
| 508 | + } |
| 509 | + |
| 510 | + $this->fail('Workflow failed to prevent a transition from happening'); |
| 511 | + } |
| 512 | + |
| 513 | + /** |
| 514 | + * @expectedException \Symfony\Component\Workflow\Exception\UndefinedTransitionException |
| 515 | + * @expectedExceptionMessage Transition "undefined_transition" is not defined in workflow "unnamed". |
| 516 | + */ |
| 517 | + public function testApplyWithUndefinedTransition() |
| 518 | + { |
| 519 | + $definition = $this->createSimpleWorkflowDefinition(); |
| 520 | + $subject = new \stdClass(); |
| 521 | + $subject->marking = null; |
| 522 | + $workflow = new Workflow($definition); |
| 523 | + |
| 524 | + $workflow->apply($subject, 'undefined_transition'); |
| 525 | + } |
414 | 526 | } |
415 | 527 |
|
416 | 528 | class EventDispatcherMock implements \Symfony\Component\EventDispatcher\EventDispatcherInterface |
|
0 commit comments