-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
132 lines (116 loc) · 3.61 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
import assert from 'node:assert/strict'
import test from 'node:test'
import {h} from 'hastscript'
import {fromText} from 'hast-util-from-text'
import {u} from 'unist-builder'
test('fromText', async function (t) {
await t.test('should expose the public api', async function () {
assert.deepEqual(Object.keys(await import('hast-util-from-text')).sort(), [
'fromText'
])
})
await t.test('should set text nodes', async function () {
const node = u('text')
// @ts-expect-error: check how a missing `value` is handled.
fromText(node, 'foo')
assert.deepEqual(node, u('text', 'foo'))
})
await t.test('should reset text nodes (1)', async function () {
const node = u('text')
// @ts-expect-error: check how a missing `value` is handled.
fromText(node)
assert.deepEqual(node, u('text', ''))
})
await t.test('should reset text nodes (2)', async function () {
const node = u('text', 'foo')
fromText(node, '')
assert.deepEqual(node, u('text', ''))
})
await t.test('should set parent nodes', async function () {
const node = h('p')
fromText(node, 'foo')
assert.deepEqual(node, h('p', 'foo'))
})
await t.test(
'should set parent nodes with <br>s if ␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\nbar\nbaz')
assert.deepEqual(node, h('p', ['foo', h('br'), 'bar', h('br'), 'baz']))
}
)
await t.test(
'should set parent nodes with <br>s if ␍ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\rbar\rbaz')
assert.deepEqual(node, h('p', ['foo', h('br'), 'bar', h('br'), 'baz']))
}
)
await t.test(
'should set parent nodes with <br>s if ␍␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\r\nbar\r\nbaz')
assert.deepEqual(node, h('p', ['foo', h('br'), 'bar', h('br'), 'baz']))
}
)
await t.test(
'should set parent nodes with <br>s if a final ␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\n')
assert.deepEqual(node, h('p', ['foo', h('br')]))
}
)
await t.test(
'should set parent nodes with <br>s if a final ␍␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\r')
assert.deepEqual(node, h('p', ['foo', h('br')]))
}
)
await t.test(
'should set parent nodes with <br>s if a final ␍␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, 'foo\r\n')
assert.deepEqual(node, h('p', ['foo', h('br')]))
}
)
await t.test(
'should set parent nodes with <br>s if an initial ␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, '\nfoo')
assert.deepEqual(node, h('p', [h('br'), 'foo']))
}
)
await t.test(
'should set parent nodes with <br>s if an initial ␍␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, '\rfoo')
assert.deepEqual(node, h('p', [h('br'), 'foo']))
}
)
await t.test(
'should set parent nodes with <br>s if an initial ␍␊ is used',
async function () {
const node = h('p', 'foo')
fromText(node, '\r\nfoo')
assert.deepEqual(node, h('p', [h('br'), 'foo']))
}
)
await t.test('should reset parent nodes (1)', async function () {
const node = h('p')
fromText(node)
assert.deepEqual(node, h('p'))
})
await t.test('should reset parent nodes (2)', async function () {
const node = h('p', 'foo')
fromText(node)
assert.deepEqual(node, h('p'))
})
})