-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
147 lines (137 loc) · 4.16 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
import assert from 'node:assert/strict'
import test from 'node:test'
import rehypeParse from 'rehype-parse'
import rehypeStringify from 'rehype-stringify'
import rehypeUnwrapImages from 'rehype-unwrap-images'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import {unified} from 'unified'
test('rehypeUnwrapImages', async function (t) {
await t.test('should expose the public api', async function () {
assert.deepEqual(Object.keys(await import('rehype-unwrap-images')).sort(), [
'default'
])
})
await t.test('should unwrap images', async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p><img alt="hi" src="there.png"></p>')
),
'<img alt="hi" src="there.png">'
)
})
await t.test(
'should unwrap multiple images, w/ whitespace',
async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process(
'<p><img alt="alpha" src="alpha.png"> <img alt="bravo" src="bravo.png"></p>'
)
),
'<img alt="alpha" src="alpha.png"> <img alt="bravo" src="bravo.png">'
)
}
)
await t.test('should not unwrap images next to text', async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p>some text <img alt="and" src="and.png"> an image</p>')
),
'<p>some text <img alt="and" src="and.png"> an image</p>'
)
})
await t.test('should not unwrap if there are no images', async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p>some text</p>')
),
'<p>some text</p>'
)
})
await t.test(
'should not unwrap if there are no images in links',
async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p><a href="#hi"></a></p>')
),
'<p><a href="#hi"></a></p>'
)
}
)
await t.test('should supports images in links', async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p><a href="#hi"><img alt="hi" src="there.png"></a></p>')
),
'<a href="#hi"><img alt="hi" src="there.png"></a>'
)
})
await t.test(
'should not unwrap links next to other content',
async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('<p><a href="#hi"><img alt="hi" src="there.png"></a>!</p>')
),
'<p><a href="#hi"><img alt="hi" src="there.png"></a>!</p>'
)
}
)
await t.test('should not unwrap links with other content', async function () {
assert.equal(
String(
await unified()
.use(rehypeParse, {fragment: true})
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process(
'<p><a href="#hi"><img alt="Hello" src="there.png">, world</a></p>'
)
),
'<p><a href="#hi"><img alt="Hello" src="there.png">, world</a></p>'
)
})
await t.test('should integrate w/ remark', async function () {
assert.equal(
String(
await unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeUnwrapImages)
.use(rehypeStringify)
.process('![hi][image]\n\n![hi](there.png)\n\n[image]: kitten.png')
),
'<img src="kitten.png" alt="hi">\n<img src="there.png" alt="hi">'
)
})
})