-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
test.js
621 lines (537 loc) · 14.9 KB
/
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
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/**
* @typedef {import('hast').Root} HastRoot
* @typedef {import('mdast').Parents} Parents
* @typedef {import('mdast').PhrasingContent} PhrasingContent
* @typedef {import('mdast').Root} Root
* @typedef {import('xast').Root} XastRoot
*/
import assert from 'node:assert/strict'
import test from 'node:test'
import stripAnsi from 'strip-ansi'
import {fromMarkdown} from 'mdast-util-from-markdown'
import {gfmFromMarkdown} from 'mdast-util-gfm'
import {gfm} from 'micromark-extension-gfm'
import {EXIT, SKIP, CONTINUE, visitParents} from 'unist-util-visit-parents'
// To do: remove cast when `mdast-util-from-markdown` is updated.
const tree = /** @type {Root} */ (
fromMarkdown('Some _emphasis_, **importance**, and `code`.')
)
const paragraph = tree.children[0]
assert(paragraph.type === 'paragraph')
const emphasis = paragraph.children[1]
assert(emphasis.type === 'emphasis')
const strong = paragraph.children[3]
assert(strong.type === 'strong')
const textNodes = 6
const stopIndex = 5
const skipIndex = 7
const skipReverseIndex = 6
const types = [
'root', // []
'paragraph', // [tree]
'text', // [tree, paragraph]
'emphasis', // [tree, paragraph]
'text', // [tree, paragraph, emphasis]
'text', // [tree, paragraph]
'strong', // [tree, paragraph]
'text', // [tree, paragraph, strong]
'text', // [tree, paragraph]
'inlineCode', // [tree, paragraph]
'text' // [tree, paragraph]
]
const reverseTypes = [
'root',
'paragraph',
'text',
'inlineCode',
'text',
'strong',
'text',
'text',
'emphasis',
'text',
'text'
]
/** @type {Array<Array<Parents>>} */
const ancestors = [
[],
[tree],
[tree, paragraph],
[tree, paragraph],
[tree, paragraph, emphasis],
[tree, paragraph],
[tree, paragraph],
[tree, paragraph, strong],
[tree, paragraph],
[tree, paragraph],
[tree, paragraph]
]
/** @type {Array<Array<Parents>>} */
const textAncestors = [
[tree, paragraph],
[tree, paragraph, emphasis],
[tree, paragraph],
[tree, paragraph, strong],
[tree, paragraph],
[tree, paragraph]
]
test('visitParents', async function (t) {
await t.test('should expose the public api', async function () {
assert.deepEqual(
Object.keys(await import('unist-util-visit-parents')).sort(),
['CONTINUE', 'EXIT', 'SKIP', 'visitParents']
)
})
await t.test('should fail without tree', async function () {
assert.throws(function () {
// @ts-expect-error: check that the runtime throws an error.
visitParents()
}, /TypeError: visitor is not a function/)
})
await t.test('should fail without visitor', async function () {
assert.throws(function () {
// @ts-expect-error: check that the runtime throws an error.
visitParents(tree)
}, /TypeError: visitor is not a function/)
})
await t.test('should iterate over all nodes', function () {
let n = 0
visitParents(tree, function (node, parents) {
assert.strictEqual(node.type, types[n], 'should be the expected type')
assert.deepStrictEqual(
parents,
ancestors[n],
'should have expected parents'
)
n++
})
assert.equal(n, types.length, 'should visit all nodes')
})
await t.test('should iterate over all nodes, backwards', function () {
let n = 0
visitParents(
tree,
function (node) {
assert.strictEqual(
node.type,
reverseTypes[n],
'should be the expected type'
)
n++
},
true
)
assert.equal(n, reverseTypes.length, 'should visit all nodes in reverse')
})
await t.test('should only visit a given `type`', function () {
let n = 0
visitParents(tree, 'text', function (node, parents) {
assert.strictEqual(node.type, 'text')
assert.deepStrictEqual(parents, textAncestors[n])
n++
})
assert.equal(n, textNodes, 'should visit all nodes')
})
await t.test('should only visit given `type`s', function () {
const types = ['text', 'inlineCode']
let n = 0
visitParents(tree, types, function (node) {
assert.notStrictEqual(types.indexOf(node.type), -1, 'should match')
n++
})
assert.equal(n, 7, 'should visit all matching nodes')
})
await t.test('should accept any `is`-compatible test function', function () {
let n = 0
/** @type {Array<PhrasingContent>} */
const nodes = [
paragraph.children[4],
paragraph.children[5],
paragraph.children[6]
]
visitParents(
tree,
function (_, index) {
return typeof index === 'number' && index > 3
},
/**
* @returns {undefined}
*/
function (node, parents) {
const parent = parents[parents.length - 1]
// @ts-expect-error: `node` can always be inside parent.
const index = parent ? parent.children.indexOf(node) : undefined
const info = '(' + (parent && parent.type) + ':' + index + ')'
assert.strictEqual(node, nodes[n], 'should be a requested node ' + info)
n++
}
)
assert.equal(n, 3, 'should visit all passing nodes')
})
await t.test('should accept an array of `is`-compatible tests', function () {
const expected = new Set(['root', 'paragraph', 'emphasis', 'strong'])
let n = 0
visitParents(
tree,
[
function (node) {
return node.type === 'root'
},
'paragraph',
{value: '.'},
'emphasis',
'strong'
],
function (node) {
const ok =
expected.has(node.type) || ('value' in node && node.value === '.')
assert.ok(ok, 'should be a requested type: ' + node.type)
n++
}
)
assert.equal(n, 5, 'should visit all passing nodes')
})
await t.test('should stop if `visitor` stops', function () {
let n = -1
visitParents(tree, function (node) {
assert.strictEqual(node.type, types[++n])
return n === stopIndex ? EXIT : CONTINUE
})
assert.equal(n, stopIndex, 'should visit nodes until `EXIT` is given')
})
await t.test('should stop if `visitor` stops (tuple)', function () {
let n = -1
visitParents(tree, function (node) {
assert.strictEqual(node.type, types[++n])
return [n === stopIndex ? EXIT : CONTINUE]
})
assert.equal(n, stopIndex, 'should visit nodes until `EXIT` is given')
})
await t.test('should stop if `visitor` stops, backwards', function () {
let n = 0
visitParents(
tree,
function (node) {
assert.strictEqual(
node.type,
reverseTypes[n++],
'should be the expected type'
)
return n === stopIndex ? EXIT : CONTINUE
},
true
)
assert.equal(n, stopIndex, 'should visit nodes until `EXIT` is given')
})
await t.test('should skip if `visitor` skips', function () {
let n = 0
let count = 0
visitParents(tree, function (node) {
assert.strictEqual(node.type, types[n++], 'should be the expected type')
count++
if (n === skipIndex) {
n++ // The one node inside it.
return SKIP
}
})
assert.equal(
count,
types.length - 1,
'should visit nodes except when `SKIP` is given'
)
})
await t.test('should skip if `visitor` skips (tuple)', function () {
let n = 0
let count = 0
visitParents(tree, function (node) {
assert.strictEqual(node.type, types[n++], 'should be the expected type')
count++
if (n === skipIndex) {
n++ // The one node inside it.
return [SKIP]
}
})
assert.equal(
count,
types.length - 1,
'should visit nodes except when `SKIP` is given'
)
})
await t.test('should skip if `visitor` skips, backwards', function () {
let n = 0
let count = 0
visitParents(
tree,
function (node) {
assert.strictEqual(
node.type,
reverseTypes[n++],
'should be the expected type'
)
count++
if (n === skipReverseIndex) {
n++ // The one node inside it.
return SKIP
}
},
true
)
assert.equal(
count,
reverseTypes.length - 1,
'should visit nodes except when `SKIP` is given'
)
})
await t.test(
'should support a given `index` to iterate over next (`0` to reiterate)',
function () {
let n = 0
let again = false
const expected = [
'root',
'paragraph',
'text',
'emphasis',
'text',
'text',
'strong',
'text',
'text', // Again.
'emphasis',
'text',
'text',
'strong',
'text',
'text',
'inlineCode',
'text'
]
visitParents(tree, function (node) {
assert.strictEqual(
node.type,
expected[n++],
'should be the expected type'
)
if (again === false && node.type === 'strong') {
again = true
return 0 // Start over.
}
})
assert.equal(n, expected.length, 'should visit nodes again')
}
)
await t.test(
'should support a given `index` to iterate over next (`children.length` to skip further children)',
function () {
let n = 0
let again = false
const expected = [
'root',
'paragraph',
'text',
'emphasis',
'text',
'text',
'strong', // Skip here. */
'text'
]
visitParents(tree, function (node, parents) {
const parent = parents[parents.length - 1]
assert.strictEqual(
node.type,
expected[n++],
'should be the expected type'
)
if (again === false && node.type === 'strong') {
again = true
return parent.children.length // Skip siblings.
}
})
assert.equal(n, expected.length, 'should skip nodes')
}
)
await t.test(
'should support any other given `index` to iterate over next',
function () {
let n = 0
let again = false
const expected = [
'root',
'paragraph',
'text',
'emphasis',
'text',
'text',
'strong',
'text',
'inlineCode', // Skip to here.
'text'
]
visitParents(tree, function (node, parents) {
const parent = parents[parents.length - 1]
// @ts-expect-error: `node` can always be inside parent.
const index = parent ? parent.children.indexOf(node) : undefined
assert.strictEqual(
node.type,
expected[n++],
'should be the expected type'
)
if (index !== undefined && again === false && node.type === 'strong') {
again = true
return index + 2 // Skip to `inlineCode`.
}
})
assert.equal(n, expected.length, 'should skip nodes')
}
)
await t.test(
'should support any other given `index` to iterate over next (tuple)',
function () {
let n = 0
let again = false
const expected = [
'root',
'paragraph',
'text',
'emphasis',
'text',
'text',
'strong',
'text',
'inlineCode', // Skip to here.
'text'
]
visitParents(tree, function (node, parents) {
const parent = parents[parents.length - 1]
// @ts-expect-error: `node` can always be inside parent.
const index = parent ? parent.children.indexOf(node) : undefined
assert.strictEqual(
node.type,
expected[n++],
'should be the expected type'
)
if (index !== undefined && again === false && node.type === 'strong') {
again = true
return [undefined, index + 2] // Skip to `inlineCode`.
}
})
assert.equal(n, expected.length, 'should skip nodes')
}
)
await t.test('should visit added nodes', function () {
const tree = fromMarkdown('Some _emphasis_, **importance**, and `code`.')
const other = fromMarkdown('Another ~~sentence~~.', {
extensions: [gfm()],
mdastExtensions: [gfmFromMarkdown()]
}).children[0]
const l = types.length + 5 // (p, text, delete, text, text)
let n = 0
visitParents(tree, function (_, parents) {
n++
if (n === 2) {
const parent = parents[parents.length - 1]
assert(parent.type === 'root')
parent.children.push(other)
}
})
assert.equal(n, l, 'should walk over all nodes')
})
await t.test('should recurse into a bazillion nodes', function () {
const expected = 6000
const tree = fromMarkdown(
Array.from({length: expected / 4}).join('* 1. ') + 'asd'
)
let n = 1
visitParents(tree, function () {
n++
})
assert.equal(n, expected, 'should walk over all nodes')
})
await t.test('should add a pretty stack (hast)', function () {
/** @type {HastRoot} */
const tree = {
type: 'root',
children: [
{
type: 'element',
tagName: 'div',
properties: {},
children: [{type: 'text', value: 'Oh no!'}]
}
]
}
/** @type {string} */
let message = ''
try {
visitParents(tree, 'text', function (node) {
throw new Error(node.value)
})
} catch (error) {
message = String(
error && typeof error === 'object' && 'stack' in error
? error.stack
: error
)
}
const stack = stripAnsi(message)
.replace(/[-\w:\\/]+[\\/](\w+.js):\d+:\d+/g, '$1:1:1')
.split('\n')
.slice(0, 6)
.join('\n')
assert.equal(
stack,
[
'Error: Oh no!',
' at test.js:1:1',
' at node (text) (index.js:1:1)',
' at node (element<div>) (index.js:1:1)',
' at node (root) (index.js:1:1)',
' at visitParents (index.js:1:1)'
].join('\n'),
'should provide a useful stack trace'
)
})
await t.test('should add a pretty stack (xast)', function () {
/** @type {XastRoot} */
const tree = {
type: 'root',
children: [
{
type: 'element',
name: 'xml',
attributes: {},
children: [{type: 'text', value: 'Oh no!'}]
}
]
}
/** @type {string} */
let message = ''
try {
visitParents(tree, 'text', function (node) {
throw new Error(node.value)
})
} catch (error) {
message = String(
error && typeof error === 'object' && 'stack' in error
? error.stack
: error
)
}
const stack = stripAnsi(message)
.replace(/[-\w:\\/]+[\\/](\w+.js):\d+:\d+/g, '$1:1:1')
.split('\n')
.slice(0, 6)
.join('\n')
assert.equal(
stack,
[
'Error: Oh no!',
' at test.js:1:1',
' at node (text) (index.js:1:1)',
' at node (element<xml>) (index.js:1:1)',
' at node (root) (index.js:1:1)',
' at visitParents (index.js:1:1)'
].join('\n')
)
})
})