-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRecruitCreatureTest.java
More file actions
229 lines (189 loc) · 7.4 KB
/
RecruitCreatureTest.java
File metadata and controls
229 lines (189 loc) · 7.4 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
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
222
223
224
225
226
227
228
229
package com.dddheroes.heroesofddd.creaturerecruitment.write.recruitcreature;
import com.dddheroes.heroesofddd.creaturerecruitment.events.CreatureRecruited;
import com.dddheroes.heroesofddd.creaturerecruitment.write.DwellingTest;
import com.dddheroes.heroesofddd.creaturerecruitment.events.AvailableCreaturesChanged;
import com.dddheroes.heroesofddd.shared.domain.valueobjects.Amount;
import com.dddheroes.heroesofddd.shared.domain.identifiers.ArmyId;
import com.dddheroes.heroesofddd.shared.domain.identifiers.CreatureId;
import com.dddheroes.heroesofddd.shared.domain.DomainRule;
import com.dddheroes.heroesofddd.shared.domain.valueobjects.ResourceType;
import com.dddheroes.heroesofddd.shared.domain.valueobjects.Resources;
import org.axonframework.modelling.command.AggregateNotFoundException;
import org.junit.jupiter.api.*;
import java.util.List;
class RecruitCreatureTest extends DwellingTest {
private final ArmyId armyId = ArmyId.random();
@Test
void givenNotBuiltDwellingWhenRecruitCreatureThenException() {
// given
var givenEvents = List.of();
// when
var whenCommand = recruitCreature(1);
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(AggregateNotFoundException.class);
// todo: I don't like it exception is not from domain, AggregateNotFoundException is meaningless
// .expectException(DomainRule.ViolatedException.class)
// .expectExceptionMessage("Only not built building can be build");
}
@Test
void givenBuiltButEmptyDwellingWhenRecruitCreatureThenException() {
// given
var givenEvents = List.of(
dwellingBuilt()
);
// when
var whenCommand = recruitCreature(1);
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(DomainRule.ViolatedException.class)
.expectExceptionMessage("Recruit creatures not exceed available creatures");
}
@Test
void givenDwellingWith1CreatureWhenRecruit1CreatureThenRecruited() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(1)
);
// when
var whenCommand = recruitCreature(1);
// then
var thenEvent = creatureRecruited(1);
fixture.given(givenEvents)
.when(whenCommand)
.expectEvents(thenEvent);
}
@Test
void givenDwellingWith2CreaturesWhenRecruit2CreaturesThenRecruited() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(2)
);
// when
var whenCommand = recruitCreature(2);
// then
var thenEvent = creatureRecruited(2);
fixture.given(givenEvents)
.when(whenCommand)
.expectEvents(thenEvent);
}
@Test
void givenDwellingWith4CreaturesWhenRecruit3CreaturesThenRecruited() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(3),
availableCreaturesChanged(4)
);
// when
var whenCommand = recruitCreature(3);
// then
var thenEvent = creatureRecruited(3);
fixture.given(givenEvents)
.when(whenCommand)
.expectEvents(thenEvent);
}
@Test
void givenDwellingWith5CreaturesWhenRecruit6CreaturesThenException() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(5)
);
// when
var whenCommand = recruitCreature(6);
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(DomainRule.ViolatedException.class)
.expectExceptionMessage("Recruit creatures not exceed available creatures");
}
@Test
void givenDwellingWhenRecruitCreatureNotFromThisDwellingThenException() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(1)
);
// when
var anotherCreatureId = CreatureId.of("black-dragon");
var whenCommand = recruitCreature(anotherCreatureId, 1);
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(DomainRule.ViolatedException.class)
.expectExceptionMessage("Recruit creatures not exceed available creatures");
}
@Test
void givenDwellingWithRecruitedAllAvailableCreaturesWhenRecruitCreatureThenException() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(3),
creatureRecruited(2),
availableCreaturesChanged(4),
creatureRecruited(4)
);
// when
var whenCommand = recruitCreature(3);
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(DomainRule.ViolatedException.class)
.expectExceptionMessage("Recruit creatures not exceed available creatures");
}
@Test
void givenDwellingWithRecruitedSomeAvailableCreaturesAnd1LeftWhenRecruit1CreatureThenRecruited() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(4),
creatureRecruited(3)
);
// when
var whenCommand = recruitCreature(1);
// then
var thenEvent = creatureRecruited(1);
fixture.given(givenEvents)
.when(whenCommand)
.expectEvents(thenEvent);
}
@Test
void givenDwellingWhenExpectedCostDoesNotMatchActualCostThenException() {
// given
var givenEvents = List.of(
dwellingBuilt(),
availableCreaturesChanged(1)
);
// when
var whenCommand = recruitCreature(angelId, 1, Resources.from(ResourceType.GOLD, Amount.of(999999)));
// then
fixture.given(givenEvents)
.when(whenCommand)
.expectException(DomainRule.ViolatedException.class)
.expectExceptionMessage("Recruit cost cannot differ than expected cost");
}
private RecruitCreature recruitCreature(int recruit) {
return recruitCreature(angelId, recruit);
}
private RecruitCreature recruitCreature(CreatureId creatureId, int quantity) {
return recruitCreature(creatureId, quantity, costPerTroop.multiply(Amount.of(quantity)));
}
private RecruitCreature recruitCreature(CreatureId creatureId, int quantity, Resources expectedCost) {
return RecruitCreature.command(dwellingId.raw(), creatureId.raw(), armyId.raw(), quantity, expectedCost.raw());
}
private CreatureRecruited creatureRecruited(int quantity) {
return CreatureRecruited.event(dwellingId,
angelId,
armyId,
Amount.of(quantity),
costPerTroop.multiply(Amount.of(quantity)));
}
private AvailableCreaturesChanged availableCreaturesChanged(int changedTo) {
return AvailableCreaturesChanged.event(dwellingId, angelId, Amount.of(changedTo));
}
}