deno.land / std@0.157.0 / hash / fnv_test.ts

نووسراو ببینە
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Ported from Go:// https://github.com/golang/go/tree/go1.13.10/src/hash/fnv/fnv_test.go// Copyright 2011 The Go Authors. All rights reserved. BSD license.// https://github.com/golang/go/blob/master/LICENSE// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../testing/asserts.ts";import { Fnv32, Fnv32a, Fnv64, Fnv64a } from "./fnv.ts";
const golden32 = [ ["", new Uint8Array([0x81, 0x1c, 0x9d, 0xc5])], ["a", new Uint8Array([0x05, 0x0c, 0x5d, 0x7e])], ["ab", new Uint8Array([0x70, 0x77, 0x2d, 0x38])], ["abc", new Uint8Array([0x43, 0x9c, 0x2f, 0x4b])], ["deno", new Uint8Array([0x6e, 0xd5, 0xa7, 0xa9])],];
const golden32a = [ ["", new Uint8Array([0x81, 0x1c, 0x9d, 0xc5])], ["a", new Uint8Array([0xe4, 0x0c, 0x29, 0x2c])], ["ab", new Uint8Array([0x4d, 0x25, 0x05, 0xca])], ["abc", new Uint8Array([0x1a, 0x47, 0xe9, 0x0b])], ["deno", new Uint8Array([0x8e, 0xf6, 0x47, 0x11])],];
const golden64 = [ ["", new Uint8Array([0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25])], ["a", new Uint8Array([0xaf, 0x63, 0xbd, 0x4c, 0x86, 0x01, 0xb7, 0xbe])], ["ab", new Uint8Array([0x08, 0x32, 0x67, 0x07, 0xb4, 0xeb, 0x37, 0xb8])], ["abc", new Uint8Array([0xd8, 0xdc, 0xca, 0x18, 0x6b, 0xaf, 0xad, 0xcb])], ["deno", new Uint8Array([0x14, 0xed, 0xb2, 0x7e, 0xec, 0xda, 0xad, 0xc9])],];
const golden64a = [ ["", new Uint8Array([0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25])], ["a", new Uint8Array([0xaf, 0x63, 0xdc, 0x4c, 0x86, 0x01, 0xec, 0x8c])], ["ab", new Uint8Array([0x08, 0x9c, 0x44, 0x07, 0xb5, 0x45, 0x98, 0x6a])], ["abc", new Uint8Array([0xe7, 0x1f, 0xa2, 0x19, 0x05, 0x41, 0x57, 0x4b])], ["deno", new Uint8Array([0xa5, 0xd9, 0xfb, 0x67, 0x42, 0x6e, 0x48, 0xb1])],];
Deno.test("[hash/fnv] testFnv32", () => { for (const [input, output] of golden32) { const fnv = new Fnv32(); fnv.write(new TextEncoder().encode(input as string)); assertEquals(fnv.sum(), output); }});
Deno.test("[hash/fnv] testFnv32a", () => { for (const [input, output] of golden32a) { const fnv = new Fnv32a(); fnv.write(new TextEncoder().encode(input as string)); assertEquals(fnv.sum(), output); }});
Deno.test("[hash/fnv] testFnv64", () => { for (const [input, output] of golden64) { const fnv = new Fnv64(); fnv.write(new TextEncoder().encode(input as string)); assertEquals(fnv.sum(), output); }});
Deno.test("[hash/fnv] testFnv64a", () => { for (const [input, output] of golden64a) { const fnv = new Fnv64a(); fnv.write(new TextEncoder().encode(input as string)); assertEquals(fnv.sum(), output); }});
Deno.test("[hash/fnv] testFnv32WriteChain", () => { const fnv = new Fnv32(); fnv .write(new TextEncoder().encode("d")) .write(new TextEncoder().encode("e")) .write(new TextEncoder().encode("n")) .write(new TextEncoder().encode("o")); assertEquals(fnv.sum(), new Uint8Array([0x6e, 0xd5, 0xa7, 0xa9]));});
Deno.test("[hash/fnv] testFnv32aWriteChain", () => { const fnv = new Fnv32a(); fnv .write(new TextEncoder().encode("d")) .write(new TextEncoder().encode("e")) .write(new TextEncoder().encode("n")) .write(new TextEncoder().encode("o")); assertEquals(fnv.sum(), new Uint8Array([0x8e, 0xf6, 0x47, 0x11]));});
Deno.test("[hash/fnv] testFnv64WriteChain", () => { const fnv = new Fnv64(); fnv .write(new TextEncoder().encode("d")) .write(new TextEncoder().encode("e")) .write(new TextEncoder().encode("n")) .write(new TextEncoder().encode("o")); assertEquals( fnv.sum(), new Uint8Array([0x14, 0xed, 0xb2, 0x7e, 0xec, 0xda, 0xad, 0xc9]), );});
Deno.test("[hash/fnv] testFnv64aWriteChain", () => { const fnv = new Fnv64a(); fnv .write(new TextEncoder().encode("d")) .write(new TextEncoder().encode("e")) .write(new TextEncoder().encode("n")) .write(new TextEncoder().encode("o")); assertEquals( fnv.sum(), new Uint8Array([0xa5, 0xd9, 0xfb, 0x67, 0x42, 0x6e, 0x48, 0xb1]), );});
std

Version Info

Tagged at
a year ago