Skip to content

Commit 189cd94

Browse files
committedFeb 8, 2023
Use Node test runner
1 parent 791ab07 commit 189cd94

File tree

2 files changed

+221
-260
lines changed

2 files changed

+221
-260
lines changed
 

‎package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@
3939
"vfile": "^5.1.0"
4040
},
4141
"devDependencies": {
42-
"@types/tape": "^4.0.0",
42+
"@types/node": "^18.0.0",
4343
"c8": "^7.0.0",
4444
"prettier": "^2.0.0",
4545
"remark-cli": "^11.0.0",
4646
"remark-preset-wooorm": "^9.0.0",
47-
"tape": "^5.0.0",
4847
"type-coverage": "^2.0.0",
4948
"typescript": "^4.0.0",
5049
"xo": "^0.53.0"

‎test.js

+220-258
Original file line numberDiff line numberDiff line change
@@ -4,132 +4,119 @@ import fs from 'node:fs'
44
import path from 'node:path'
55
import process from 'node:process'
66
import {fileURLToPath, URL} from 'node:url'
7-
import test from 'tape'
7+
import test from 'node:test'
88
import buffer from 'is-buffer'
99
import {toVFile, read, readSync, write, writeSync} from './index.js'
1010

1111
const join = path.join
1212

1313
const fixture = fs.readFileSync('readme.md', 'utf8')
1414

15-
test('toVFile()', (t) => {
16-
t.test('should accept a string as `.path`', (t) => {
15+
test('toVFile()', async (t) => {
16+
await t.test('should accept a string as `.path`', () => {
1717
const file = toVFile(join('foo', 'bar', 'baz.qux'))
1818

19-
t.equal(file.path, join('foo', 'bar', 'baz.qux'))
20-
t.equal(file.basename, 'baz.qux')
21-
t.equal(file.stem, 'baz')
22-
t.equal(file.extname, '.qux')
23-
t.equal(file.dirname, join('foo', 'bar'))
24-
t.equal(file.value, undefined)
25-
t.end()
19+
assert.equal(file.path, join('foo', 'bar', 'baz.qux'))
20+
assert.equal(file.basename, 'baz.qux')
21+
assert.equal(file.stem, 'baz')
22+
assert.equal(file.extname, '.qux')
23+
assert.equal(file.dirname, join('foo', 'bar'))
24+
assert.equal(file.value, undefined)
2625
})
2726

28-
t.test('should accept a buffer as `.path`', (t) => {
27+
await t.test('should accept a buffer as `.path`', () => {
2928
const file = toVFile(Buffer.from('readme.md'))
3029

31-
t.equal(file.path, 'readme.md')
32-
t.equal(file.value, undefined)
33-
t.end()
30+
assert.equal(file.path, 'readme.md')
31+
assert.equal(file.value, undefined)
3432
})
3533

36-
t.test('should accept an object', (t) => {
34+
await t.test('should accept an object', () => {
3735
const file = toVFile({
3836
dirname: join('foo', 'bar'),
3937
stem: 'baz',
4038
extname: '.qux'
4139
})
4240

43-
t.equal(file.path, join('foo', 'bar', 'baz.qux'))
44-
t.equal(file.basename, 'baz.qux')
45-
t.equal(file.stem, 'baz')
46-
t.equal(file.extname, '.qux')
47-
t.equal(file.dirname, join('foo', 'bar'))
48-
t.equal(file.value, undefined)
49-
t.end()
41+
assert.equal(file.path, join('foo', 'bar', 'baz.qux'))
42+
assert.equal(file.basename, 'baz.qux')
43+
assert.equal(file.stem, 'baz')
44+
assert.equal(file.extname, '.qux')
45+
assert.equal(file.dirname, join('foo', 'bar'))
46+
assert.equal(file.value, undefined)
5047
})
5148

52-
t.test('should accept a vfile', (t) => {
49+
await t.test('should accept a vfile', () => {
5350
const first = toVFile()
5451
const second = toVFile(first)
5552

56-
t.equal(first, second)
57-
t.end()
53+
assert.equal(first, second)
5854
})
5955

60-
t.test('should accept a WHATWG URL object', (t) => {
56+
await t.test('should accept a WHATWG URL object', () => {
6157
const dir = fileURLToPath(new URL('./', import.meta.url))
6258
const file = toVFile(new URL('baz.qux', import.meta.url))
6359

64-
t.equal(file.path, join(dir, 'baz.qux'))
65-
t.equal(file.basename, 'baz.qux')
66-
t.equal(file.stem, 'baz')
67-
t.equal(file.extname, '.qux')
68-
t.equal(file.dirname, dir.replace(/[/\\]$/, ''))
69-
t.equal(file.value, undefined)
70-
t.end()
60+
assert.equal(file.path, join(dir, 'baz.qux'))
61+
assert.equal(file.basename, 'baz.qux')
62+
assert.equal(file.stem, 'baz')
63+
assert.equal(file.extname, '.qux')
64+
assert.equal(file.dirname, dir.replace(/[/\\]$/, ''))
65+
assert.equal(file.value, undefined)
7166
})
7267
})
7368

74-
test('toVFile.readSync', (t) => {
75-
t.equal(toVFile.readSync, readSync, 'should export as an identifier')
69+
test('toVFile.readSync', async (t) => {
70+
assert.equal(toVFile.readSync, readSync, 'should export as an identifier')
7671

77-
t.test('should fail without path', (t) => {
78-
t.throws(() => {
72+
await t.test('should fail without path', () => {
73+
assert.throws(() => {
7974
// @ts-expect-error runtime.
8075
toVFile.readSync()
8176
}, /path/i)
82-
83-
t.end()
8477
})
8578

86-
t.test('should work (buffer without encoding)', (t) => {
79+
await t.test('should work (buffer without encoding)', () => {
8780
const file = toVFile.readSync('readme.md')
8881

89-
t.equal(file.path, 'readme.md')
90-
t.ok(buffer(file.value))
91-
t.equal(file.toString(), fixture)
92-
t.end()
82+
assert.equal(file.path, 'readme.md')
83+
assert.ok(buffer(file.value))
84+
assert.equal(file.toString(), fixture)
9385
})
9486

95-
t.test('should work (string with encoding)', (t) => {
87+
await t.test('should work (string with encoding)', () => {
9688
const file = toVFile.readSync('readme.md', 'utf8')
9789

98-
t.equal(file.path, 'readme.md')
99-
t.equal(typeof file.value, 'string')
100-
t.equal(file.toString(), fixture)
101-
t.end()
90+
assert.equal(file.path, 'readme.md')
91+
assert.equal(typeof file.value, 'string')
92+
assert.equal(file.toString(), fixture)
10293
})
10394

104-
t.throws(
95+
assert.throws(
10596
() => {
10697
toVFile.readSync('missing.md')
10798
},
10899
/ENOENT/,
109100
'should throw on non-existing files'
110101
)
111102

112-
t.test('should honor file.cwd when file.path is relative', (t) => {
103+
await t.test('should honor file.cwd when file.path is relative', () => {
113104
const cwd = path.join(process.cwd(), 'lib')
114105
const file = toVFile.readSync({path: 'index.js', cwd}, 'utf8')
115106

116-
t.equal(typeof file.value, 'string')
117-
118-
t.end()
107+
assert.equal(typeof file.value, 'string')
119108
})
120109

121-
t.test(
110+
await t.test(
122111
'should honor file.cwd when file.path is relative, even with relative cwd',
123-
(t) => {
112+
() => {
124113
const file = toVFile.readSync({path: 'index.js', cwd: 'lib'}, 'utf8')
125114

126-
t.equal(typeof file.value, 'string')
127-
128-
t.end()
115+
assert.equal(typeof file.value, 'string')
129116
}
130117
)
131118

132-
t.throws(
119+
assert.throws(
133120
() => {
134121
toVFile.readSync({
135122
path: path.join(process.cwd(), 'core.js'),
@@ -141,149 +128,135 @@ test('toVFile.readSync', (t) => {
141128
)
142129
})
143130

144-
test('toVFile.read', (t) => {
145-
t.equal(toVFile.read, read, 'should export as an identifier')
146-
147-
t.test('should pass an error without path', (t) => {
148-
t.plan(1)
131+
test('toVFile.read', async (t) => {
132+
assert.equal(toVFile.read, read, 'should export as an identifier')
149133

150-
// @ts-expect-error: not a path.
151-
toVFile.read(null, (error) => {
152-
t.ok(/path/i.test(String(error)))
134+
await t.test('should pass an error without path', async () => {
135+
await new Promise((ok) => {
136+
// @ts-expect-error: not a path.
137+
toVFile.read(null, (error) => {
138+
assert.ok(/path/i.test(String(error)))
139+
ok(undefined)
140+
})
153141
})
154142
})
155143

156-
t.test('should work (buffer without encoding)', (t) => {
157-
t.plan(4)
158-
159-
toVFile.read('readme.md', (error, file) => {
160-
t.ifErr(error)
161-
assert(file, 'expected file')
162-
t.equal(file.path, 'readme.md')
163-
t.ok(buffer(file.value))
164-
t.equal(file.toString(), fixture)
144+
await t.test('should work (buffer without encoding)', async () => {
145+
await new Promise((ok) => {
146+
toVFile.read('readme.md', (error, file) => {
147+
assert.ifError(error)
148+
assert(file, 'expected file')
149+
assert.equal(file.path, 'readme.md')
150+
assert.ok(buffer(file.value))
151+
assert.equal(file.toString(), fixture)
152+
ok(undefined)
153+
})
165154
})
166155
})
167156

168-
t.test('should work in promise mode (buffer without encoding)', (t) => {
169-
t.plan(3)
157+
await t.test(
158+
'should work in promise mode (buffer without encoding)',
159+
async () => {
160+
const result = await toVFile.read('readme.md')
161+
assert.equal(result.path, 'readme.md')
162+
assert.ok(buffer(result.value))
163+
assert.equal(result.toString(), fixture)
164+
}
165+
)
170166

171-
toVFile
172-
.read('readme.md')
173-
.then((result) => {
174-
t.equal(result.path, 'readme.md')
175-
t.ok(buffer(result.value))
176-
t.equal(result.toString(), fixture)
177-
})
178-
.catch(() => {
179-
t.fail('should resolve, not reject')
167+
await t.test('should work (string with encoding)', async () => {
168+
await new Promise((ok) => {
169+
toVFile.read('readme.md', 'utf8', (error, file) => {
170+
assert.ifError(error)
171+
assert(file, 'expected file')
172+
assert.equal(file.path, 'readme.md')
173+
assert.equal(typeof file.value, 'string')
174+
assert.equal(file.toString(), fixture)
175+
ok(undefined)
180176
})
181-
})
182-
183-
t.test('should work (string with encoding)', (t) => {
184-
t.plan(4)
185-
186-
toVFile.read('readme.md', 'utf8', (error, file) => {
187-
t.ifErr(error)
188-
assert(file, 'expected file')
189-
t.equal(file.path, 'readme.md')
190-
t.equal(typeof file.value, 'string')
191-
t.equal(file.toString(), fixture)
192177
})
193178
})
194179

195-
t.test('should work in promise mode (string with encoding)', (t) => {
196-
t.plan(3)
197-
198-
toVFile
199-
.read('readme.md', 'utf8')
200-
.then((result) => {
201-
t.equal(result.path, 'readme.md')
202-
t.equal(typeof result.value, 'string')
203-
t.equal(result.toString(), fixture)
204-
})
205-
.catch(() => {
206-
t.fail('should resolve, not reject')
207-
})
208-
})
180+
await t.test(
181+
'should work in promise mode (string with encoding)',
182+
async () => {
183+
const result = await toVFile.read('readme.md', 'utf8')
209184

210-
t.test('should return an error on non-existing files', (t) => {
211-
t.plan(3)
185+
assert.equal(result.path, 'readme.md')
186+
assert.equal(typeof result.value, 'string')
187+
assert.equal(result.toString(), fixture)
188+
}
189+
)
212190

213-
toVFile.read('missing.md', 'utf8', (error, file) => {
214-
assert(error, 'expected error')
215-
t.equal(file, undefined)
216-
t.ok(error instanceof Error)
217-
t.ok(/ENOENT/.test(error.message))
191+
await t.test('should return an error on non-existing files', async () => {
192+
await new Promise((ok) => {
193+
toVFile.read('missing.md', 'utf8', (error, file) => {
194+
assert(error, 'expected error')
195+
assert.equal(file, undefined)
196+
assert.ok(error instanceof Error)
197+
assert.ok(/ENOENT/.test(error.message))
198+
ok(undefined)
199+
})
218200
})
219201
})
220202

221-
t.test('should reject on non-existing files in promise mode', (t) => {
222-
t.plan(2)
223-
224-
toVFile
225-
.read('missing.md')
226-
.then(() => {
227-
t.fail('should reject, not resolve')
228-
})
229-
.catch((/** @type {Error} */ error) => {
230-
t.ok(error instanceof Error)
231-
t.ok(/ENOENT/.test(error.message))
232-
})
233-
})
203+
await t.test(
204+
'should reject on non-existing files in promise mode',
205+
async () => {
206+
try {
207+
await toVFile.read('missing.md')
208+
assert.fail('should reject, not resolve')
209+
} catch (error) {
210+
assert.ok(error instanceof Error)
211+
assert.ok(/ENOENT/.test(error.message))
212+
}
213+
}
214+
)
234215
})
235216

236-
test('toVFile.writeSync', (t) => {
217+
test('toVFile.writeSync', async (t) => {
237218
const filePath = 'fixture.txt'
238219
const invalidFilePath = join('invalid', 'path', 'to', 'fixture.txt')
239220

240-
t.equal(toVFile.writeSync, writeSync, 'should export as an identifier')
221+
assert.equal(toVFile.writeSync, writeSync, 'should export as an identifier')
241222

242-
t.test('should fail without path', (t) => {
243-
t.throws(() => {
223+
await t.test('should fail without path', () => {
224+
assert.throws(() => {
244225
// @ts-expect-error runtime.
245226
toVFile.writeSync()
246227
}, /path/i)
247-
248-
t.end()
249228
})
250229

251-
t.test('should work (buffer without encoding)', (t) => {
230+
await t.test('should work (buffer without encoding)', () => {
252231
const result = toVFile.writeSync({
253232
path: filePath,
254233
value: Buffer.from('föo')
255234
})
256235

257-
t.equal(result.path, filePath)
258-
t.equal(String(result), 'föo')
259-
t.equal(fs.readFileSync(filePath, 'utf8'), 'föo')
260-
261-
t.end()
236+
assert.equal(result.path, filePath)
237+
assert.equal(String(result), 'föo')
238+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'föo')
262239
})
263240

264-
t.test('should work (string)', (t) => {
241+
await t.test('should work (string)', () => {
265242
const result = toVFile.writeSync({path: filePath, value: 'bär'})
266243

267-
t.equal(result.path, filePath)
268-
t.equal(String(result), 'bär')
269-
t.equal(fs.readFileSync(filePath, 'utf8'), 'bär')
270-
271-
t.end()
244+
assert.equal(result.path, filePath)
245+
assert.equal(String(result), 'bär')
246+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'bär')
272247
})
273248

274-
t.test('should work (null)', (t) => {
249+
await t.test('should work (null)', () => {
275250
const result = toVFile.writeSync(filePath)
276251

277-
t.equal(result.path, filePath)
278-
t.equal(String(result), '')
279-
t.equal(fs.readFileSync(filePath, 'utf8'), '')
252+
assert.equal(result.path, filePath)
253+
assert.equal(String(result), '')
254+
assert.equal(fs.readFileSync(filePath, 'utf8'), '')
280255

281256
fs.unlinkSync(filePath)
282-
283-
t.end()
284257
})
285258

286-
t.throws(
259+
assert.throws(
287260
() => {
288261
toVFile.writeSync(invalidFilePath)
289262
},
@@ -292,143 +265,132 @@ test('toVFile.writeSync', (t) => {
292265
)
293266
})
294267

295-
test('toVFile.write', (t) => {
268+
test('toVFile.write', async (t) => {
296269
const filePath = 'fixture.txt'
297270
const invalidFilePath = join('invalid', 'path', 'to', 'fixture.txt')
298271

299-
t.equal(toVFile.write, write, 'should export as an identifier')
300-
301-
t.test('should pass an error without path', (t) => {
302-
t.plan(1)
272+
assert.equal(toVFile.write, write, 'should export as an identifier')
303273

304-
// @ts-expect-error: missing path.
305-
toVFile.write(null, (error) => {
306-
t.ok(/path/i.test(String(error)))
274+
await t.test('should pass an error without path', async () => {
275+
await new Promise((ok) => {
276+
// @ts-expect-error: missing path.
277+
toVFile.write(null, (error) => {
278+
assert.ok(/path/i.test(String(error)))
279+
ok(undefined)
280+
})
307281
})
308282
})
309283

310-
t.test('should work (buffer without encoding)', (t) => {
284+
await t.test('should work (buffer without encoding)', async () => {
311285
const file = {path: filePath, value: Buffer.from('bäz')}
312286

313-
t.plan(3)
314-
315-
toVFile.write(file, (error, result) => {
316-
t.ifErr(error)
317-
assert(result, 'expected result')
318-
t.equal(result.path, filePath)
319-
t.equal(fs.readFileSync(filePath, 'utf8'), 'bäz')
287+
await new Promise((ok) => {
288+
toVFile.write(file, (error, result) => {
289+
assert.ifError(error)
290+
assert(result, 'expected result')
291+
assert.equal(result.path, filePath)
292+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'bäz')
293+
ok(undefined)
294+
})
320295
})
321296
})
322297

323-
t.test('should work (string)', (t) => {
298+
await t.test('should work (string)', async () => {
324299
const file = {path: filePath, value: 'qüx'}
325300

326-
t.plan(3)
327-
328-
toVFile.write(file, (error, result) => {
329-
t.ifErr(error)
330-
assert(result, 'expected result')
331-
t.equal(result.path, filePath)
332-
t.equal(fs.readFileSync(filePath, 'utf8'), 'qüx')
301+
await new Promise((ok) => {
302+
toVFile.write(file, (error, result) => {
303+
assert.ifError(error)
304+
assert(result, 'expected result')
305+
assert.equal(result.path, filePath)
306+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'qüx')
307+
ok(undefined)
308+
})
333309
})
334310
})
335311

336-
t.test('should work in promise mode (string)', (t) => {
337-
t.plan(2)
338-
339-
toVFile
340-
.write({path: filePath, value: 'qüx-promise'})
341-
.then((result) => {
342-
t.equal(result.path, filePath)
343-
t.equal(fs.readFileSync(filePath, 'utf8'), 'qüx-promise')
344-
})
345-
.catch(() => {
346-
t.fail('should resolve, not reject')
347-
})
312+
await t.test('should work in promise mode (string)', async () => {
313+
const result = await toVFile.write({path: filePath, value: 'qüx-promise'})
314+
assert.equal(result.path, filePath)
315+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'qüx-promise')
348316
})
349317

350-
t.test('should work (string with encoding)', (t) => {
318+
await t.test('should work (string with encoding)', async () => {
351319
const file = {path: filePath, value: '62c3a472'}
352320

353-
t.plan(3)
354-
355-
toVFile.write(file, 'hex', (error, result) => {
356-
t.ifErr(error)
357-
assert(result, 'expected result')
358-
t.equal(result.path, filePath)
359-
t.equal(fs.readFileSync(filePath, 'utf8'), 'bär')
360-
})
361-
})
362-
363-
t.test('should work in promise mode (string with encoding)', (t) => {
364-
t.plan(2)
365-
366-
toVFile
367-
.write({path: filePath, value: '62c3a4722d70726f6d697365'}, 'hex')
368-
.then((result) => {
369-
t.equal(result.path, filePath)
370-
t.equal(fs.readFileSync(filePath, 'utf8'), 'bär-promise')
321+
await new Promise((ok) => {
322+
toVFile.write(file, 'hex', (error, result) => {
323+
assert.ifError(error)
324+
assert(result, 'expected result')
325+
assert.equal(result.path, filePath)
326+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'bär')
327+
ok(undefined)
371328
})
372-
.catch(() => {
373-
t.fail('should resolve, not reject')
374-
})
375-
})
376-
377-
t.test('should work (null)', (t) => {
378-
t.plan(3)
379-
380-
toVFile.write(filePath, (error, result) => {
381-
const doc = fs.readFileSync(filePath, 'utf8')
382-
383-
fs.unlinkSync(filePath)
384-
385-
assert(result, 'expected result')
386-
t.ifErr(error)
387-
t.equal(result.path, filePath)
388-
t.equal(doc, '')
389329
})
390330
})
391331

392-
t.test('should work in promise mode (null)', (t) => {
393-
t.plan(2)
332+
await t.test(
333+
'should work in promise mode (string with encoding)',
334+
async () => {
335+
const result = await toVFile.write(
336+
{path: filePath, value: '62c3a4722d70726f6d697365'},
337+
'hex'
338+
)
339+
assert.equal(result.path, filePath)
340+
assert.equal(fs.readFileSync(filePath, 'utf8'), 'bär-promise')
341+
}
342+
)
394343

395-
toVFile
396-
.write(filePath)
397-
.then((result) => {
344+
await t.test('should work (null)', async () => {
345+
await new Promise((ok) => {
346+
toVFile.write(filePath, (error, result) => {
398347
const doc = fs.readFileSync(filePath, 'utf8')
399348

400349
fs.unlinkSync(filePath)
401350

402-
t.equal(result.path, filePath)
403-
t.equal(doc, '')
404-
})
405-
.catch(() => {
406-
t.fail('should resolve, not reject')
351+
assert(result, 'expected result')
352+
assert.ifError(error)
353+
assert.equal(result.path, filePath)
354+
assert.equal(doc, '')
355+
ok(undefined)
407356
})
357+
})
408358
})
409359

410-
t.test('should pass an error for files that cannot be written', (t) => {
411-
t.plan(1)
360+
await t.test('should work in promise mode (null)', async () => {
361+
const result = await toVFile.write(filePath)
412362

413-
toVFile.write(invalidFilePath, (error) => {
414-
assert(error, 'expected error')
415-
t.ok(/ENOENT/.test(error.message))
416-
})
417-
})
363+
const doc = fs.readFileSync(filePath, 'utf8')
418364

419-
t.test(
420-
'should reject for files that cannot be written in promise mode',
421-
(t) => {
422-
t.plan(1)
365+
fs.unlinkSync(filePath)
423366

424-
toVFile
425-
.write(invalidFilePath)
426-
.then(() => {
427-
t.fail('should reject, not resolve')
428-
})
429-
.catch((/** @type {Error} */ error) => {
430-
t.ok(/ENOENT/.test(error.message))
367+
assert.equal(result.path, filePath)
368+
assert.equal(doc, '')
369+
})
370+
371+
await t.test(
372+
'should pass an error for files that cannot be written',
373+
async () => {
374+
await new Promise((ok) => {
375+
toVFile.write(invalidFilePath, (error) => {
376+
assert(error, 'expected error')
377+
assert.ok(/ENOENT/.test(error.message))
378+
ok(undefined)
431379
})
380+
})
381+
}
382+
)
383+
384+
await t.test(
385+
'should reject for files that cannot be written in promise mode',
386+
async () => {
387+
try {
388+
await toVFile.write(invalidFilePath)
389+
assert.fail('should reject, not resolve')
390+
} catch (error) {
391+
assert(error instanceof Error)
392+
assert.ok(/ENOENT/.test(error.message))
393+
}
432394
}
433395
)
434396
})

0 commit comments

Comments
 (0)
Please sign in to comment.