1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Workflow\Tests\Debug;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Stopwatch\Stopwatch;
use Symfony\Component\Workflow\Debug\TraceableWorkflow;
use Symfony\Component\Workflow\Marking;
use Symfony\Component\Workflow\TransitionBlockerList;
use Symfony\Component\Workflow\Workflow;
class TraceableWorkflowTest extends TestCase
{
private MockObject|Workflow $innerWorkflow;
private Stopwatch $stopwatch;
private TraceableWorkflow $traceableWorkflow;
protected function setUp(): void
{
$this->innerWorkflow = $this->createMock(Workflow::class);
$this->stopwatch = new Stopwatch();
$this->traceableWorkflow = new TraceableWorkflow(
$this->innerWorkflow,
$this->stopwatch
);
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideFunctionNames')]
public function testCallsInner(string $function, array $args, mixed $returnValue)
{
$this->innerWorkflow->expects($this->once())
->method($function)
->willReturn($returnValue);
$this->assertSame($returnValue, $this->traceableWorkflow->{$function}(...$args));
$calls = $this->traceableWorkflow->getCalls();
$this->assertCount(1, $calls);
$this->assertSame($function, $calls[0]['method']);
$this->assertArrayHasKey('duration', $calls[0]);
$this->assertSame($returnValue, $calls[0]['return']);
}
public function testCallsInnerCatchesException()
{
$exception = new \Exception('foo');
$this->innerWorkflow->expects($this->once())
->method('can')
->willThrowException($exception);
try {
$this->traceableWorkflow->can(new \stdClass(), 'foo');
$this->fail('An exception should have been thrown.');
} catch (\Exception $e) {
$this->assertSame($exception, $e);
$calls = $this->traceableWorkflow->getCalls();
$this->assertCount(1, $calls);
$this->assertSame('can', $calls[0]['method']);
$this->assertArrayHasKey('duration', $calls[0]);
$this->assertArrayHasKey('exception', $calls[0]);
$this->assertSame($exception, $calls[0]['exception']);
}
}
public static function provideFunctionNames(): \Generator
{
$subject = new \stdClass();
yield ['getMarking', [$subject], new Marking(['place' => 1])];
yield ['can', [$subject, 'foo'], true];
yield ['buildTransitionBlockerList', [$subject, 'foo'], new TransitionBlockerList()];
yield ['apply', [$subject, 'foo'], new Marking(['place' => 1])];
yield ['getEnabledTransitions', [$subject], []];
yield ['getEnabledTransition', [$subject, 'foo'], null];
}
}
|