occulto/test/hash.spec.js

17 lines
496 B
JavaScript
Raw Normal View History

2022-10-13 20:06:51 +00:00
import { hash, Hashes } from '../dist/esm/index.js'
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)) {
it(`Should hash ${input} to ${output}`, async () => {
const hashed = await hash(input, Hashes[type])
chai.expect(hashed).to.equal(output)
})
}
})
}
})