-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathfiglet.test.ts
More file actions
471 lines (361 loc) · 14.6 KB
/
Copy pathfiglet.test.ts
File metadata and controls
471 lines (361 loc) · 14.6 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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// test/node-figlet.test.ts
import {describe, it, vi, beforeEach, afterEach, expect, beforeAll, MockInstance} from 'vitest';
import fs from 'fs';
import path from 'path';
import figlet from '../src/figlet'; // Import from src instead of lib
import fontData from '../importable-fonts/Standard'
import miniwi from '../importable-fonts/miniwi'
describe('figlet', () => {
let fetchSpy: MockInstance<{
(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
(input: string | URL | globalThis.Request, init?: RequestInit): Promise<Response>;
}>;
// Helper function to read expected output files
const readExpected = (filename: string): string => {
return fs.readFileSync(path.join(__dirname, `expected/${filename}`), 'utf8');
};
// Setup for font registration tests
beforeEach(() => {
fetchSpy = vi.spyOn(global, 'fetch');
});
afterEach(() => {
fetchSpy.mockRestore(); // Restore the original fetch after each test
figlet.clearLoadedFonts();
figlet.defaults({
fetchFontIfMissing: true,
});
});
describe('preloadFonts tests', () => {
it('preloadFonts should execute without error when valid data is given', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
await figlet.preloadFonts(['Standard', 'Graffiti']);
expect(figlet.loadedFonts()).toStrictEqual(['Standard', 'Graffiti']);
});
it('preloadFonts should execute without error and execute its callback', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockCallback = vi.fn();
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
figlet.preloadFonts(['Standard', 'Graffiti'], mockCallback);
await new Promise(resolve => setTimeout(resolve, 100)); // give time for the callback to execute
expect(mockCallback).toHaveBeenCalledWith();
expect(figlet.loadedFonts()).toStrictEqual(['Standard', 'Graffiti']);
});
it('preloadFonts should throw an error when fetch fails', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockResponse = {
ok: false,
statusText: 'Oopsy!',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
await expect(figlet.preloadFonts(['Standard', 'Graffiti'])).rejects.toThrow();
});
it('preloadFonts should pass the error to its callback if its provided', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockCallback = vi.fn();
const mockResponse = {
ok: false,
statusText: 'Oopsy!',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
figlet.preloadFonts(['Standard', 'Graffiti'], mockCallback);
await new Promise(resolve => setTimeout(resolve, 100)); // give time for the callback to execute
expect(mockCallback).toHaveBeenCalledWith(expect.any(Error));
});
});
// -------------------------------------------------------------------------------------------------------------------
describe('loadFont tests', () => {
beforeEach(() => {
figlet.clearLoadedFonts();
});
const standardMeta = {
hardBlank: '$',
height: 6,
baseline: 5,
maxLength: 16,
oldLayout: 15,
numCommentLines: 13,
printDirection: 0,
fullLayout: 24463,
codeTagCount: 229,
fittingRules: {
vLayout: 3,
vRule5: true,
vRule4: true,
vRule3: true,
vRule2: true,
vRule1: true,
hLayout: 3,
hRule6: false,
hRule5: false,
hRule4: true,
hRule3: true,
hRule2: true,
hRule1: true
}
};
it('loadFont should execute without error for valid inputs', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
const meta = await figlet.loadFont('Standard');
expect(meta).toEqual(standardMeta);
expect(figlet.loadedFonts()).toStrictEqual(['Standard']);
});
it('loadFont should execute without error for valid inputs and pass its return data to its callback', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockCallback = vi.fn();
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
figlet.loadFont('Standard', mockCallback);
await new Promise(resolve => setTimeout(resolve, 100)); // give time for the callback to execute
expect(mockCallback).toHaveBeenCalledWith(null, standardMeta);
});
it('loadFont should throw an error when fetch fails', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockResponse = {
ok: false,
statusText: 'Oopsy!',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
await expect(figlet.loadFont('Standard')).rejects.toThrow();
});
it('loadFont should pass the error to its callback if its provided', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockCallback = vi.fn();
const mockResponse = {
ok: false,
statusText: 'Oopsy!',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
figlet.loadFont('Standard', mockCallback);
await new Promise(resolve => setTimeout(resolve, 100)); // give time for the callback to execute
expect(mockCallback).toHaveBeenCalledWith(expect.any(Error));
});
it('fetchFontIfMissing should be respected when false', async () => {
figlet.defaults({
fetchFontIfMissing: false,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
await expect(figlet.loadFont('Unknown-Font')).rejects.toThrow();
expect(fetchSpy).not.toHaveBeenCalled();
expect(figlet.loadedFonts()).toStrictEqual([]);
});
it('fetchFontIfMissing should be respected when true', async () => {
figlet.defaults({
fetchFontIfMissing: true,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
await expect(figlet.loadFont('Unknown-Font')).rejects.toThrow();
expect(fetchSpy).toHaveBeenCalled();
expect(figlet.loadedFonts()).toStrictEqual([]);
});
});
// -------------------------------------------------------------------------------------------------------------------
describe('text tests', () => {
const expected = readExpected('standard_default');
const text = 'FIGlet\nFonts';
it('text should execute without error for valid inputs', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
const output = await figlet.text(text, 'Standard');
const output2 = await figlet(text, 'Standard');
expect(output).toEqual(expected);
expect(output2).toEqual(expected);
expect(figlet.loadedFonts()).toStrictEqual(['Standard']);
});
it('text should execute without error for valid inputs and pass its return data to its callback', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const mockCallback = vi.fn();
const mockCallback2 = vi.fn();
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(fontData),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
await figlet.text(text, 'Standard', mockCallback);
await figlet(text, 'Standard', mockCallback2);
await new Promise(resolve => setTimeout(resolve, 100)); // give time for the callback to execute
expect(mockCallback).toHaveBeenCalledWith(null, expected);
expect(mockCallback2).toHaveBeenCalledWith(null, expected);
expect(figlet.loadedFonts()).toStrictEqual(['Standard']);
});
it('text should allow empty lines in output', async () => {
const localPath = import.meta.url;
const lastSlashIndex = localPath.lastIndexOf("/");
const directoryPath = localPath.substring(0, lastSlashIndex);
const expected = readExpected('miniwi_multiline');
const multilineText = 'This\n\nis\n\n\na test'
const mockResponse = {
ok: true,
statusText: 'OK',
text: () => Promise.resolve(miniwi),
};
// @ts-ignore
fetchSpy.mockReturnValue(Promise.resolve(mockResponse));
figlet.defaults({
fontPath: `${directoryPath}/../fonts`,
});
expect(figlet.loadedFonts()).toStrictEqual([]);
const output = await figlet.text(multilineText, 'miniwi');
const output2 = await figlet(multilineText, 'miniwi');
expect(output).toEqual(expected);
expect(output2).toEqual(expected);
expect(figlet.loadedFonts()).toStrictEqual(['miniwi']);
});
});
describe('code point rendering', () => {
// Builds a minimal 3-line font where every required character renders as
// itself padded to 3 columns, plus (optionally) two code-tagged extras:
// an emoji (outside the BMP) and the code-0 "missing character" glyph.
const buildTestFont = (withMissingCharGlyph: boolean): string => {
const required: number[] = [];
for (let i = 32; i <= 126; i++) required.push(i);
required.push(196, 214, 220, 228, 246, 252, 223);
const glyph = (art: string): string => {
const line = (art + ' ').slice(0, 3);
return `${line}@\n${line}@\n${line}@@\n`;
};
const codeTagCount = withMissingCharGlyph ? 2 : 1;
let out = `flf2a$ 3 3 5 -1 1 0 0 ${codeTagCount}\n`;
out += 'code point rendering test font\n';
for (const code of required) {
out += glyph(String.fromCodePoint(code));
}
out += '0x1F604 grinning face\n' + glyph(':-D');
if (withMissingCharGlyph) {
out += '0 missing character\n' + glyph('???');
}
return out;
};
const trimmed = (txt: string): string[] =>
txt.split('\n').map((line) => line.trimEnd());
// beforeEach (not beforeAll): the suite-wide afterEach clears loaded fonts
beforeEach(() => {
figlet.parseFont('CodePointTest', buildTestFont(true));
figlet.parseFont('CodePointTestNoFallback', buildTestFont(false));
});
it('renders characters outside the BMP (emoji)', () => {
const output = figlet.textSync('😄', { font: 'CodePointTest' });
expect(trimmed(output)).toEqual([':-D', ':-D', ':-D']);
});
it('renders emoji mixed with BMP text without splitting surrogate pairs', () => {
const output = figlet.textSync('A😄B', { font: 'CodePointTest' });
expect(trimmed(output)).toEqual(['A :-DB', 'A :-DB', 'A :-DB']);
});
it('reverses by code point when printDirection is right-to-left', () => {
const output = figlet.textSync('A😄', {
font: 'CodePointTest',
printDirection: 1,
});
expect(trimmed(output)).toEqual([':-DA', ':-DA', ':-DA']);
});
it('falls back to the code-0 missing character glyph', () => {
const output = figlet.textSync('Ω', { font: 'CodePointTest' });
expect(trimmed(output)).toEqual(['???', '???', '???']);
});
it('uses the fallback glyph only for the characters that are missing', () => {
const output = figlet.textSync('AΩ', { font: 'CodePointTest' });
expect(trimmed(output)).toEqual(['A ???', 'A ???', 'A ???']);
});
it('still skips unknown characters when the font has no code-0 glyph', () => {
const output = figlet.textSync('AΩB', {
font: 'CodePointTestNoFallback',
});
expect(trimmed(output)).toEqual(['A B', 'A B', 'A B']);
});
});
});