deno.land / std@0.224.0 / crypto / _fnv / mod_test.ts

mod_test.ts
View Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { assertEquals, assertThrows } from "../../assert/mod.ts";import { fnv } from "./mod.ts";
Deno.test("fnv()", function () { const encoder = new TextEncoder(); const input = encoder.encode("a"); const fixtures = [ ["FNV32", new ArrayBuffer(4)], ["FNV32A", new ArrayBuffer(4)], ["FNV64", new ArrayBuffer(8)], ["FNV64A", new ArrayBuffer(8)], ] as const; for (const [name, expected] of fixtures) { assertEquals(fnv(name, input), expected); }});
Deno.test("fnv() throws when no data is provided", function () { assertThrows(() => fnv("FNV32"), TypeError, "no data provided for hashing");});
Deno.test("fnv() throws when an unsupported digest is provided", function () { assertThrows( () => fnv("FNV128", new Uint8Array()), TypeError, "unsupported fnv digest: FNV128", );});
std

Version Info

Tagged at
4 months ago