napi-rs/test_module/__test__/napi4/tokio_readfile.spec.ts
2020-08-24 18:22:48 +08:00

29 lines
727 B
TypeScript

import fs from 'fs'
import path from 'path'
import test from 'ava'
import { napiVersion } from '../napi-version'
const bindings = require('../../index.node')
const filepath = path.resolve(__dirname, './example.txt')
test('should read a file and return its a buffer', async (t) => {
if (napiVersion < 4) {
t.is(bindings.testTokioReadfile, undefined)
return
}
await new Promise((resolve, reject) => {
bindings.testTokioReadfile(filepath, (err: Error | null, value: Buffer) => {
try {
t.is(err, null)
t.is(Buffer.isBuffer(value), true)
t.is(value.toString(), fs.readFileSync(filepath, 'utf8'))
resolve()
} catch (err) {
reject(err)
}
})
})
})