-
Notifications
You must be signed in to change notification settings - Fork 4
/
RandomSpec.js
278 lines (221 loc) · 8.7 KB
/
RandomSpec.js
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
(function (root) {
var Random = typeof module !== "undefined" ? require("../lib/random") : root.Random;
describe("Random", function () {
describe("constructor", function () {
it("throws a TypeError if not called with new", function () {
expect(Random).toThrow(new TypeError("Expected to be called with new"));
});
describe("when passed a non-function", function () {
it("throws a TypeError", function () {
expect(function () {
return new Random("hello");
}).toThrow(new TypeError("Expected engine to be a function, got string"));
});
});
describe("when passed a function", function () {
it("sets engine to the passed-in function", function () {
var dummy = function () {};
var random = new Random(dummy);
expect(random.engine).toBe(dummy);
});
});
describe("when passed nothing", function () {
it("sets engine to the nativeMath engine", function () {
var random = new Random();
expect(random.engine).toBe(Random.engines.nativeMath);
});
});
});
describe("generateEntropyArray", function () {
it("returns a non-empty array of int32s", function () {
var actual = Random.generateEntropyArray();
expect(actual instanceof Array).toBe(true);
expect(actual.length).not.toBe(false);
for (var i = 0; i < actual.length; ++i) {
expect(actual[i]).toBe(actual[i] | 0);
}
});
it("gets entropy from the current date", function () {
var GLOBAL = typeof module !== "undefined" ? global : root;
var realDate = GLOBAL.Date;
spyOn(GLOBAL, "Date").andReturn(new realDate());
Random.generateEntropyArray();
expect(GLOBAL.Date).toHaveBeenCalled();
GLOBAL.Date = realDate;
});
it("gets entropy from the nativeMath engine", function () {
spyOn(Random.engines, "nativeMath").andCallThrough();
Random.generateEntropyArray();
expect(Random.engines.nativeMath).toHaveBeenCalled();
});
});
if (typeof root.Random !== "undefined") {
describe("noConflict", function () {
var Random;
beforeEach(function () {
Random = root.Random;
});
afterEach(function () {
root.Random = Random;
});
it("returns the Random function", function () {
var actual = Random.noConflict();
expect(actual).toBe(Random);
});
it("sets the Random property on global to the previous value", function () {
Random.noConflict();
expect(root.Random).toBeUndefined();
});
});
}
describe("prototype methods", function () {
var random;
beforeEach(function () {
random = new Random(function () {
return 0;
});
});
describe("integer", function () {
it("calls Random.integer", function () {
var min = 1234;
var max = 2345;
var dummy = 1337;
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "integer").andReturn(spy);
var actual = random.integer(min, max);
expect(Random.integer).toHaveBeenCalledWith(min, max);
expect(spy).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("real", function () {
it("calls Random.real", function () {
var min = 1234.5;
var max = 2345.6;
var dummy = 1337.5;
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "real").andReturn(spy);
var actual = random.real(min, max, true);
expect(Random.real).toHaveBeenCalledWith(min, max, true);
expect(spy).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("bool", function () {
it("calls Random.bool", function () {
var numerator = 1234;
var denominator = 2345;
var dummy = true;
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "bool").andReturn(spy);
var actual = random.bool(numerator, denominator);
expect(Random.bool).toHaveBeenCalledWith(numerator, denominator);
expect(spy).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("pick", function () {
it("calls Random.pick", function () {
var array = ["a", "b", "c"];
var dummy = "d";
spyOn(Random, "pick").andReturn(dummy);
var actual = random.pick(array);
expect(Random.pick).toHaveBeenCalledWith(random.engine, array);
expect(actual).toBe(dummy);
});
});
describe("shuffle", function () {
it("calls Random.shuffle", function () {
var array = ["a", "b", "c"];
var dummy = ["d"];
spyOn(Random, "shuffle").andReturn(dummy);
var actual = random.shuffle(array);
expect(Random.shuffle).toHaveBeenCalledWith(random.engine, array);
expect(actual).toBe(dummy);
});
});
describe("sample", function () {
it("calls Random.sample", function () {
var array = ["a", "b", "c"];
var sampleSize = 2;
var dummy = ["d"];
spyOn(Random, "sample").andReturn(dummy);
var actual = random.sample(array, sampleSize);
expect(Random.sample).toHaveBeenCalledWith(random.engine, array, sampleSize);
expect(actual).toBe(dummy);
});
});
describe("die", function () {
it("calls Random.die", function () {
var sideCount = 1337;
var dummy = 123;
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "die").andReturn(spy);
var actual = random.die(sideCount);
expect(Random.die).toHaveBeenCalledWith(sideCount);
expect(spy).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("dice", function () {
it("calls Random.dice", function () {
var sideCount = 1337;
var dieCount = 6;
var dummy = 123;
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "dice").andReturn(spy);
var actual = random.dice(sideCount, dieCount);
expect(Random.dice).toHaveBeenCalledWith(sideCount, dieCount);
expect(spy).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("uuid4", function () {
it("calls Random.pick", function () {
var dummy = "unique";
spyOn(Random, "uuid4").andReturn(dummy);
var actual = random.uuid4();
expect(Random.uuid4).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
describe("string", function () {
it("calls Random.string", function () {
var length = 1337;
var pool = "alpha";
var dummy = "bravo";
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "string").andReturn(spy);
var actual = random.string(length, pool);
expect(Random.string).toHaveBeenCalledWith(pool);
expect(spy).toHaveBeenCalledWith(random.engine, length);
expect(actual).toBe(dummy);
});
});
describe("hex", function () {
it("calls Random.hex", function () {
var length = 1337;
var upper = true;
var dummy = "bravo";
var spy = jasmine.createSpy().andReturn(dummy);
spyOn(Random, "hex").andReturn(spy);
var actual = random.hex(length, upper);
expect(Random.hex).toHaveBeenCalledWith(upper);
expect(spy).toHaveBeenCalledWith(random.engine, length);
expect(actual).toBe(dummy);
});
});
["uint32", "uint53", "uint53Full", "int53", "int53Full", "realZeroToOneExclusive", "realZeroToOneInclusive"].forEach(function (method) {
describe(method, function () {
it("calls Random." + method, function () {
var dummy = 1234;
spyOn(Random, method).andReturn(dummy);
var actual = random[method]();
expect(Random[method]).toHaveBeenCalledWith(random.engine);
expect(actual).toBe(dummy);
});
});
});
});
});
}(this));