deno.land / std@0.173.0 / crypto / keystack_test.ts

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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../testing/asserts.ts";
import { KeyStack } from "./keystack.ts";
Deno.test({ name: "keyStack.sign() - 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() - 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() - 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() - 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() - 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() - 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() - 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() - 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() - 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() - 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() - 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 - 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 - 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: "keyStack - 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: "keyStack - 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: "keyStack - 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: "keyStack - 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: "keyStack - 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 - inspecting", fn() { assertEquals( Deno.inspect(new KeyStack(["abcdef"])), `KeyStack { length: 1 }`, ); },});
std

Version Info

Tagged at
a year ago