deno.land / std@0.224.0 / crypto / unstable_keystack_test.ts

unstable_keystack_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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals, assertThrows } from "../assert/mod.ts";
import { KeyStack } from "./unstable_keystack.ts";
Deno.test({ name: "KeyStack() throws on empty keys", fn() { assertThrows( () => new KeyStack([]), TypeError, "keys must contain at least one value", ); },});
Deno.test({ name: "keyStack.sign() handles single key", async fn() { const keys = ["hello"]; const keyStack = new KeyStack(keys); const actual = await keyStack.sign("world"); const expected = "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ"; assertEquals(actual, expected); },});
Deno.test({ name: "keyStack.sign() handles two keys, first key used", async fn() { const keys = ["hello", "world"]; const keyStack = new KeyStack(keys); const actual = await keyStack.sign("world"); const expected = "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ"; assertEquals(actual, expected); },});
Deno.test({ name: "keyStack.verify() handles single key", async fn() { const keys = ["hello"]; const keyStack = new KeyStack(keys); const digest = await keyStack.sign("world"); assert(await keyStack.verify("world", digest)); },});
Deno.test({ name: "keyStack.verify() handles single key verify invalid", async fn() { const keys = ["hello"]; const keyStack = new KeyStack(keys); const digest = await keyStack.sign("world"); assert(!await keyStack.verify("worlds", digest)); },});
Deno.test({ name: "keyStack.verify() handles two keys", async fn() { const keys = ["hello", "world"]; const keyStack = new KeyStack(keys); const digest = await keyStack.sign("world"); assert(await keyStack.verify("world", digest)); },});
Deno.test({ name: "keyStack.verify() handles unshift key", async fn() { const keys = ["hello"]; const keyStack = new KeyStack(keys); const digest = await keyStack.sign("world"); keys.unshift("world"); assertEquals(keys, ["world", "hello"]); assert(await keyStack.verify("world", digest)); },});
Deno.test({ name: "keyStack.verify() handles shift key", async fn() { const keys = ["hello", "world"]; const keyStack = new KeyStack(keys); const digest = await keyStack.sign("world"); assertEquals(keys.shift(), "hello"); assertEquals(keys, ["world"]); assert(!await keyStack.verify("world", digest)); },});
Deno.test({ name: "keyStack.indexOf() handles single key", async fn() { const keys = ["hello"]; const keyStack = new KeyStack(keys); assertEquals( await keyStack.indexOf( "world", "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ", ), 0, ); },});
Deno.test({ name: "keyStack.indexOf() handles two keys index 0", async fn() { const keys = ["hello", "world"]; const keyStack = new KeyStack(keys); assertEquals( await keyStack.indexOf( "world", "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ", ), 0, ); },});
Deno.test({ name: "keyStack.indexOf() handles two keys index 1", async fn() { const keys = ["world", "hello"]; const keyStack = new KeyStack(keys); assertEquals( await keyStack.indexOf( "world", "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ", ), 1, ); },});
Deno.test({ name: "keyStack.indexOf() handles two keys not found", async fn() { const keys = ["world", "hello"]; const keyStack = new KeyStack(keys); assertEquals( await keyStack.indexOf( "hello", "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ", ), -1, ); },});
Deno.test({ name: "keyStack.verify() handles number array key", async fn() { const keys = [[212, 213]]; const keyStack = new KeyStack(keys); assert(await keyStack.verify("hello", await keyStack.sign("hello"))); },});
Deno.test({ name: "keyStack.verify() handles Uint8Array key", async fn() { const keys = [new Uint8Array([212, 213])]; const keyStack = new KeyStack(keys); assert(await keyStack.verify("hello", await keyStack.sign("hello"))); },});
Deno.test({ name: "verify() handles ArrayBuffer key", async fn() { const key = new ArrayBuffer(2); const dataView = new DataView(key); dataView.setInt8(0, 212); dataView.setInt8(1, 213); const keys = [key]; const keyStack = new KeyStack(keys); assert(await keyStack.verify("hello", await keyStack.sign("hello"))); },});
Deno.test({ name: "verify() handles number array data", async fn() { const keys = [[212, 213]]; const keyStack = new KeyStack(keys); assert(await keyStack.verify([212, 213], await keyStack.sign([212, 213]))); },});
Deno.test({ name: "verify() handles Uint8Array data", async fn() { const keys = [[212, 213]]; const keyStack = new KeyStack(keys); assert( await keyStack.verify( new Uint8Array([212, 213]), await keyStack.sign(new Uint8Array([212, 213])), ), ); },});
Deno.test({ name: "verify() handles ArrayBuffer data", async fn() { const keys = [[212, 213]]; const keyStack = new KeyStack(keys); const data1 = new ArrayBuffer(2); const dataView1 = new DataView(data1); dataView1.setInt8(0, 212); dataView1.setInt8(1, 213); const data2 = new ArrayBuffer(2); const dataView2 = new DataView(data2); dataView2.setInt8(0, 212); dataView2.setInt8(1, 213); assert(await keyStack.verify(data2, await keyStack.sign(data1))); },});
Deno.test({ name: "verify() handles user iterable keys", async fn() { const keys = new Set(["hello", "world"]); const keyStack = new KeyStack(keys); const actual = await keyStack.sign("world"); const expected = "8ayXAutfryPKKRpNxG3t3u4qeMza8KQSvtdxTP_7HMQ"; assertEquals(actual, expected); },});
Deno.test({ name: "KeyStack() handles inspection in Deno", fn() { assertEquals( Deno.inspect(new KeyStack(["abcdef"])), `KeyStack { length: 1 }`, ); },});
Deno.test({ name: "KeyStack() handles inspection in Node", async fn() { const { inspect } = await import("node:util");
assertEquals( inspect(new KeyStack(["abcdef"])), `KeyStack { length: 1 }`, ); },});
std

Version Info

Tagged at
3 weeks ago