-
Notifications
You must be signed in to change notification settings - Fork 10
/
javascript.test.js
183 lines (153 loc) · 4.93 KB
/
javascript.test.js
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
const { anagrammes, Stack, spirale, puissance4, fizzBuzz } = require('./javascript.js');
describe('La fonction anagramme', () => {
test('doit exister', () => {
expect(anagrammes).toBeDefined();
expect(typeof anagrammes).toEqual('function');
});
test('doit valider deux phrases anagrammes.', () => {
expect(anagrammes('hello', 'llohe')).toBeTruthy();
expect(anagrammes('Whoa! Hi!', 'Hi! Whoa!')).toBeTruthy();
expect(anagrammes('RAIL! SAFETY!', 'fairy tales')).toBeTruthy();
});
test('doit refuser deux phrass qui ne sont pas des anagrammes.', () => {
expect(anagrammes('One One', 'Two two two')).toBeFalsy();
expect(anagrammes('One one', 'One one c')).toBeFalsy();
expect(anagrammes('A tree, a life, a bench', 'A tree, a fence, a yard')).toBeFalsy();
});
});
describe('La classe Stack', () => {
test('doit être une classe', () => {
expect(typeof Stack.prototype.constructor).toEqual('function');
});
test('doit pouvoir ajouter ou retirer des éléments.', () => {
const s = new Stack();
s.push(1);
expect(s.pop()).toEqual(1);
s.push(2);
expect(s.pop()).toEqual(2);
});
test('doit suivre le principe du premier arrivé, premier parti.', () => {
const s = new Stack();
s.push(1);
s.push(2);
s.push(3);
expect(s.pop()).toEqual(3);
expect(s.pop()).toEqual(2);
expect(s.pop()).toEqual(1);
});
test('doit pouvoir retourner le premier élément sans le supprimer.', () => {
const s = new Stack();
s.push(1);
s.push(2);
s.push(3);
expect(s.peek()).toEqual(1);
expect(s.pop()).toEqual(3);
expect(s.peek()).toEqual(1);
expect(s.pop()).toEqual(2);
expect(s.peek()).toEqual(1);
expect(s.pop()).toEqual(1);
});
});
describe('La fonction matrice', () => {
test('doit exister', () => {
expect(spirale).toBeDefined();
expect(typeof spirale).toEqual('function');
});
test('doit fournir la matrice de taille 2x2', () => {
const m = spirale(2);
expect(m.length).toEqual(2);
expect(m[0]).toEqual([1, 2]);
expect(m[1]).toEqual([4, 3]);
});
test('et celle de taille 3x3', () => {
const m = spirale(3);
expect(m.length).toEqual(3);
expect(m[0]).toEqual([1, 2, 3]);
expect(m[1]).toEqual([8, 9, 4]);
expect(m[2]).toEqual([7, 6, 5]);
});
test('et celle de taille 4x4', () => {
const m = spirale(4);
expect(m.length).toEqual(4);
expect(m[0]).toEqual([1, 2, 3, 4]);
expect(m[1]).toEqual([12, 13, 14, 5]);
expect(m[2]).toEqual([11, 16, 15, 6]);
expect(m[3]).toEqual([10, 9, 8, 7]);
});
});
describe('La fonction FizzBuzz', () => {
beforeEach(() => {
jest.spyOn(console, 'log');
});
afterEach(() => {
console.log.mockRestore();
});
test('doit exister', () => {
expect(fizzBuzz).toBeDefined();
expect(typeof fizzBuzz).toEqual('function');
});
test('doit afficher 5 expressions quand appelé avec 5', () => {
fizzBuzz(5);
expect(console.log.mock.calls.length).toEqual(5);
});
test('doit afficher les bonnes valeurs', () => {
fizzBuzz(15);
expect(console.log.mock.calls[0][0]).toEqual(1);
expect(console.log.mock.calls[1][0]).toEqual(2);
expect(console.log.mock.calls[2][0]).toEqual('fizz');
expect(console.log.mock.calls[3][0]).toEqual(4);
expect(console.log.mock.calls[4][0]).toEqual('buzz');
expect(console.log.mock.calls[5][0]).toEqual('fizz');
expect(console.log.mock.calls[6][0]).toEqual(7);
expect(console.log.mock.calls[7][0]).toEqual(8);
expect(console.log.mock.calls[8][0]).toEqual('fizz');
expect(console.log.mock.calls[9][0]).toEqual('buzz');
expect(console.log.mock.calls[10][0]).toEqual(11);
expect(console.log.mock.calls[11][0]).toEqual('fizz');
expect(console.log.mock.calls[12][0]).toEqual(13);
expect(console.log.mock.calls[13][0]).toEqual(14);
expect(console.log.mock.calls[14][0]).toEqual('fizzbuzz');
});
});
describe('La fonction puissance4', () => {
test('doit exister', () => {
expect(puissance4).toBeDefined();
expect(typeof puissance4).toEqual('function');
});
test('doit vérifier quand le joueur 1 gagne', () => {
expect(puissance4(
[[ 1, 0, 0, 0 ],
[ 2, 1, 0, 0 ],
[ 2, 1, 1, 2 ],
[ 2, 1, 1, 1 ]]
)).toBeTruthy();
expect(puissance4(
[[ 0, 0, 0, 1 ],
[ 2, 1, 1, 2 ],
[ 2, 1, 1, 2 ],
[ 1, 2, 2, 2 ]]
)).toBeTruthy();
});
test('doit vérifier quand le joueur 2 gagne', () => {
expect(puissance4(
[[ 1, 2, 0, 0, 0 ],
[ 1, 2, 2, 0, 0 ],
[ 2, 2, 1, 1, 2 ],
[ 2, 2, 1, 1, 2 ]]
)).toBeTruthy();
expect(puissance4(
[[ 1, 2, 0, 0, 0 ],
[ 1, 1, 2, 0, 0 ],
[ 2, 2, 1, 1, 2 ],
[ 2, 2, 2, 2, 1 ]]
)).toBeTruthy();
});
test('doit vérifier quand aucun joueur ne gagne', () => {
expect(puissance4(
[[ 1, 1, 0, 0, 0 ],
[ 2, 2, 2, 0, 0 ],
[ 2, 2, 1, 1, 2 ],
[ 2, 2, 1, 1, 2 ]]
)).toBeTruthy();
});
});