occulto/test/hash.spec.js

24 lines
851 B
JavaScript
Raw Normal View History

2022-10-14 11:31:52 +00:00
import { Bytes, hash, Hashes, Hex } from '../dist/esm/index.js'
2022-10-13 20:06:51 +00:00
import { Precomputed } from './values.js'
describe('Hash', () => {
for (const type of Object.keys(Hashes)) {
describe(type, () => {
const values = Precomputed.Hash[type]
for (const [input, output] of Object.entries(values)) {
2022-10-14 11:31:52 +00:00
it(`Should hash "${input}" to "${output.slice(0, 8)}..."`, async () => {
2022-10-13 20:06:51 +00:00
const hashed = await hash(input, Hashes[type])
chai.expect(hashed).to.equal(output)
})
2022-10-14 11:31:52 +00:00
it(`Should hash "${input}" to "${output.slice(0, 8)}..." as buffer`, async () => {
const outputBuffer = Hex.decode(output)
const inputBuffer = Bytes.encode(input)
const hashed = await hash(inputBuffer, Hashes[type])
chai.expect(hashed).to.deep.equal(outputBuffer)
})
2022-10-13 20:06:51 +00:00
}
})
}
})