-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathAggregateHandlerProviderTest.php
More file actions
130 lines (103 loc) · 4.38 KB
/
Copy pathAggregateHandlerProviderTest.php
File metadata and controls
130 lines (103 loc) · 4.38 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
declare(strict_types=1);
namespace Patchlevel\EventSourcing\Tests\Unit\CommandBus;
use Patchlevel\EventSourcing\CommandBus\AggregateHandlerProvider;
use Patchlevel\EventSourcing\CommandBus\Handler\CreateAggregateHandler;
use Patchlevel\EventSourcing\CommandBus\Handler\DefaultParameterResolver;
use Patchlevel\EventSourcing\CommandBus\Handler\UpdateAggregateHandler;
use Patchlevel\EventSourcing\Metadata\AggregateRoot\AggregateRootRegistry;
use Patchlevel\EventSourcing\Repository\RepositoryManager;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\BaseCommand;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\ChangeProfileName;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\CreateProfile;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\ProfileWithHandler;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\ProfileWithInheritanceHandler;
use Patchlevel\EventSourcing\Tests\Unit\Fixture\SomeCommand;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
#[CoversClass(AggregateHandlerProvider::class)]
final class AggregateHandlerProviderTest extends TestCase
{
public function testEmpty(): void
{
$repositoryManager = $this->createMock(RepositoryManager::class);
$provider = new AggregateHandlerProvider(
new AggregateRootRegistry([]),
$repositoryManager,
);
$result = [...$provider->handlerForCommand(CreateProfile::class)];
self::assertCount(0, $result);
}
public function testGetCreateHandler(): void
{
$repositoryManager = $this->createMock(RepositoryManager::class);
$provider = new AggregateHandlerProvider(
new AggregateRootRegistry(['profile' => ProfileWithHandler::class]),
$repositoryManager,
);
$result = [...$provider->handlerForCommand(CreateProfile::class)];
$handler = new CreateAggregateHandler(
$repositoryManager,
ProfileWithHandler::class,
'create',
new DefaultParameterResolver(),
);
self::assertCount(1, $result);
self::assertEquals($handler->__invoke(...), $result[0]->callable());
}
public function testGetUpdateHandler(): void
{
$repositoryManager = $this->createMock(RepositoryManager::class);
$provider = new AggregateHandlerProvider(
new AggregateRootRegistry(['profile' => ProfileWithHandler::class]),
$repositoryManager,
);
$result = [...$provider->handlerForCommand(ChangeProfileName::class)];
$handler = new UpdateAggregateHandler(
$repositoryManager,
ProfileWithHandler::class,
'updateName',
new DefaultParameterResolver(),
);
self::assertCount(1, $result);
self::assertEquals($handler->__invoke(...), $result[0]->callable());
}
public function testGetHandlerByInterface(): void
{
$repositoryManager = $this->createMock(RepositoryManager::class);
$command = new class () implements SomeCommand {
};
$provider = new AggregateHandlerProvider(
new AggregateRootRegistry(['profile' => ProfileWithInheritanceHandler::class]),
$repositoryManager,
);
$result = [...$provider->handlerForCommand($command::class)];
$handler = new UpdateAggregateHandler(
$repositoryManager,
ProfileWithInheritanceHandler::class,
'handleInterface',
new DefaultParameterResolver(),
);
self::assertCount(1, $result);
self::assertEquals($handler->__invoke(...), $result[0]->callable());
}
public function testGetHandlerByAbstractClass(): void
{
$repositoryManager = $this->createMock(RepositoryManager::class);
$command = new class () extends BaseCommand {
};
$provider = new AggregateHandlerProvider(
new AggregateRootRegistry(['profile' => ProfileWithInheritanceHandler::class]),
$repositoryManager,
);
$result = [...$provider->handlerForCommand($command::class)];
$handler = new UpdateAggregateHandler(
$repositoryManager,
ProfileWithInheritanceHandler::class,
'handleAbstract',
new DefaultParameterResolver(),
);
self::assertCount(1, $result);
self::assertEquals($handler->__invoke(...), $result[0]->callable());
}
}