-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.ts
412 lines (364 loc) · 9.01 KB
/
tests.ts
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
import { assertEquals } from "https://deno.land/std@0.143.0/testing/asserts.ts";
import DeliveryDate from "./src/domain/DeliveryDate.ts";
import Address from "./src/domain/Address.ts";
import PriceCalculationService from "./src/domain/PriceCalculationService.ts";
import Inhabitant from "./src/domain/Inhabitant.ts";
import VisitService from "./src/domain/VisitService.ts";
import HouseholdRepository from "./src/domain/HouseholdRepository.ts";
import Household from "./src/domain/Household.ts";
import Weight from "./src/domain/Weight.ts";
import CalculationRules, {
NoExemptionRule,
ExemptionRule,
PriceCalculationRule,
} from "./src/domain/CalculationRules.ts";
import { fractionType } from "./src/domain/Delivery.ts";
import { Price } from "./src/domain/Price.ts";
class InMemHouseholdRepository implements HouseholdRepository {
private households: { [key: string]: Household } = {};
private householdsByInhabitant: { [key: string]: Household } = {};
save(household: Household): void {
household.inhabitants.forEach((inhabitant) => {
this.householdsByInhabitant[inhabitant.id] = household;
});
this.households[household.id] = household;
}
findByAddress(address: Address): Household {
return this.households[address.id];
}
findByInhabitant(inhabitant: Inhabitant): Household {
return this.householdsByInhabitant[inhabitant.id];
}
}
class InMemCalculationRules implements CalculationRules {
private readonly exemptionRules: { [key: string]: ExemptionRule } = {};
private readonly priceCalculationRules: {
[key: string]: PriceCalculationRule;
} = {};
addExemptionRule(exemptionRule: ExemptionRule): void {
this.exemptionRules[
this.key(exemptionRule.city, exemptionRule.fractionType)
] = exemptionRule;
}
findExemptionRule(city: string, fractionType: fractionType): ExemptionRule {
return (
this.exemptionRules[this.key(city, fractionType)] || new NoExemptionRule()
);
}
addPriceCalculationRule(priceCalculationRule: PriceCalculationRule): void {
this.priceCalculationRules[priceCalculationRule.fractionType] =
priceCalculationRule;
}
findCalculationRule(
city: string,
fractionType: fractionType
): PriceCalculationRule {
return this.priceCalculationRules[fractionType];
}
private key(city: string, fractionType: string) {
return `${city}-${fractionType}`;
}
}
const Kg25 = new Weight(25, "kg");
const Kg50 = new Weight(50, "kg");
const Kg100 = new Weight(100, "kg");
const Kg150 = new Weight(150, "kg");
const Kg200 = new Weight(200, "kg");
function testSetup(inhabitant: Inhabitant) {
const householdRepository = new InMemHouseholdRepository();
const calculationRules = new InMemCalculationRules();
calculationRules.addExemptionRule(
new ExemptionRule("Pineville", "CONSTRUCTION", Kg100)
);
calculationRules.addPriceCalculationRule(
new PriceCalculationRule("CONSTRUCTION", new Price(0.1, "EUR"))
);
calculationRules.addPriceCalculationRule(
new PriceCalculationRule("GREEN WASTE", new Price(0.2, "EUR"))
);
const visitService = new VisitService(householdRepository);
const priceCalculationService = new PriceCalculationService(
householdRepository,
calculationRules
);
const houseHold = new Household(inhabitant.address);
houseHold.addInhabitant(inhabitant);
householdRepository.save(houseHold);
return {
householdRepository,
visitService,
priceCalculationService,
};
}
const deliveryDate = new DeliveryDate("2022-06-20");
const kasey = new Inhabitant(
"Kasey",
new Address("Eveningred 31", "Moon village")
);
const aiden = new Inhabitant(
"Aiden",
new Address("Green Street 103", "Pineville")
);
const john = new Inhabitant(
"John",
new Address("Green Street 103", "Pineville")
);
Deno.test("calculate price example 1", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(kasey);
// GIVEN
visitService.registerDelivery(kasey, [], deliveryDate);
// WHEN
const price = priceCalculationService.calculate(kasey);
// THEN
assertEquals(price.amount, 0);
});
Deno.test("calculate price example 2", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(kasey);
// GIVEN
visitService.registerDelivery(
kasey,
[
{
type: "CONSTRUCTION",
weight: Kg200,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(kasey);
// THEN
assertEquals(price.amount, 20);
});
Deno.test("calculate price example 3", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg200,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 10);
});
Deno.test("calculate price example 4", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg50,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg25,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg100,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 7.5);
});
Deno.test("calculate price example 5", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg50,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg25,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg100,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg100,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 10);
});
Deno.test("calculate price example 6", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg25,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 0);
});
Deno.test("calculate price example 7", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg25,
},
],
deliveryDate
);
visitService.registerDelivery(
aiden,
[
{
type: "GREEN WASTE",
weight: Kg100,
},
],
deliveryDate
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 20);
});
// we have 2 new requirements:
// 1. the exemptions are calculated per year, so every calendar year you get the exemptions again
// 2. the exemptions are calculated per household (based on address), so multiple people living together get the exemptions only 1 time
Deno.test("calculate price example 8", () => {
// PREP
const { visitService, priceCalculationService } = testSetup(aiden);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg150,
},
],
new DeliveryDate("2021-10-02")
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg50,
},
],
new DeliveryDate("2022-04-07")
);
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg100,
},
],
new DeliveryDate("2022-06-22")
);
// WHEN
const price = priceCalculationService.calculate(aiden);
// THEN
assertEquals(price.amount, 5);
});
Deno.test("calculate price example 9", () => {
// PREP
const { householdRepository, visitService, priceCalculationService } =
testSetup(aiden);
const household = householdRepository.findByAddress(john.address);
household.addInhabitant(john);
householdRepository.save(household);
// GIVEN
visitService.registerDelivery(
aiden,
[
{
type: "CONSTRUCTION",
weight: Kg50,
},
],
new DeliveryDate("2022-04-07")
);
visitService.registerDelivery(
john,
[
{
type: "CONSTRUCTION",
weight: Kg100,
},
],
new DeliveryDate("2022-06-22")
);
// WHEN
const price = priceCalculationService.calculate(john);
// THEN
assertEquals(price.amount, 5);
});