napi-rs/examples/napi-compat-mode/__test__/arraybuffer.spec.ts
nihohit 1cf32631bf
fix(napi): typed arrays ref shouldn't use offset. (#1376)
Notice from the n-api docs that the data returned from
`napi_get_typedarray_info` is already adjusted by the byte offset.
https://nodejs.org/api/n-api.html#napi_get_typedarray_info

This means that when `as_ref`/`as_mut` apply the byte offset, the
offset is in practice applied twice.
This wasn't caught in tests because no test tried to modify a typed
array with a byte offset, and the test didn't us the typed array
structs, only `JsTypedArray`. If you want, I can modify the rest of the
functions in examples/napi-compt-mode/src/arraybuffers.rs
and the matching tests, to test all typed arrays.

IMO the `byte_offset` field can be removed entirely from the struct,
but I wanted to submit a minimal PR.
2022-11-30 20:54:13 +08:00

55 lines
1.6 KiB
TypeScript

import ava from 'ava'
import { napiVersion } from './napi-version'
const bindings = require('../index.node')
const test = napiVersion >= 6 ? ava : ava.skip
test('should get arraybuffer length', (t) => {
const fixture = Buffer.from('wow, hello')
t.is(bindings.getArraybufferLength(fixture.buffer), fixture.buffer.byteLength)
})
test('should be able to mutate Uint8Array', (t) => {
const fixture = new Uint8Array([0, 1, 2])
bindings.mutateUint8Array(fixture)
t.is(fixture[0], 42)
})
test('should be able to mutate Uint8Array in its middle', (t) => {
const fixture = new Uint8Array([0, 1, 2])
const view = new Uint8Array(fixture.buffer, 1, 1)
bindings.mutateUint8Array(view)
t.is(fixture[1], 42)
})
test('should be able to mutate Uint16Array', (t) => {
const fixture = new Uint16Array([0, 1, 2])
bindings.mutateUint16Array(fixture)
t.is(fixture[0], 65535)
})
test('should be able to mutate Int16Array', (t) => {
const fixture = new Int16Array([0, 1, 2])
bindings.mutateInt16Array(fixture)
t.is(fixture[0], 32767)
})
test('should be able to mutate Float32Array', (t) => {
const fixture = new Float32Array([0, 1, 2])
bindings.mutateFloat32Array(fixture)
t.true(Math.abs(fixture[0] - 3.33) <= 0.0001)
})
test('should be able to mutate Float64Array', (t) => {
const fixture = new Float64Array([0, 1, 2])
bindings.mutateFloat64Array(fixture)
t.true(Math.abs(fixture[0] - Math.PI) <= 0.0000001)
})
test('should be able to mutate BigInt64Array', (t) => {
const fixture = new BigInt64Array([BigInt(0), BigInt(1), BigInt(2)])
bindings.mutateI64Array(fixture)
t.deepEqual(fixture[0], BigInt('9223372036854775807'))
})