|
1 | 1 | import { describe, expect, it } from "vitest";
|
2 |
| -import { murmurHash, objectHash, hash, sha256, isEqual, diff } from "../src"; |
3 |
| -import { sha256base64 } from "../src/crypto/sha256"; |
| 2 | +import { murmurHash, sha256, sha256base64 } from "../src"; |
4 | 3 |
|
5 |
| -describe("objectHash", () => { |
6 |
| - it("basic object", () => { |
7 |
| - expect( |
8 |
| - objectHash({ foo: "bar", bar: new Date(0), bool: false }), |
9 |
| - ).toMatchInlineSnapshot( |
10 |
| - '"object:3:string:3:bar:string:24:1970-01-01T00:00:00.000Z,string:4:bool:bool:false,string:3:foo:string:3:bar,"', |
11 |
| - ); |
| 4 | +describe("crypto", () => { |
| 5 | + describe("murmurHash", () => { |
| 6 | + it("Generates correct hash for 0 bytes without seed", () => { |
| 7 | + expect(murmurHash("")).toMatchInlineSnapshot("0"); |
| 8 | + }); |
| 9 | + it("Generates correct hash for 0 bytes with seed", () => { |
| 10 | + expect(murmurHash("", 1)).toMatchInlineSnapshot("1364076727"); // 0x514E28B7 |
| 11 | + }); |
| 12 | + it("Generates correct hash for 'Hello World'", () => { |
| 13 | + expect(murmurHash("Hello World")).toMatchInlineSnapshot("427197390"); |
| 14 | + }); |
| 15 | + it("Generates the correct hash for varios string lengths", () => { |
| 16 | + expect(murmurHash("a")).toMatchInlineSnapshot("1009084850"); |
| 17 | + expect(murmurHash("aa")).toMatchInlineSnapshot("923832745"); |
| 18 | + expect(murmurHash("aaa")).toMatchInlineSnapshot("3033554871"); |
| 19 | + expect(murmurHash("aaaa")).toMatchInlineSnapshot("2129582471"); |
| 20 | + expect(murmurHash("aaaaa")).toMatchInlineSnapshot("3922341931"); |
| 21 | + expect(murmurHash("aaaaaa")).toMatchInlineSnapshot("1736445713"); |
| 22 | + expect(murmurHash("aaaaaaa")).toMatchInlineSnapshot("1497565372"); |
| 23 | + expect(murmurHash("aaaaaaaa")).toMatchInlineSnapshot("3662943087"); |
| 24 | + expect(murmurHash("aaaaaaaaa")).toMatchInlineSnapshot("2724714153"); |
| 25 | + }); |
| 26 | + it("Works with Uint8Arrays", () => { |
| 27 | + expect( |
| 28 | + murmurHash(new Uint8Array([0x21, 0x43, 0x65, 0x87])), |
| 29 | + ).toMatchInlineSnapshot("4116402539"); // 0xF55B516B |
| 30 | + }); |
| 31 | + it("Handles UTF-8 high characters correctly", () => { |
| 32 | + expect(murmurHash("ππππππππ", 0x97_47_b2_8c)).toMatchInlineSnapshot( |
| 33 | + "3581961153", |
| 34 | + ); |
| 35 | + }); |
| 36 | + it("Gives correct hash with uint32 maximum value as seed", () => { |
| 37 | + expect(murmurHash("a", 2_147_483_647)).toMatchInlineSnapshot( |
| 38 | + "3574244913", |
| 39 | + ); |
| 40 | + }); |
12 | 41 | });
|
13 | 42 |
|
14 |
| - it("Serialize object with entries()", () => { |
15 |
| - const form = new FormData(); |
16 |
| - form.set("foo", "bar"); |
17 |
| - form.set("bar", "baz"); |
18 |
| - |
19 |
| - expect(objectHash(form)).toMatchInlineSnapshot( |
20 |
| - '"formdata:array:2:array:2:string:32:array:2:string:3:barstring:3:bazstring:32:array:2:string:3:foostring:3:bar"', |
| 43 | + it("sha256", () => { |
| 44 | + expect(sha256("Hello World")).toMatchInlineSnapshot( |
| 45 | + '"a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e"', |
21 | 46 | );
|
22 |
| - }); |
23 |
| - |
24 |
| - it("Serialize object with toJSON()", () => { |
25 |
| - class Test { |
26 |
| - toJSON() { |
27 |
| - return { foo: "bar", bar: "baz" }; |
28 |
| - } |
29 |
| - } |
30 |
| - |
31 |
| - expect(objectHash(new Test())).toMatchInlineSnapshot( |
32 |
| - '"object:2:string:3:bar:string:3:baz,string:3:foo:string:3:bar,"', |
| 47 | + expect(sha256("")).toMatchInlineSnapshot( |
| 48 | + '"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"', |
33 | 49 | );
|
34 | 50 | });
|
35 |
| -}); |
36 | 51 |
|
37 |
| -describe("murmurHash", () => { |
38 |
| - it("Generates correct hash for 0 bytes without seed", () => { |
39 |
| - expect(murmurHash("")).toMatchInlineSnapshot("0"); |
40 |
| - }); |
41 |
| - it("Generates correct hash for 0 bytes with seed", () => { |
42 |
| - expect(murmurHash("", 1)).toMatchInlineSnapshot("1364076727"); // 0x514E28B7 |
43 |
| - }); |
44 |
| - it("Generates correct hash for 'Hello World'", () => { |
45 |
| - expect(murmurHash("Hello World")).toMatchInlineSnapshot("427197390"); |
46 |
| - }); |
47 |
| - it("Generates the correct hash for varios string lengths", () => { |
48 |
| - expect(murmurHash("a")).toMatchInlineSnapshot("1009084850"); |
49 |
| - expect(murmurHash("aa")).toMatchInlineSnapshot("923832745"); |
50 |
| - expect(murmurHash("aaa")).toMatchInlineSnapshot("3033554871"); |
51 |
| - expect(murmurHash("aaaa")).toMatchInlineSnapshot("2129582471"); |
52 |
| - expect(murmurHash("aaaaa")).toMatchInlineSnapshot("3922341931"); |
53 |
| - expect(murmurHash("aaaaaa")).toMatchInlineSnapshot("1736445713"); |
54 |
| - expect(murmurHash("aaaaaaa")).toMatchInlineSnapshot("1497565372"); |
55 |
| - expect(murmurHash("aaaaaaaa")).toMatchInlineSnapshot("3662943087"); |
56 |
| - expect(murmurHash("aaaaaaaaa")).toMatchInlineSnapshot("2724714153"); |
57 |
| - }); |
58 |
| - it("Works with Uint8Arrays", () => { |
59 |
| - expect( |
60 |
| - murmurHash(new Uint8Array([0x21, 0x43, 0x65, 0x87])), |
61 |
| - ).toMatchInlineSnapshot("4116402539"); // 0xF55B516B |
62 |
| - }); |
63 |
| - it("Handles UTF-8 high characters correctly", () => { |
64 |
| - expect(murmurHash("ππππππππ", 0x97_47_b2_8c)).toMatchInlineSnapshot( |
65 |
| - "3581961153", |
| 52 | + it("sha256base64", () => { |
| 53 | + expect(sha256base64("Hello World")).toMatchInlineSnapshot( |
| 54 | + '"pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4"', |
| 55 | + ); |
| 56 | + expect(sha256base64("")).toMatchInlineSnapshot( |
| 57 | + '"47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"', |
66 | 58 | );
|
67 |
| - }); |
68 |
| - it("Gives correct hash with uint32 maximum value as seed", () => { |
69 |
| - expect(murmurHash("a", 2_147_483_647)).toMatchInlineSnapshot("3574244913"); |
70 |
| - }); |
71 |
| -}); |
72 |
| - |
73 |
| -it("sha256", () => { |
74 |
| - expect(sha256("Hello World")).toMatchInlineSnapshot( |
75 |
| - '"a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e"', |
76 |
| - ); |
77 |
| - expect(sha256("")).toMatchInlineSnapshot( |
78 |
| - '"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"', |
79 |
| - ); |
80 |
| -}); |
81 |
| - |
82 |
| -it("sha256base64", () => { |
83 |
| - expect(sha256base64("Hello World")).toMatchInlineSnapshot( |
84 |
| - '"pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4"', |
85 |
| - ); |
86 |
| - expect(sha256base64("")).toMatchInlineSnapshot( |
87 |
| - '"47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"', |
88 |
| - ); |
89 |
| -}); |
90 |
| - |
91 |
| -it("hash", () => { |
92 |
| - expect(hash({ foo: "bar" })).toMatchInlineSnapshot('"dZbtA7f0lK"'); |
93 |
| -}); |
94 |
| - |
95 |
| -describe("isEqual", () => { |
96 |
| - const cases = [ |
97 |
| - [{ foo: "bar" }, { foo: "bar" }, true], |
98 |
| - [{ foo: "bar" }, { foo: "baz" }, false], |
99 |
| - [{ a: 1, b: 2 }, { b: 2, a: 1 }, true], |
100 |
| - [123, 123, true], |
101 |
| - [123, 456, false], |
102 |
| - [[1, 2], [2, 1], false], |
103 |
| - ]; |
104 |
| - for (const [obj1, obj2, equals] of cases) { |
105 |
| - it(`${JSON.stringify(obj1)} ${ |
106 |
| - equals ? "equals" : "not equals" |
107 |
| - } to ${JSON.stringify(obj2)}`, () => { |
108 |
| - expect(isEqual(obj1, obj2)).toBe(equals); |
109 |
| - }); |
110 |
| - } |
111 |
| -}); |
112 |
| - |
113 |
| -describe("diff", () => { |
114 |
| - const createObject = () => |
115 |
| - ({ |
116 |
| - foo: "bar", |
117 |
| - nested: { |
118 |
| - // x: undefined, |
119 |
| - y: 123, |
120 |
| - bar: { |
121 |
| - baz: "123", |
122 |
| - }, |
123 |
| - }, |
124 |
| - }) as any; |
125 |
| - |
126 |
| - it("simple", () => { |
127 |
| - const obj1 = createObject(); |
128 |
| - const obj2 = createObject(); |
129 |
| - |
130 |
| - obj2.nested.x = 123; |
131 |
| - delete obj2.nested.y; |
132 |
| - obj2.nested.bar.baz = 123; |
133 |
| - |
134 |
| - expect(diff(obj1, obj2)).toMatchInlineSnapshot(` |
135 |
| - [ |
136 |
| - "Removed \`nested.y\`", |
137 |
| - "Changed \`nested.bar.baz\` from \`"123"\` to \`123\`", |
138 |
| - "Added \`nested.x\`", |
139 |
| - ] |
140 |
| - `); |
141 | 59 | });
|
142 | 60 | });
|
0 commit comments