mtcute/packages/wasm/tests/hash.test.ts

48 lines
1.3 KiB
TypeScript

import { hex, utf8 } from '@fuman/utils'
import { beforeAll, describe, expect, it } from 'vitest'
import { __getWasm, sha1, sha256 } from '../src/index.js'
import { initWasm } from './init.js'
beforeAll(async () => {
await initWasm()
})
describe('sha256', () => {
it('should correctly calculate sha-256 hash', () => {
const hash = sha256(utf8.encoder.encode('abc'))
expect(hex.encode(hash)).toEqual('ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad')
})
it('should not leak memory', () => {
const mem = __getWasm().memory.buffer
const memSize = mem.byteLength
for (let i = 0; i < 100; i++) {
sha256(utf8.encoder.encode('abc'))
}
expect(mem.byteLength).toEqual(memSize)
})
})
describe('sha1', () => {
it('should correctly calculate sha-1 hash', () => {
const hash = sha1(utf8.encoder.encode('abc'))
expect(hex.encode(hash)).toEqual('a9993e364706816aba3e25717850c26c9cd0d89d')
})
it('should not leak memory', () => {
const mem = __getWasm().memory.buffer
const memSize = mem.byteLength
for (let i = 0; i < 100; i++) {
sha1(utf8.encoder.encode('abc'))
}
expect(mem.byteLength).toEqual(memSize)
})
})