-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmod_test.ts
165 lines (149 loc) · 5.36 KB
/
mod_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
import { assertEquals, assertMatch, assertThrows } from "./test_deps.ts";
import { cryptoRandomString } from "./mod.ts";
// Probabilistic, result is always less than or equal to actual set size, chance it is less is below 1e-256 for sizes up to 32656
const generatedCharacterSetSize = (
options: { type?: string; characters?: string },
targetSize: number,
) => {
const set = new Set();
const length = targetSize * 640;
const string = cryptoRandomString({ ...options, length });
for (let i = 0; i < length; i++) {
set.add(string[i]);
}
return set.size;
};
Deno.test("main", () => {
assertEquals(cryptoRandomString({ length: 0 }).length, 0);
assertEquals(cryptoRandomString({ length: 10 }).length, 10);
assertEquals(cryptoRandomString({ length: 100 }).length, 100);
assertMatch(cryptoRandomString({ length: 100 }), /^[a-f\d]*$/); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({}, 16), 16);
});
Deno.test("hex", () => {
assertEquals(cryptoRandomString({ length: 0, type: "hex" }).length, 0);
assertEquals(cryptoRandomString({ length: 10, type: "hex" }).length, 10);
assertEquals(cryptoRandomString({ length: 100, type: "hex" }).length, 100);
assertMatch(cryptoRandomString({ length: 100, type: "hex" }), /^[a-f\d]*$/); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "hex" }, 16), 16);
});
Deno.test("base64", () => {
assertEquals(cryptoRandomString({ length: 0, type: "base64" }).length, 0);
assertEquals(cryptoRandomString({ length: 10, type: "base64" }).length, 10);
assertEquals(cryptoRandomString({ length: 100, type: "base64" }).length, 100);
assertMatch(
cryptoRandomString({ length: 100, type: "base64" }),
/^[a-zA-Z\d/+]*$/,
); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "base64" }, 64), 64);
});
Deno.test("url-safe", () => {
assertEquals(cryptoRandomString({ length: 0, type: "url-safe" }).length, 0);
assertEquals(cryptoRandomString({ length: 10, type: "url-safe" }).length, 10);
assertEquals(
cryptoRandomString({ length: 100, type: "url-safe" }).length,
100,
);
assertMatch(
cryptoRandomString({ length: 100, type: "url-safe" }),
/^[a-zA-Z\d._~-]*$/,
); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "url-safe" }, 66), 66);
});
Deno.test("numeric", () => {
assertEquals(cryptoRandomString({ length: 0, type: "numeric" }).length, 0);
assertEquals(cryptoRandomString({ length: 10, type: "numeric" }).length, 10);
assertEquals(
cryptoRandomString({ length: 100, type: "numeric" }).length,
100,
);
assertMatch(cryptoRandomString({ length: 100, type: "numeric" }), /^[\d]*$/); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "numeric" }, 10), 10);
});
Deno.test("distinguishable", () => {
assertEquals(
cryptoRandomString({ length: 0, type: "distinguishable" }).length,
0,
);
assertEquals(
cryptoRandomString({ length: 10, type: "distinguishable" }).length,
10,
);
assertEquals(
cryptoRandomString({ length: 100, type: "distinguishable" }).length,
100,
);
assertMatch(
cryptoRandomString({ length: 100, type: "distinguishable" }),
/^[CDEHKMPRTUWXY012458]*$/,
); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "distinguishable" }, 19), 19);
});
Deno.test("ascii-printable", () => {
assertEquals(
cryptoRandomString({ length: 0, type: "ascii-printable" }).length,
0,
);
assertEquals(
cryptoRandomString({ length: 10, type: "ascii-printable" }).length,
10,
);
assertEquals(
cryptoRandomString({ length: 100, type: "ascii-printable" }).length,
100,
);
assertMatch(
cryptoRandomString({ length: 100, type: "ascii-printable" }),
/^[!"#$%&'()*+,-./\d:;<=>?@A-Z[\\\]^_`a-z{|}~]*$/,
); // Sanity check, probabilistic
});
Deno.test("alphanumeric", () => {
assertEquals(
cryptoRandomString({ length: 0, type: "alphanumeric" }).length,
0,
);
assertEquals(
cryptoRandomString({ length: 10, type: "alphanumeric" }).length,
10,
);
assertEquals(
cryptoRandomString({ length: 100, type: "alphanumeric" }).length,
100,
);
assertMatch(
cryptoRandomString({ length: 100, type: "alphanumeric" }),
/^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789]*$/,
); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ type: "alphanumeric" }, 19), 62);
});
Deno.test("characters", () => {
assertEquals(cryptoRandomString({ length: 0, characters: "1234" }).length, 0);
assertEquals(
cryptoRandomString({ length: 10, characters: "1234" }).length,
10,
);
assertEquals(
cryptoRandomString({ length: 100, characters: "1234" }).length,
100,
);
assertMatch(
cryptoRandomString({ length: 100, characters: "1234" }),
/^[1-4]*$/,
); // Sanity check, probabilistic
assertEquals(generatedCharacterSetSize({ characters: "1234" }, 4), 4);
assertEquals(generatedCharacterSetSize({ characters: "0123456789" }, 10), 10);
});
Deno.test("argument errors", () => {
assertThrows(() => {
cryptoRandomString({ length: Infinity });
});
assertThrows(() => {
cryptoRandomString({ length: -1 });
});
assertThrows(() => {
cryptoRandomString({ length: 0, type: "hex", characters: "1234" });
});
assertThrows(() => {
cryptoRandomString({ length: 0, type: "unknown" });
});
});