-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpokefumi-e2e.spec.ts
396 lines (359 loc) · 14.5 KB
/
pokefumi-e2e.spec.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
import { User, Matchmaking, Round, Stats } from '@pokefumi/pokefumi-api';
import { faker } from '@faker-js/faker';
import { clearDbs, killChildrens, launchAllProcess } from './utils-e2e';
const JWT_SECRET = 'ILIKETOTESTPOTATOES';
const author = {
username: faker.internet.userName(),
password: 'password',
statut: 'online',
score: 0,
};
const opponent = {
username: faker.internet.userName(),
password: 'motdepasse',
statut: 'online',
score: 0,
};
// WORKAROUND: permet de passer une valeur entre les tests : impliquent qu'ils soient executés en séquentiel
export interface global {}
declare global {
var authorId: number;
var opponentId: number;
var authorToken: string;
var opponentToken: string;
var matchId: number;
var matchId2: number;
}
beforeAll(async () => {
// juste pour empêcher les messages d'erreurs dans la console
const tmp = console.error;
console.error = () => {};
// nettoyage des BDDs
// une bdd par table
await clearDbs();
// on fork chaque processus node pour chaque service. Bref on les lance tous en meme temps
await launchAllProcess({ JWT_SECRET });
console.error = tmp;
}, 20 * 1000);
describe('simple scenario', () => {
beforeAll(async () => {
const user = await User.UserService.createUser(author);
expect(user).toEqual(expect.objectContaining({ username: author.username, score: author.score, statut: author.statut }));
expect(user.password).not.toEqual(author.password); // devrait etre hashé
global.authorId = user.id!;
});
beforeAll(async () => {
const user = await User.UserService.createUser(opponent);
expect(user).toEqual(expect.objectContaining({ username: opponent.username, score: opponent.score, statut: opponent.statut }));
global.opponentId = user.id!;
});
/*
###############################################################################################
User
###############################################################################################
*/
describe('user-service', () => {
it('should get author', async () => {
const user = await User.UserService.getUserById(global.authorId);
expect(user).toEqual(expect.objectContaining({ username: author.username, score: author.score, statut: author.statut }));
expect(user.password).not.toEqual(author.password); // devrait etre hashé
});
it('should contain author and opponent', async () => {
const users = await User.UserService.getAllUsers();
expect(users).toEqual(
expect.arrayContaining([
expect.objectContaining({ username: author.username, score: author.score, statut: author.statut }),
expect.objectContaining({ username: opponent.username, score: opponent.score, statut: opponent.statut }),
]),
);
});
it('should connect', async () => {
const tokenAuthor = await User.UserService.connectUser(author.username, author.password);
expect(tokenAuthor).toBeTruthy();
global.authorToken = tokenAuthor;
const tokenOpponent = await User.UserService.connectUser(opponent.username, opponent.password);
expect(tokenOpponent).toBeTruthy();
global.opponentToken = tokenOpponent;
});
it('should not connect with an invalid password', async () => {
const t = () => User.UserService.connectUser(author.username, 'badpassword');
await expect(t()).rejects.toThrow();
});
it('should not connect with an invalid username', async () => {
const t = () => User.UserService.connectUser('badusername##########', 'badpassword');
await expect(t()).rejects.toThrow();
});
});
/*
###############################################################################################
# Matchmaking
###############################################################################################
*/
describe('matchmaking-service', () => {
beforeAll(async () => {
Matchmaking.OpenAPI.TOKEN = global.authorToken;
const match = await Matchmaking.MatchesService.createMatch({
opponentId: global.opponentId,
deck: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
});
expect(match).toEqual(expect.objectContaining({ authorId: global.authorId, opponentId: global.opponentId }));
global.matchId = match.id!;
});
it('should not create a match with invalid pokemons', async () => {
Matchmaking.OpenAPI.TOKEN = global.authorToken;
const m1 = async () =>
await Matchmaking.MatchesService.createMatch({
opponentId: global.opponentId,
deck: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15],
});
await expect(m1()).rejects.toThrow();
const m2 = async () =>
await Matchmaking.MatchesService.createMatch({
opponentId: global.opponentId,
deck: [1, 2, 3, 4, 5, 6, 7, 8, 9],
});
await expect(m2()).rejects.toThrow();
const m3 = async () =>
await Matchmaking.MatchesService.createMatch({
opponentId: global.opponentId,
deck: [1, 2, 3, 4, 5, 6, 7, 8, 9, -5],
});
await expect(m3()).rejects.toThrow();
});
it('should appears in match list', async () => {
const matches = await Matchmaking.MatchesService.getAllMatches();
expect(matches).toEqual(
expect.arrayContaining([expect.objectContaining({ id: global.matchId, authorId: global.authorId, opponentId: global.opponentId })]),
);
});
it('should be fetchable by id', async () => {
const match = await Matchmaking.MatchesService.getMatchById(global.matchId);
expect(match).toEqual(expect.objectContaining({ id: global.matchId, authorId: global.authorId, opponentId: global.opponentId }));
});
it('should be an empty list of invitations for author', async () => {
Matchmaking.OpenAPI.TOKEN = global.authorToken;
const invitations = await Matchmaking.MatchesService.getAllMatchesWaitingForInvitation();
expect(invitations).toHaveLength(0);
});
it('should be in opponent invitation list', async () => {
Matchmaking.OpenAPI.TOKEN = global.opponentToken;
const invitations = await Matchmaking.MatchesService.getAllMatchesWaitingForInvitation();
expect(invitations).toEqual(expect.arrayContaining([expect.objectContaining({ id: global.matchId, authorId: global.authorId })]));
});
it('should join the match and the match should be removed from invitation list', async () => {
Matchmaking.OpenAPI.TOKEN = global.opponentToken;
const match = await Matchmaking.MatchesService.joinMatch(global.matchId, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(match).toEqual(
expect.objectContaining({
id: global.matchId,
authorId: global.authorId,
opponentId: global.opponentId,
opponentPokemons: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
}),
);
const invitations = await Matchmaking.MatchesService.getAllMatchesWaitingForInvitation();
expect(invitations).not.toEqual(expect.arrayContaining([expect.objectContaining({ id: global.matchId, authorId: global.authorId })]));
});
});
/*
###############################################################################################
# Round service
###############################################################################################
*/
describe('rounds-service', () => {
beforeEach(async () => {
Matchmaking.OpenAPI.TOKEN = global.authorToken;
let match = await Matchmaking.MatchesService.createMatch({
opponentId: global.opponentId,
deck: [13, 3, 25, 80, 5, 6, 7, 8, 9, 10],
});
expect(match).toEqual(expect.objectContaining({ authorId: global.authorId, opponentId: global.opponentId }));
global.matchId2 = match.id!;
Matchmaking.OpenAPI.TOKEN = global.opponentToken;
match = await Matchmaking.MatchesService.joinMatch(global.matchId2, [13, 3, 25, 80, 5, 6, 7, 8, 9, 10]);
expect(match).toEqual(
expect.objectContaining({
id: global.matchId2,
authorId: global.authorId,
opponentId: global.opponentId,
opponentPokemons: [13, 3, 25, 80, 5, 6, 7, 8, 9, 10],
}),
);
const invitations = await Matchmaking.MatchesService.getAllMatchesWaitingForInvitation();
expect(invitations).not.toEqual(expect.arrayContaining([expect.objectContaining({ id: global.matchId, authorId: global.authorId })]));
});
const callWithHost = async (idxPokemonDeck: number) => {
Round.OpenAPI.TOKEN = global.authorToken;
return await Round.RoundService.playRound({
idMatch: global.matchId2,
idxPokemonDeck: idxPokemonDeck,
});
};
const callWithOpponent = async (idxPokemonDeck: number) => {
Round.OpenAPI.TOKEN = global.opponentToken;
return await Round.RoundService.playRound({
idMatch: global.matchId2,
idxPokemonDeck: idxPokemonDeck,
});
};
jest.setTimeout(1000 * 50);
it('should win every rounds and close the match and increment stats', async () => {
const winnerPokemonIdx = 2;
const looserPokemonIdx = 3;
for (let i = 0; i < 10; i++) {
console.log(`running round ${i}`);
const roundResults = await Promise.all([callWithHost(winnerPokemonIdx), callWithOpponent(looserPokemonIdx)]);
expect(roundResults).toEqual(
expect.arrayContaining([
expect.objectContaining({
roundWinner: global.authorId,
pokemonWinner: 25,
roundLooser: global.opponentId,
pokemonLooser: 80,
roundIndex: i + 1,
}),
expect.objectContaining({
roundWinner: global.authorId,
pokemonWinner: 25,
roundLooser: global.opponentId,
pokemonLooser: 80,
roundIndex: i + 1,
}),
]),
);
}
const match = await Matchmaking.MatchesService.getMatchById(global.matchId2);
expect(match).toEqual<Matchmaking.MatchDto>(
expect.objectContaining({
id: global.matchId2,
authorId: global.authorId,
opponentId: global.opponentId,
status: Matchmaking.MatchDto.status.FINISHED,
}),
);
const roundPokemon1 = await Stats.PokemonService.getNumberOfRoundsByPokemon(25);
expect(roundPokemon1).toEqual(expect.objectContaining({ id: 25, numberOfRounds: 10 }));
const roundPokemon2 = await Stats.PokemonService.getNumberOfRoundsByPokemon(80);
expect(roundPokemon2).toEqual(expect.objectContaining({ id: 80, numberOfRounds: 10 }));
const victoriesPokemon1 = await Stats.PokemonService.getNumberOfVictoriesByPokemon(25);
expect(victoriesPokemon1).toEqual(expect.objectContaining({ id: 25, numberOfVictories: 10 }));
});
jest.setTimeout(1000 * 50);
it('should loose every rounds and close the match and increment stats', async () => {
const winnerPokemonIdx = 0;
const looserPokemonIdx = 1;
for (let i = 0; i < 10; i++) {
console.log(`running round ${i}`);
const roundResults = await Promise.all([callWithHost(looserPokemonIdx), callWithOpponent(winnerPokemonIdx)]);
expect(roundResults).toEqual(
expect.arrayContaining([
expect.objectContaining({
roundWinner: global.opponentId,
pokemonWinner: 13,
roundLooser: global.authorId,
pokemonLooser: 3,
roundIndex: i + 1,
}),
expect.objectContaining({
roundWinner: global.opponentId,
pokemonWinner: 13,
roundLooser: global.authorId,
pokemonLooser: 3,
roundIndex: i + 1,
}),
]),
);
}
});
});
});
describe('stats-service', () => {
beforeAll(async () => {
await clearDbs();
// envoi de stats de test
const invalidDate = new Date();
invalidDate.setMonth(invalidDate.getMonth() - 3);
const twoDaysAgo = new Date();
twoDaysAgo.setDate(twoDaysAgo.getDate() - 2);
const testData = [
{
dateMatch: new Date().toISOString(),
team: 0,
idMatch: 5,
idPokemon: 6,
victory: false,
},
{
dateMatch: new Date().toISOString(),
team: 1,
idMatch: 8,
idPokemon: 9,
victory: false,
},
{
dateMatch: new Date().toISOString(),
team: 1,
idMatch: 9,
idPokemon: 9,
victory: true,
},
{
dateMatch: new Date().toISOString(),
team: 0,
idMatch: 5,
idPokemon: 12,
victory: true,
},
{
dateMatch: twoDaysAgo.toISOString(),
team: 1,
idMatch: 5,
idPokemon: 12,
victory: false,
},
{
dateMatch: twoDaysAgo.toISOString(),
team: 1,
idMatch: 9,
idPokemon: 13,
victory: false,
},
{
dateMatch: invalidDate.toISOString(),
team: 1,
idMatch: 5,
idPokemon: 10,
victory: true,
},
];
for (const data of testData) {
await Stats.StatsService.uploadStatRow(data);
}
});
it("shouldn't work if you upload an invalid stats row", async () => {
const t = () => Stats.StatsService.uploadStatRow();
await expect(t()).rejects.toThrow();
});
it('should return the number of matchs of the last month', async () => {
const res = await Stats.RoundService.getRoundsAdayLast30Days();
expect(res).toEqual(expect.arrayContaining([expect.objectContaining({ numberOfRounds: 4 }), expect.objectContaining({ numberOfRounds: 2 })]));
expect(res).not.toEqual(expect.arrayContaining([expect.objectContaining({ numberOfRounds: 1 })]));
});
it('should return the number of matchs for the pokemon', async () => {
const res = await Stats.PokemonService.getNumberOfRoundsByPokemon(9);
expect(res).toEqual(expect.objectContaining({ id: 9, numberOfRounds: 2 }));
const res6 = await Stats.PokemonService.getNumberOfRoundsByPokemon(6);
expect(res6).toEqual(expect.objectContaining({ id: 6, numberOfRounds: 1 }));
});
it('should return the number of victories for the pokemon', async () => {
const res = await Stats.PokemonService.getNumberOfVictoriesByPokemon(9);
expect(res).toEqual(expect.objectContaining({ id: 9, numberOfVictories: 1 }));
const res6 = await Stats.PokemonService.getNumberOfVictoriesByPokemon(6);
expect(res6).toEqual(expect.objectContaining({ id: 6, numberOfVictories: 0 }));
});
});
afterAll(() => {
console.log('Killing childrens, oh noooo !');
// on kill tous les processus
killChildrens();
});