forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.test.ts
285 lines (254 loc) · 8.74 KB
/
utils.test.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
// utils are not typed (yet), so we have to disable some checks
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-return */
import fs from 'fs';
import path from 'path';
import { config } from 'dotenv';
import { SuperBlocks } from '../shared/config/curriculum';
import {
createSuperOrder,
getSuperOrder,
getSuperBlockFromDir,
getChapterFromBlock,
getModuleFromBlock,
getBlockOrder
} from './utils';
config({ path: path.resolve(__dirname, '../.env') });
const mockSuperBlocks = [
SuperBlocks.RespWebDesignNew,
SuperBlocks.JsAlgoDataStructNew,
SuperBlocks.FrontEndDevLibs,
SuperBlocks.DataVis,
SuperBlocks.RelationalDb,
SuperBlocks.BackEndDevApis,
SuperBlocks.QualityAssurance,
SuperBlocks.SciCompPy,
SuperBlocks.DataAnalysisPy,
SuperBlocks.InfoSec,
SuperBlocks.MachineLearningPy,
SuperBlocks.CollegeAlgebraPy,
SuperBlocks.FoundationalCSharp,
SuperBlocks.CodingInterviewPrep,
SuperBlocks.ProjectEuler,
SuperBlocks.RespWebDesign,
SuperBlocks.JsAlgoDataStruct,
SuperBlocks.TheOdinProject,
SuperBlocks.FullStackDeveloper
];
const fullSuperOrder = {
[SuperBlocks.RespWebDesignNew]: 0,
[SuperBlocks.JsAlgoDataStructNew]: 1,
[SuperBlocks.FrontEndDevLibs]: 2,
[SuperBlocks.DataVis]: 3,
[SuperBlocks.RelationalDb]: 4,
[SuperBlocks.BackEndDevApis]: 5,
[SuperBlocks.QualityAssurance]: 6,
[SuperBlocks.SciCompPy]: 7,
[SuperBlocks.DataAnalysisPy]: 8,
[SuperBlocks.InfoSec]: 9,
[SuperBlocks.MachineLearningPy]: 10,
[SuperBlocks.CollegeAlgebraPy]: 11,
[SuperBlocks.FoundationalCSharp]: 12,
[SuperBlocks.CodingInterviewPrep]: 13,
[SuperBlocks.ProjectEuler]: 14,
[SuperBlocks.RespWebDesign]: 15,
[SuperBlocks.JsAlgoDataStruct]: 16,
[SuperBlocks.TheOdinProject]: 17,
[SuperBlocks.FullStackDeveloper]: 18
};
const mockSuperBlockStructure = {
chapters: [
{
dashedName: 'html',
modules: [
{
dashedName: 'getting-started-with-freecodecamp',
blocks: [
{
dashedName: 'welcome-to-freecodecamp'
}
]
}
]
},
{
dashedName: 'css',
modules: [
{
dashedName: 'module-one',
blocks: [
{
dashedName: 'block-one-m1'
},
{
dashedName: 'block-two-m1'
}
]
},
{
dashedName: 'module-two',
blocks: [
{
dashedName: 'block-one-m2'
},
{
dashedName: 'block-two-m2'
}
]
}
]
}
]
};
describe('createSuperOrder', () => {
const superOrder = createSuperOrder(mockSuperBlocks);
it('should create the correct object given an array of SuperBlocks', () => {
expect(superOrder).toStrictEqual(fullSuperOrder);
});
it('throws when not given an array of SuperBlocks', () => {
expect.assertions(4);
expect(() => getSuperOrder()).toThrow();
expect(() => getSuperOrder(null)).toThrow();
expect(() => getSuperOrder('')).toThrow();
expect(() => getSuperOrder(['respansive-wib-desoin'])).toThrow();
});
});
describe('getSuperOrder', () => {
it('returns a number for valid curriculum', () => {
expect.assertions(1);
expect(typeof getSuperOrder('responsive-web-design')).toBe('number');
});
it('throws for unknown curriculum', () => {
expect.assertions(4);
expect(() => getSuperOrder()).toThrow();
expect(() => getSuperOrder(null)).toThrow();
expect(() => getSuperOrder('')).toThrow();
expect(() => getSuperOrder('respansive-wib-desoin')).toThrow();
});
it('throws for "certifications"', () => {
expect.assertions(1);
expect(() => getSuperOrder('certifications')).toThrow();
});
it.skip('returns unique numbers for all current curriculum', () => {
if (
process.env.SHOW_NEW_CURRICULUM !== 'true' &&
process.env.SHOW_UPCOMING_CHANGES !== 'true'
) {
expect.assertions(17);
} else if (process.env.SHOW_NEW_CURRICULUM !== 'true') {
expect.assertions(17);
} else if (process.env.SHOW_UPCOMING_CHANGES !== 'true') {
expect.assertions(17);
} else {
expect.assertions(19);
}
expect(getSuperOrder(SuperBlocks.RespWebDesignNew)).toBe(0);
expect(getSuperOrder(SuperBlocks.JsAlgoDataStructNew)).toBe(1);
expect(getSuperOrder(SuperBlocks.FrontEndDevLibs)).toBe(2);
expect(getSuperOrder(SuperBlocks.DataVis)).toBe(3);
expect(getSuperOrder(SuperBlocks.RelationalDb)).toBe(4);
expect(getSuperOrder(SuperBlocks.BackEndDevApis)).toBe(5);
expect(getSuperOrder(SuperBlocks.QualityAssurance)).toBe(6);
expect(getSuperOrder(SuperBlocks.SciCompPy)).toBe(7);
expect(getSuperOrder(SuperBlocks.DataAnalysisPy)).toBe(8);
expect(getSuperOrder(SuperBlocks.InfoSec)).toBe(9);
expect(getSuperOrder(SuperBlocks.MachineLearningPy)).toBe(10);
expect(getSuperOrder(SuperBlocks.CollegeAlgebraPy)).toBe(11);
expect(getSuperOrder(SuperBlocks.FoundationalCSharp)).toBe(12);
expect(getSuperOrder(SuperBlocks.CodingInterviewPrep)).toBe(13);
expect(getSuperOrder(SuperBlocks.ProjectEuler)).toBe(14);
expect(getSuperOrder(SuperBlocks.RespWebDesign)).toBe(15);
expect(getSuperOrder(SuperBlocks.JsAlgoDataStruct)).toBe(16);
if (
process.env.SHOW_NEW_CURRICULUM === 'true' &&
process.env.SHOW_UPCOMING_CHANGES === 'true'
) {
expect(getSuperOrder(SuperBlocks.TheOdinProject)).toBe(17);
expect(getSuperOrder(SuperBlocks.FullStackDeveloper)).toBe(18);
} else if (process.env.SHOW_NEW_CURRICULUM === 'true') {
return;
} else if (process.env.SHOW_UPCOMING_CHANGES === 'true') {
expect(getSuperOrder(SuperBlocks.TheOdinProject)).toBe(17);
expect(getSuperOrder(SuperBlocks.FullStackDeveloper)).toBe(18);
}
});
});
describe('getSuperBlockFromPath', () => {
const directories = fs.readdirSync(
path.join(__dirname, './challenges/english')
);
it('handles all the directories in ./challenges/english', () => {
expect.assertions(25);
for (const directory of directories) {
expect(() => getSuperBlockFromDir(directory)).not.toThrow();
}
});
it("returns valid superblocks (or 'certifications') for all valid arguments", () => {
expect.assertions(25);
const superBlockPaths = directories.filter(x => x !== '00-certifications');
for (const directory of superBlockPaths) {
expect(Object.values(SuperBlocks)).toContain(
getSuperBlockFromDir(directory)
);
}
expect(getSuperBlockFromDir('00-certifications')).toBe('certifications');
});
it("returns all valid superblocks (and 'certifications')", () => {
expect.assertions(1);
const superBlocks = new Set();
for (const directory of directories) {
superBlocks.add(getSuperBlockFromDir(directory));
}
// + 1 for 'certifications'
expect(superBlocks.size).toBe(Object.values(SuperBlocks).length + 1);
});
it('throws if a directory is unknown', () => {
expect.assertions(1);
expect(() => getSuperBlockFromDir('unknown')).toThrow();
});
});
describe('getChapterFromBlock', () => {
it('returns a chapter if it exists', () => {
expect(
getChapterFromBlock('welcome-to-freecodecamp', mockSuperBlockStructure)
).toEqual('html');
});
it('throws if a chapter does not exist', () => {
expect(() =>
getChapterFromBlock('welcome-to-freecodecamper', mockSuperBlockStructure)
).toThrow(
'There is no chapter corresponding to block "welcome-to-freecodecamper". It\'s possible that the block is missing in the superblock structure.'
);
});
});
describe('getModuleFromBlock', () => {
it('returns a module if it exists', () => {
expect(
getModuleFromBlock('welcome-to-freecodecamp', mockSuperBlockStructure)
).toEqual('getting-started-with-freecodecamp');
});
it('throws if a module does not exist', () => {
expect(() =>
getModuleFromBlock('welcome-to-freecodecamper', mockSuperBlockStructure)
).toThrow(
'There is no module corresponding to block "welcome-to-freecodecamper". It\'s possible that the block is missing in the superblock structure.'
);
});
});
describe('getBlockOrder', () => {
it('returns the correct order when the chapter only contains one module', () => {
expect(
getBlockOrder('welcome-to-freecodecamp', mockSuperBlockStructure)
).toBe(1);
});
it('returns the correct order when the chapter contains multiple modules', () => {
expect(getBlockOrder('block-one-m2', mockSuperBlockStructure)).toBe(4);
});
it('throws if a block does not exist', () => {
expect(() =>
getBlockOrder('welcome-to-freecodecamper', mockSuperBlockStructure)
).toThrow(
'The block "welcome-to-freecodecamper" does not appear in the superblock structure.'
);
});
});