-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
test.js
260 lines (219 loc) · 8.39 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
import assert from 'node:assert/strict'
import test from 'node:test'
import dictionaryEn from 'dictionary-en'
import {retext} from 'retext'
import retextEmoji from 'retext-emoji'
import retextSpell from 'retext-spell'
test('retextSpell', async function (t) {
await t.test('should expose the public api', async function () {
assert.deepEqual(Object.keys(await import('retext-spell')).sort(), [
'default'
])
})
await t.test('should throw when without `options`', async function () {
assert.throws(function () {
// @ts-expect-error: check how the runtime handles missing options.
retext().use(retextSpell).freeze()
}, /Missing `dictionary` in options/)
})
await t.test('should fail load errors on the VFile', async function () {
const processor = retext().use(retextSpell, function (callback) {
setImmediate(function () {
callback(new Error('load error'))
})
})
try {
await processor.process('')
assert.fail()
} catch (error) {
assert.match(String(error), /load error/)
}
// Coverage: future files can fail immediately.
try {
await processor.process('')
assert.fail()
} catch (error) {
assert.match(String(error), /load error/)
}
})
await t.test('should emit a message w/ metadata', async function () {
const file = await retext().use(retextSpell, dictionaryEn).process('kolor')
assert.deepEqual(
JSON.parse(JSON.stringify({...file.messages[0], ancestors: []})),
{
actual: 'kolor',
ancestors: [],
column: 1,
expected: ['color', 'dolor'],
fatal: false,
line: 1,
message:
'Unexpected unknown word `kolor`, expected for example `color`, `dolor`',
name: '1:1-1:6',
place: {
start: {column: 1, line: 1, offset: 0},
end: {column: 6, line: 1, offset: 5}
},
reason:
'Unexpected unknown word `kolor`, expected for example `color`, `dolor`',
ruleId: 'kolor',
source: 'retext-spell',
url: 'https://github.com/retextjs/retext-spell#readme'
}
)
})
await t.test('should work', async function () {
const file = await retext().use(retextSpell, dictionaryEn).process('kolor')
assert.deepEqual(file.messages.map(String), [
'1:1-1:6: Unexpected unknown word `kolor`, expected for example `color`, `dolor`'
])
})
await t.test('should work with dictionary callbacks', async function () {
const file = await retext()
.use(retextSpell, function (onload) {
setTimeout(function () {
onload(undefined, dictionaryEn)
}, 10)
})
.process('kolor')
assert.deepEqual(file.messages.map(String), [
'1:1-1:6: Unexpected unknown word `kolor`, expected for example `color`, `dolor`'
])
})
await t.test('should work w/ repeated misspellings', async function () {
const file = await retext()
.use(retextSpell, dictionaryEn)
.process('kolor and kolor and kolor')
assert.deepEqual(file.messages.map(String), [
'1:1-1:6: Unexpected unknown word `kolor`, expected for example `color`, `dolor`',
'1:11-1:16: Unexpected unknown word `kolor`, expected for example `color`, `dolor`',
'1:21-1:26: Unexpected unknown word `kolor`, expected for example `color`, `dolor`'
])
})
await t.test(
'should work w/ repeated calls to misspellings',
async function () {
const processor = retext().use(retextSpell, dictionaryEn)
const fileA = await processor.process('kolor')
assert.equal(fileA.messages.length, 1)
const fileB = await processor.process('kolor')
assert.equal(fileB.messages.length, 1)
}
)
await t.test('should support `options.max`', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn, max: 1})
.process('Soem useles mispelt documeant')
assert.deepEqual(file.messages.map(String), [
'1:1-1:5: Unexpected unknown word `Soem`, expected for example `Seem`, `Stem`, `Sum`, `Poem`, `Some`',
'1:6-1:12: No longer generating suggestions to improve performance',
'1:6-1:12: Unexpected unknown word `useles`',
'1:13-1:20: Unexpected unknown word `mispelt`',
'1:21-1:30: Unexpected unknown word `documeant`'
])
})
await t.test('should ignore literal words by default', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn})
.process('“kolor”')
assert.deepEqual(file.messages.map(String), [])
})
await t.test(
'should include literal words w/ `options.ignoreLiteral: false`',
async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn, ignoreLiteral: false})
.process('“kolor”')
assert.deepEqual(file.messages.map(String), [
'1:2-1:7: Unexpected unknown word `kolor`, expected for example `color`, `dolor`'
])
}
)
await t.test(
'should warn for misspellings in hyphenated combination words',
async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn, ignoreLiteral: false})
.process('wrongely-spelled-word')
assert.deepEqual(file.messages.map(String), [
'1:1-1:22: Unexpected unknown word `wrongely-spelled-word`'
])
}
)
await t.test(
'should not warn for correct words in hyphenated combination words',
async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn, ignoreLiteral: false})
.process('random-hyphenated-word')
assert.deepEqual(file.messages.map(String), [])
}
)
await t.test('should support `options.ignore`', async function () {
const file = await retext()
.use(retextSpell, {
dictionary: dictionaryEn,
ignore: ['kolor', 'wrongely']
})
.process('kolor and wrongely-spelled-word')
assert.deepEqual(file.messages.map(String), [])
})
await t.test('should ignore digits', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn})
.process('123456 alpha 3.14')
assert.deepEqual(file.messages.map(String), [])
})
await t.test(
'should include literal words w/ `options.ignoreDigits: false`',
async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn, ignoreDigits: false})
.process('123456 alpha 3.14')
assert.deepEqual(file.messages.map(String), [
'1:1-1:7: Unexpected unknown word `123456`, expected for example `12th456`, `12th3456`, `12th56`',
'1:14-1:18: Unexpected unknown word `3.14`, expected for example `3.14th`'
])
}
)
await t.test('should include words that contain digits', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn})
.process('768x1024')
assert.deepEqual(file.messages.map(String), [
'1:1-1:9: Unexpected unknown word `768x1024`, expected for example `76th8x1024`, `76thx1024`'
])
})
await t.test('should ignore times', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn})
.process('Let’s meet at 2:41pm. On my way! ETA 11:50!')
assert.deepEqual(file.messages.map(String), [])
})
await t.test('should support `options.personal`', async function () {
const file = await retext()
// Forbid US spelling, mark UK spelling as correct.
.use(retextSpell, {
dictionary: dictionaryEn,
personal: '*color\ncolour\n'
})
.process('color coloor colour')
assert.deepEqual(file.messages.map(String), [
'1:1-1:6: Unexpected unknown word `color`, expected for example `dolor`, `colors`, `colon`, `colour`, `Colo`',
'1:7-1:13: Unexpected unknown word `coloor`, expected for example `colour`'
])
})
await t.test('should integrate w/ `retext-emoji` (1)', async function () {
const file = await retext()
.use(retextSpell, {dictionary: dictionaryEn})
.process('Pages ⚡️')
assert.match(String(file.messages), /Unexpected unknown word `️`,/)
})
await t.test('should integrate w/ `retext-emoji` (2)', async function () {
const file = await retext()
.use(retextEmoji)
.use(retextSpell, {dictionary: dictionaryEn})
.process('Pages ⚡️')
assert.deepEqual(file.messages.map(String), [])
})
})