View source
<?php
namespace Drupal\Tests\workflows\Unit;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Tests\UnitTestCase;
use Drupal\workflow_type_test\Plugin\WorkflowType\TestType;
use Drupal\workflows\Entity\Workflow;
use Drupal\workflows\State;
use Drupal\workflows\Transition;
use Drupal\workflows\WorkflowTypeManager;
use Prophecy\Argument;
class WorkflowTest extends UnitTestCase {
protected function setUp() : void {
parent::setUp();
$container = new ContainerBuilder();
$workflow_manager = $this
->prophesize(WorkflowTypeManager::class);
$workflow_manager
->createInstance('test_type', Argument::any())
->willReturn(new TestType([], '', []));
$container
->set('plugin.manager.workflows.type', $workflow_manager
->reveal());
\Drupal::setContainer($container);
}
public function testAddAndHasState() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$this
->assertFalse($workflow
->getTypePlugin()
->hasState('draft'));
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$this
->assertTrue($workflow
->getTypePlugin()
->hasState('draft'));
$this
->assertFalse($workflow
->getTypePlugin()
->hasState('published'));
$this
->assertEquals(0, $workflow
->getTypePlugin()
->getState('draft')
->weight());
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransitionFromStateToState('draft', 'draft'));
$workflow
->getTypePlugin()
->addState('published', 'Published');
$this
->assertEquals(1, $workflow
->getTypePlugin()
->getState('published')
->weight());
}
public function testAddStateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' already exists in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
}
public function testAddStateInvalidIdException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state ID 'draft-draft' must contain only lowercase letters, numbers, and underscores");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft-draft', 'Draft');
}
public function testGetStates() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$this
->assertSame([], $workflow
->getTypePlugin()
->getStates());
$this
->assertSame([], $workflow
->getTypePlugin()
->getStates([]));
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived');
$this
->assertEquals([
'archived',
'draft',
'published',
], array_keys($workflow
->getTypePlugin()
->getConfiguration()['states']));
$this
->assertInstanceOf(State::class, $workflow
->getTypePlugin()
->getStates()['draft']);
$this
->assertEquals([
'draft',
'published',
'archived',
], array_keys($workflow
->getTypePlugin()
->getStates()));
$workflow
->getTypePlugin()
->setStateWeight('published', -1);
$this
->assertEquals([
'published',
'draft',
'archived',
], array_keys($workflow
->getTypePlugin()
->getStates()));
$workflow
->getTypePlugin()
->setStateWeight('archived', 0);
$this
->assertEquals([
'published',
'archived',
'draft',
], array_keys($workflow
->getTypePlugin()
->getStates()));
$this
->assertEquals([
'archived',
'draft',
], array_keys($workflow
->getTypePlugin()
->getStates([
'draft',
'archived',
])));
$this
->assertSame([], $workflow
->getTypePlugin()
->getStates([]));
}
public function testNumericIdSorting() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow_type = $workflow
->getTypePlugin();
$workflow_type
->addState('1', 'One');
$workflow_type
->addState('2', 'Two');
$workflow_type
->addState('3', 'ZZZ');
$workflow_type
->addState('4', 'AAA');
$workflow_type
->setStateWeight('1', 1);
$workflow_type
->setStateWeight('2', 2);
$workflow_type
->setStateWeight('3', 3);
$workflow_type
->setStateWeight('4', 3);
$this
->assertEquals([
1,
2,
4,
3,
], array_keys($workflow_type
->getStates()));
}
public function testGetStatesException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'state_that_does_not_exist' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->getStates([
'state_that_does_not_exist',
]);
}
public function testGetState() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertInstanceOf(State::class, $workflow
->getTypePlugin()
->getState('draft'));
$this
->assertEquals('archived', $workflow
->getTypePlugin()
->getState('archived')
->id());
$this
->assertEquals('Archived', $workflow
->getTypePlugin()
->getState('archived')
->label());
$draft = $workflow
->getTypePlugin()
->getState('draft');
$this
->assertTrue($draft
->canTransitionTo('draft'));
$this
->assertTrue($draft
->canTransitionTo('published'));
$this
->assertFalse($draft
->canTransitionTo('archived'));
$this
->assertEquals('Publish', $draft
->getTransitionTo('published')
->label());
$this
->assertEquals(0, $draft
->weight());
$this
->assertEquals(1, $workflow
->getTypePlugin()
->getState('published')
->weight());
$this
->assertEquals(2, $workflow
->getTypePlugin()
->getState('archived')
->weight());
}
public function testGetStateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'state_that_does_not_exist' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->getState('state_that_does_not_exist');
}
public function testSetStateLabel() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$this
->assertEquals('Draft', $workflow
->getTypePlugin()
->getState('draft')
->label());
$workflow
->getTypePlugin()
->setStateLabel('draft', 'Unpublished');
$this
->assertEquals('Unpublished', $workflow
->getTypePlugin()
->getState('draft')
->label());
}
public function testSetStateLabelException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->setStateLabel('draft', 'Draft');
}
public function testSetStateWeight() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$this
->assertEquals(0, $workflow
->getTypePlugin()
->getState('draft')
->weight());
$workflow
->getTypePlugin()
->setStateWeight('draft', -10);
$this
->assertEquals(-10, $workflow
->getTypePlugin()
->getState('draft')
->weight());
}
public function testSetStateWeightException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->setStateWeight('draft', 10);
}
public function testSetStateWeightNonNumericException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The weight 'foo' must be numeric for state 'Published'.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->setStateWeight('published', 'foo');
}
public function testDeleteState() {
$workflow_type = new TestType([], '', []);
$workflow_type
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('publish', 'Publish', [
'draft',
'published',
], 'published')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
'published',
], 'draft')
->addTransition('archive', 'Archive', [
'draft',
'published',
], 'archived');
$this
->assertCount(3, $workflow_type
->getStates());
$this
->assertCount(3, $workflow_type
->getState('published')
->getTransitions());
$workflow_type
->deleteState('draft');
$this
->assertFalse($workflow_type
->hasState('draft'));
$this
->assertCount(2, $workflow_type
->getStates());
$this
->assertCount(2, $workflow_type
->getState('published')
->getTransitions());
$workflow_type
->deleteState('published');
$this
->assertCount(0, $workflow_type
->getTransitions());
}
public function testDeleteStateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->deleteState('draft');
}
public function testDeleteOnlyStateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' can not be deleted from workflow as it is the only state");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$workflow
->getTypePlugin()
->deleteState('draft');
}
public function testAddTransition() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published');
$this
->assertFalse($workflow
->getTypePlugin()
->getState('draft')
->canTransitionTo('published'));
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertTrue($workflow
->getTypePlugin()
->getState('draft')
->canTransitionTo('published'));
$this
->assertEquals(0, $workflow
->getTypePlugin()
->getTransition('publish')
->weight());
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransition('publish'));
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransition('draft'));
$workflow
->getTypePlugin()
->addTransition('save_publish', 'Save', [
'published',
], 'published');
$this
->assertEquals(1, $workflow
->getTypePlugin()
->getTransition('save_publish')
->weight());
}
public function testAddTransitionDuplicateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'publish' already exists in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'published',
], 'published');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'published',
], 'published');
}
public function testAddTransitionInvalidIdException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition ID 'publish-publish' must contain only lowercase letters, numbers, and underscores");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->addTransition('publish-publish', 'Publish', [
'published',
], 'published');
}
public function testAddTransitionMissingFromException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'draft' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'draft',
], 'published');
}
public function testAddTransitionDuplicateTransitionStatesException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The 'publish' transition already allows 'draft' to 'published' transitions in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'draft',
'published',
], 'published');
$workflow
->getTypePlugin()
->addTransition('draft_to_published', 'Publish a draft', [
'draft',
], 'published');
}
public function testAddTransitionConsistentAfterFromCatch() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
try {
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'draft',
], 'published');
} catch (\InvalidArgumentException $e) {
}
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransition('publish'));
}
public function testAddTransitionMissingToException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'published' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [
'draft',
], 'published');
}
public function testGetTransitions() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$this
->assertSame([], $workflow
->getTypePlugin()
->getTransitions());
$this
->assertSame([], $workflow
->getTypePlugin()
->getTransitions([]));
$workflow
->getTypePlugin()
->addState('a', 'A')
->addState('b', 'B')
->addTransition('a_b', 'A to B', [
'a',
], 'b')
->addTransition('a_a', 'A to A', [
'a',
], 'a');
$this
->assertEquals([
'a_a',
'a_b',
], array_keys($workflow
->getTypePlugin()
->getConfiguration()['transitions']));
$this
->assertInstanceOf(Transition::class, $workflow
->getTypePlugin()
->getTransitions()['a_a']);
$this
->assertEquals([
'a_b',
'a_a',
], array_keys($workflow
->getTypePlugin()
->getTransitions()));
$workflow
->getTypePlugin()
->setTransitionWeight('a_a', -1);
$this
->assertEquals([
'a_a',
'a_b',
], array_keys($workflow
->getTypePlugin()
->getTransitions()));
$workflow
->getTypePlugin()
->setTransitionWeight('a_a', 0);
$this
->assertEquals([
'a_a',
'a_b',
], array_keys($workflow
->getTypePlugin()
->getTransitions()));
$workflow
->getTypePlugin()
->setTransitionLabel('a_b', 'A B');
$this
->assertEquals([
'a_b',
'a_a',
], array_keys($workflow
->getTypePlugin()
->getTransitions()));
$this
->assertEquals([
'a_a',
], array_keys($workflow
->getTypePlugin()
->getTransitions([
'a_a',
])));
$this
->assertSame([], $workflow
->getTypePlugin()
->getTransitions([]));
}
public function testGetTransition() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertInstanceOf(Transition::class, $workflow
->getTypePlugin()
->getTransition('create_new_draft'));
$this
->assertEquals('publish', $workflow
->getTypePlugin()
->getTransition('publish')
->id());
$this
->assertEquals('Publish', $workflow
->getTypePlugin()
->getTransition('publish')
->label());
$transition = $workflow
->getTypePlugin()
->getTransition('publish');
$this
->assertEquals($workflow
->getTypePlugin()
->getState('draft'), $transition
->from()['draft']);
$this
->assertEquals($workflow
->getTypePlugin()
->getState('published'), $transition
->to());
}
public function testGetTransitionException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'transition_that_does_not_exist' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->getTransition('transition_that_does_not_exist');
}
public function testGetTransitionsForState() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'archived',
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
'published',
], 'published')
->addTransition('archive', 'Archive', [
'published',
], 'archived');
$this
->assertEquals([
'create_new_draft',
'publish',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('draft')));
$this
->assertEquals([
'create_new_draft',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('draft', 'to')));
$this
->assertEquals([
'publish',
'archive',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('published')));
$this
->assertEquals([
'publish',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('published', 'to')));
$this
->assertEquals([
'create_new_draft',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('archived', 'from')));
$this
->assertEquals([
'archive',
], array_keys($workflow
->getTypePlugin()
->getTransitionsForState('archived', 'to')));
}
public function testGetTransitionFromStateToState() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'archived',
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
'published',
], 'published')
->addTransition('archive', 'Archive', [
'published',
], 'archived');
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('draft', 'published'));
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransitionFromStateToState('archived', 'archived'));
$transition = $workflow
->getTypePlugin()
->getTransitionFromStateToState('published', 'archived');
$this
->assertEquals('Archive', $transition
->label());
}
public function testGetTransitionFromStateToStateException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition from 'archived' to 'archived' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'archived',
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
'published',
], 'published')
->addTransition('archive', 'Archive', [
'published',
], 'archived');
$workflow
->getTypePlugin()
->getTransitionFromStateToState('archived', 'archived');
}
public function testSetTransitionLabel() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertEquals('Publish', $workflow
->getTypePlugin()
->getTransition('publish')
->label());
$workflow
->getTypePlugin()
->setTransitionLabel('publish', 'Publish!');
$this
->assertEquals('Publish!', $workflow
->getTypePlugin()
->getTransition('publish')
->label());
}
public function testSetTransitionLabelException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'draft-published' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->setTransitionLabel('draft-published', 'Publish');
}
public function testSetTransitionWeight() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertEquals(0, $workflow
->getTypePlugin()
->getTransition('publish')
->weight());
$workflow
->getTypePlugin()
->setTransitionWeight('publish', 10);
$this
->assertEquals(10, $workflow
->getTypePlugin()
->getTransition('publish')
->weight());
}
public function testSetTransitionWeightException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'draft-published' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->setTransitionWeight('draft-published', 10);
}
public function testSetTransitionWeightNonNumericException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The weight 'foo' must be numeric for transition 'Publish'.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->addTransition('publish', 'Publish', [], 'published');
$workflow
->getTypePlugin()
->setTransitionWeight('publish', 'foo');
}
public function testSetTransitionFromStates() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('test', 'Test', [
'draft',
], 'draft');
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('draft', 'draft'));
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransitionFromStateToState('published', 'draft'));
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransitionFromStateToState('archived', 'draft'));
$workflow
->getTypePlugin()
->setTransitionFromStates('test', [
'draft',
'published',
'archived',
]);
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('draft', 'draft'));
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('published', 'draft'));
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('archived', 'draft'));
$workflow
->getTypePlugin()
->setTransitionFromStates('test', [
'published',
'archived',
]);
$this
->assertFalse($workflow
->getTypePlugin()
->hasTransitionFromStateToState('draft', 'draft'));
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('published', 'draft'));
$this
->assertTrue($workflow
->getTypePlugin()
->hasTransitionFromStateToState('archived', 'draft'));
}
public function testSetTransitionFromStatesMissingTransition() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'test' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('published', 'Published')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft');
$workflow
->getTypePlugin()
->setTransitionFromStates('test', [
'draft',
'published',
'archived',
]);
}
public function testSetTransitionFromStatesMissingState() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The state 'published' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('archived', 'Archived')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft');
$workflow
->getTypePlugin()
->setTransitionFromStates('create_new_draft', [
'draft',
'published',
'archived',
]);
}
public function testSetTransitionFromStatesAlreadyExists() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The 'create_new_draft' transition already allows 'draft' to 'draft' transitions in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('draft', 'Draft')
->addState('archived', 'Archived')
->addState('needs_review', 'Needs Review')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft')
->addTransition('needs_review', 'Needs review', [
'needs_review',
], 'draft');
$workflow
->getTypePlugin()
->setTransitionFromStates('needs_review', [
'draft',
]);
}
public function testDeleteTransition() {
$workflow_type = new TestType([], '', []);
$workflow_type
->addState('draft', 'Draft')
->addState('published', 'Published')
->addTransition('create_new_draft', 'Create new draft', [
'draft',
], 'draft')
->addTransition('publish', 'Publish', [
'draft',
], 'published');
$this
->assertTrue($workflow_type
->getState('draft')
->canTransitionTo('published'));
$workflow_type
->deleteTransition('publish');
$this
->assertFalse($workflow_type
->getState('draft')
->canTransitionTo('published'));
$this
->assertTrue($workflow_type
->getState('draft')
->canTransitionTo('draft'));
}
public function testDeleteTransitionException() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage("The transition 'draft-published' does not exist in workflow.");
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$workflow
->getTypePlugin()
->addState('published', 'Published');
$workflow
->getTypePlugin()
->deleteTransition('draft-published');
}
public function testStatus() {
$workflow = new Workflow([
'id' => 'test',
'type' => 'test_type',
], 'workflow');
$this
->assertFalse($workflow
->status());
$workflow
->getTypePlugin()
->addState('published', 'Published');
$this
->assertTrue($workflow
->status());
}
}