-
-
Notifications
You must be signed in to change notification settings - Fork 168
/
EventSubscriberTest.php
221 lines (152 loc) · 6.94 KB
/
EventSubscriberTest.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
namespace Spatie\EventSourcing\Tests;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Support\Facades\Bus;
use Illuminate\Support\Facades\Mail;
use Illuminate\Support\Facades\Queue;
use function PHPUnit\Framework\assertCount;
use function PHPUnit\Framework\assertEquals;
use function PHPUnit\Framework\assertInstanceOf;
use Spatie\EventSourcing\EventHandlers\Projectors\Projector;
use Spatie\EventSourcing\Facades\Projectionist;
use Spatie\EventSourcing\StoredEvents\HandleStoredEventJob;
use Spatie\EventSourcing\StoredEvents\Models\EloquentStoredEvent;
use Spatie\EventSourcing\Tests\TestClasses\Events\DoNotStoreThisEvent;
use Spatie\EventSourcing\Tests\TestClasses\Events\MoneyAddedEvent;
use Spatie\EventSourcing\Tests\TestClasses\Events\MoneyAddedEventWithQueueOverride;
use Spatie\EventSourcing\Tests\TestClasses\Events\MoneySubtractedEvent;
use Spatie\EventSourcing\Tests\TestClasses\Mailables\AccountBroke;
use Spatie\EventSourcing\Tests\TestClasses\Models\Account;
use Spatie\EventSourcing\Tests\TestClasses\Projectors\BalanceProjector;
use Spatie\EventSourcing\Tests\TestClasses\Projectors\QueuedProjector;
use Spatie\EventSourcing\Tests\TestClasses\Reactors\BrokeReactor;
use Spatie\EventSourcing\Tests\TestClasses\Reactors\SyncBrokeReactor;
beforeEach(function () {
$this->account = Account::create();
Mail::fake();
});
it('will log events that implement ShouldBeStored', function () {
event(new MoneyAddedEvent($this->account, 1234));
assertCount(1, EloquentStoredEvent::get());
$storedEvent = EloquentStoredEvent::first();
assertEquals(MoneyAddedEvent::class, $storedEvent->event_class);
assertInstanceOf(MoneyAddedEvent::class, $storedEvent->event);
assertEquals(1234, $storedEvent->event->amount);
assertEquals($this->account->id, $storedEvent->event->account->id);
});
it('will log events that implement ShouldBeStored with a map', function () {
$this->setConfig('event-sourcing.event_class_map', [
'moneyadd' => MoneyAddedEvent::class,
]);
event(new MoneyAddedEvent($this->account, 1234));
assertCount(1, EloquentStoredEvent::get());
$storedEvent = EloquentStoredEvent::first();
$this->assertDatabaseHas('stored_events', ['event_class' => 'moneyadd']);
assertInstanceOf(MoneyAddedEvent::class, $storedEvent->event);
assertEquals(1234, $storedEvent->event->amount);
assertEquals($this->account->id, $storedEvent->event->account->id);
});
it('will not store events without the ShouldBeStored interface', function () {
event(new DoNotStoreThisEvent());
assertCount(0, EloquentStoredEvent::get());
});
it('will not store events when events are fired from a aggregate root', function () {
$event = new MoneyAddedEvent($this->account, 1234);
$event->firedFromAggregateRoot = true;
event($event);
assertCount(0, EloquentStoredEvent::get());
});
it('will call registered projectors', function () {
Projectionist::addProjector(BalanceProjector::class);
event(new MoneyAddedEvent($this->account, 1234));
$this->account->refresh();
assertEquals(1234, $this->account->amount);
event(new MoneySubtractedEvent($this->account, 34));
$this->account->refresh();
assertEquals(1200, $this->account->amount);
});
it('will call registered reactors', function () {
Projectionist::addProjector(BalanceProjector::class);
Projectionist::addReactor(BrokeReactor::class);
event(new MoneyAddedEvent($this->account, 1234));
Mail::assertNotSent(AccountBroke::class);
event(new MoneySubtractedEvent($this->account, 1000));
Mail::assertNotSent(AccountBroke::class);
event(new MoneySubtractedEvent($this->account, 1000));
Mail::assertSent(AccountBroke::class);
});
it('will not queue event handling by default', function () {
Bus::fake();
$projector = new BalanceProjector();
Projectionist::addProjector($projector);
event(new MoneyAddedEvent($this->account, 1000));
assertEquals(1000, $this->account->refresh()->amount);
});
it('should queue a queued projector', function () {
Bus::fake();
$projector = new QueuedProjector();
Projectionist::addProjector($projector);
event(new MoneyAddedEvent($this->account, 1234));
Bus::assertDispatched(HandleStoredEventJob::class, function (HandleStoredEventJob $job) {
return get_class($job->storedEvent->event) === MoneyAddedEvent::class;
});
assertEquals(0, $this->account->refresh()->amount);
});
it('should queue a queued reactor', function () {
Bus::fake();
Projectionist::addProjector(BalanceProjector::class);
Projectionist::addReactor(BrokeReactor::class);
event(new MoneySubtractedEvent($this->account, 1000));
Bus::assertDispatched(HandleStoredEventJob::class, function (HandleStoredEventJob $job) {
return get_class($job->storedEvent->event) === MoneySubtractedEvent::class;
});
});
it('should not queue a non queued reactor', function () {
Bus::fake();
Projectionist::addProjector(BalanceProjector::class);
Projectionist::addReactor(SyncBrokeReactor::class);
event(new MoneySubtractedEvent($this->account, 1000));
Bus::assertNotDispatched(HandleStoredEventJob::class);
});
it('calls sync projectors but does not dipatch job if event has no queued projectors and no reactors', function () {
Bus::fake();
$projector = new BalanceProjector();
Projectionist::addProjector($projector);
event(new MoneyAddedEvent($this->account, 1234));
Bus::assertNotDispatched(HandleStoredEventJob::class);
assertEquals(1234, $this->account->refresh()->amount);
});
it('should queue event without queue override', function () {
Queue::fake();
$this->setConfig('event-sourcing.queue', 'defaultQueue');
$projector = new QueuedProjector();
Projectionist::addProjector($projector);
event(new MoneyAddedEvent($this->account, 1234));
Queue::assertPushedOn('defaultQueue', HandleStoredEventJob::class);
});
it('should queue event with queue override', function () {
Queue::fake();
$this->setConfig('event-sourcing.queue', 'defaultQueue');
$projector = new QueuedProjector();
Projectionist::addProjector($projector);
event(new MoneyAddedEventWithQueueOverride($this->account, 1234));
Queue::assertPushedOn('testQueue', HandleStoredEventJob::class);
});
it('only queues event if event has async handler', function () {
Bus::fake();
$syncProjector = new class () extends Projector {
public function onMoneyAddedEvent(MoneyAddedEvent $event)
{
}
};
$asyncProjector = new class () extends Projector implements ShouldQueue {
public function onMoneySubtractedEvent(MoneySubtractedEvent $event)
{
}
};
Projectionist::addProjectors([$syncProjector, $asyncProjector]);
event(new MoneyAddedEvent($this->account, 1234));
Bus::assertNotDispatched(HandleStoredEventJob::class);
event(new MoneySubtractedEvent($this->account, 1234));
Bus::assertDispatched(HandleStoredEventJob::class);
});