-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventRaised.php
45 lines (37 loc) · 1.05 KB
/
EventRaised.php
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
<?php
declare(strict_types=1);
namespace SonsOfPHP\Component\EventSourcing\Test;
use PHPUnit\Framework\Constraint\Constraint;
use SonsOfPHP\Component\EventSourcing\Aggregate\AggregateInterface;
/**
* Usage:
* $this->assertThat($aggregate, new EventRaised(Event::class));
*
* @author [email protected]
*/
final class EventRaised extends Constraint
{
/**
* @codeCoverageIgnore
*/
public function __construct(private readonly string $eventClass) {}
/**
* AggregateInterface $other
*/
protected function matches(mixed $other): bool
{
if (!$other instanceof AggregateInterface) {
throw \LogicException(sprintf('Object must implement "%s"', AggregateInterface::class));
}
foreach ($other->peekPendingEvents() as $event) {
if ($event instanceof $this->eventClass) {
return true;
}
}
return false;
}
public function toString(): string
{
return sprintf('has raised the event "%s"', $this->eventClass);
}
}