-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.spec.ts
449 lines (357 loc) · 14 KB
/
index.spec.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
import { MathInterval } from './index';
describe('MathInterval', () => {
describe('interval & endpoints & bound types', () => {
const interval = MathInterval.interval(0, true, 100, false);
it('should set lower endpoint', () => {
expect(interval.lowerEndpoint()).toBe(0);
});
it('should set upper endpoint', () => {
expect(interval.upperEndpoint()).toBe(100);
});
it('should set lower bound type', () => {
expect(interval.isLowerBoundClosed()).toBe(true);
});
it('should set upper bound type', () => {
expect(interval.isUpperBoundClosed()).toBe(false);
});
describe('containsAll', () => () => {
it('should contain all if all numbers are within interval', () => {
expect(interval.containsAll([0, 20, 30, 40]));
});
it('should not contain all unless all numbers are within interval', () => {
expect(interval.containsAll([0, 20, 30, 100]));
});
});
});
describe('validation', () => {
it('should throw error if lower endpoint greater than upper endpoint', () => {
expect(() => MathInterval.interval(100, true, 0, false)).toThrowError();
});
it('should throw error if lower endpoint smaller than upper endpoint', () => {
expect(() => MathInterval.interval(0, true, 100, false)).not.toThrowError();
});
it('should throw error if lower equals to upper endpoint and both bounds are not closed', () => {
expect(() => MathInterval.interval(100, true, 100, false)).toThrowError();
});
it('should not throw error if lower equals to upper endpoint but both bounds are closed', () => {
expect(() => MathInterval.interval(100, true, 100, true)).not.toThrowError();
});
});
describe('isConnected', () => {
it('should be connected both ways', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(50, false, 150, false);
expect(a.isConnected(b)).toBe(true);
expect(b.isConnected(a)).toBe(true);
});
it('should not be connected both ways', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(150, false, 250, false);
expect(a.isConnected(b)).toBe(false);
expect(b.isConnected(a)).toBe(false);
});
it('should be connected if includes other', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(25, false, 75, false);
expect(a.isConnected(b)).toBe(true);
});
it('should not be connected even if connection set empty', () => {
const a = MathInterval.interval(0, true, 50, false);
const b = MathInterval.interval(50, true, 75, false);
expect(a.isConnected(b)).toBe(false);
});
it('should be connected if connection set singleton', () => {
const a = MathInterval.interval(0, true, 50, true);
const b = MathInterval.interval(50, true, 75, false);
expect(a.isConnected(b)).toBe(true);
});
it('should not be connected if connection set is invalid', () => {
const a = MathInterval.interval(0, true, 50, false);
const b = MathInterval.interval(50, false, 75, false);
expect(a.isConnected(b)).toBe(false);
});
});
describe('span', () => {
it('should return span for connected', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(50, false, 150, false);
const e = MathInterval.interval(0, false, 150, false);
expect(a.span(b).equals(e)).toBe(true);
});
it('should return enclosing as span', () => {
const a = MathInterval.interval(0, true, 100, false);
const b = MathInterval.interval(25, false, 50, true);
expect(a.span(b).equals(a)).toBe(true);
});
it('should return span for disconnected', () => {
const a = MathInterval.interval(0, false, 25, false);
const b = MathInterval.interval(75, false, 100, true);
const e = MathInterval.interval(0, false, 100, true);
expect(a.span(b).equals(e)).toBe(true);
});
it('should return span for closely disconnected', () => {
const a = MathInterval.interval(0, true, 25, true);
const b = MathInterval.interval(25, false, 100, false);
const e = MathInterval.interval(0, true, 100, false);
expect(a.span(b).equals(e)).toBe(true);
});
});
describe('intersection', () => {
it('should return intersection for connected', () => {
const a = MathInterval.interval(0, false, 100, true);
const b = MathInterval.interval(50, false, 150, false);
const e = MathInterval.interval(50, false, 100, true);
expect(a.intersection(b).equals(e)).toBe(true);
});
it('should return enclosed as intersection', () => {
const a = MathInterval.interval(0, true, 100, false);
const b = MathInterval.interval(25, false, 50, true);
expect(a.intersection(b).equals(b)).toBe(true);
});
it('should not return intersection for disconnected', () => {
const a = MathInterval.interval(0, false, 25, false);
const b = MathInterval.interval(75, false, 100, true);
const e = MathInterval.interval(0, false, 100, true);
expect(() => a.intersection(b)).toThrowError();
});
it('should not return intersection for closely disconnected', () => {
const a = MathInterval.interval(0, true, 25, true);
const b = MathInterval.interval(25, false, 100, false);
const e = MathInterval.interval(0, true, 100, false);
expect(() => a.intersection(b)).toThrowError();
});
});
describe('encloses', () => {
it('should enclose', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(25, false, 75, false);
expect(a.encloses(b)).toBe(true);
});
it('should not enclose', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(150, false, 250, false);
expect(a.encloses(b)).toBe(false);
});
it('should not enclose if connected', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(50, false, 150, false);
expect(a.encloses(b)).toBe(false);
});
it('should enclose if same and all bounds are closed', () => {
const a = MathInterval.interval(0, true, 100, true);
const b = MathInterval.interval(0, true, 100, true);
expect(a.encloses(b)).toBe(true);
});
it('should enclose if same and all bounds are not closed', () => {
const a = MathInterval.interval(0, true, 100, false);
const b = MathInterval.interval(0, true, 100, false);
expect(a.encloses(b)).toBe(true);
});
it('should not enclose if endpoints are same but enclosing is open and enclosed closed', () => {
const a = MathInterval.interval(0, true, 100, false);
const b = MathInterval.interval(0, true, 100, true);
expect(a.encloses(b)).toBe(false);
});
it('should enclose if endpoints are same but enclosing is open and enclosed closed', () => {
const a = MathInterval.interval(0, true, 100, true);
const b = MathInterval.interval(0, true, 100, false);
expect(a.encloses(b)).toBe(true);
});
it('should enclose if singleton', () => {
const a = MathInterval.interval(0, false, 100, true);
const b = MathInterval.interval(100, true, 100, true);
expect(a.encloses(b)).toBe(true);
});
it('should enclose if on the edge', () => {
const a = MathInterval.interval(0, false, 100, true);
const b = MathInterval.interval(50, true, 100, true);
expect(a.encloses(b)).toBe(true);
});
it('should not enclose if enclosing open and enclosed close', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(50, true, 100, true);
expect(a.encloses(b)).toBe(false);
});
});
describe('equals', () => {
it('should be equal closed', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(0, false, 100, false);
expect(a.equals(b)).toBe(true);
});
it('should be equal open closed', () => {
const a = MathInterval.interval(0, true, 100, false);
const b = MathInterval.interval(0, true, 100, false);
expect(a.equals(b)).toBe(true);
});
it('should not be equal if bounds are not same type', () => {
const a = MathInterval.interval(0, false, 100, false);
const b = MathInterval.interval(0, true, 100, false);
expect(a.equals(b)).toBe(false);
});
it('should not be equal if endpoints are not same', () => {
const a = MathInterval.interval(50, true, 100, true);
const b = MathInterval.interval(0, true, 100, true);
expect(a.equals(b)).toBe(false);
});
});
describe('open', () => {
const interval = MathInterval.open(0, 100);
it('should not contain lower endpoint', () => {
expect(interval.contains(0)).toBe(false);
});
it('should not contain upper endpoint', () => {
expect(interval.contains(100)).toBe(false);
});
it('should contain middle', () => {
expect(interval.contains(50)).toBe(true);
});
it('should not contain less than lower endpoint', () => {
expect(interval.contains(-1)).toBe(false);
});
it('should not contain greater than upper endpoint', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('(0, 100)');
});
});
describe('closed', () => {
const interval = MathInterval.closed(0, 100);
it('should contain lower endpoint', () => {
expect(interval.contains(0)).toBe(true);
});
it('should contain upper endpoint', () => {
expect(interval.contains(100)).toBe(true);
});
it('should contain middle', () => {
expect(interval.contains(50)).toBe(true);
});
it('should not contain less than lower endpoint', () => {
expect(interval.contains(-1)).toBe(false);
});
it('should not contain greater than upper endpoint', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('[0, 100]');
});
});
describe('closedOpen', () => {
const interval = MathInterval.closedOpen(0, 100);
it('should contain lower endpoint', () => {
expect(interval.contains(0)).toBe(true);
});
it('should not contain upper endpoint', () => {
expect(interval.contains(100)).toBe(false);
});
it('should contain middle', () => {
expect(interval.contains(50)).toBe(true);
});
it('should not contain less than lower endpoint', () => {
expect(interval.contains(-1)).toBe(false);
});
it('should not contain greater than upper endpoint', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('[0, 100)');
});
});
describe('openClosed', () => {
const interval = MathInterval.openClosed(0, 100);
it('should not contain lower endpoint', () => {
expect(interval.contains(0)).toBe(false);
});
it('should contain upper endpoint', () => {
expect(interval.contains(100)).toBe(true);
});
it('should contain middle', () => {
expect(interval.contains(50)).toBe(true);
});
it('should not contain less than lower endpoint', () => {
expect(interval.contains(-1)).toBe(false);
});
it('should not contain greater than upper endpoint', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('(0, 100]');
});
});
describe('greaterThan', () => {
const interval = MathInterval.greaterThan(100);
it('should not contain less than limit', () => {
expect(interval.contains(99)).toBe(false);
});
it('should not contain limit', () => {
expect(interval.contains(100)).toBe(false);
});
it('should contain greater than limit', () => {
expect(interval.contains(101)).toBe(true);
});
it('toString', () => {
expect(interval.toString()).toBe('(100, +∞)');
});
});
describe('atLeast', () => {
const interval = MathInterval.atLeast(100);
it('should not contain less than limit', () => {
expect(interval.contains(99)).toBe(false);
});
it('should contain limit', () => {
expect(interval.contains(100)).toBe(true);
});
it('should contain greater than limit', () => {
expect(interval.contains(101)).toBe(true);
});
it('toString', () => {
expect(interval.toString()).toBe('[100, +∞)');
});
});
describe('lessThan', () => {
const interval = MathInterval.lessThan(100);
it('should contain less than limit', () => {
expect(interval.contains(99)).toBe(true);
});
it('should not contain limit', () => {
expect(interval.contains(100)).toBe(false);
});
it('should not contain greater than limit', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('(-∞, 100)');
});
});
describe('atMost', () => {
const interval = MathInterval.atMost(100);
it('should contain less than limit', () => {
expect(interval.contains(99)).toBe(true);
});
it('should contain limit', () => {
expect(interval.contains(100)).toBe(true);
});
it('should not contain greater than limit', () => {
expect(interval.contains(101)).toBe(false);
});
it('toString', () => {
expect(interval.toString()).toBe('(-∞, 100]');
});
});
describe('all', () => {
const interval = MathInterval.all();
it('should not contain Infinity', () => {
expect(interval.contains(Infinity)).toBe(false);
});
it('should not contain -Inifinity', () => {
expect(interval.contains(-Infinity)).toBe(false);
});
it('should contain 0', () => {
expect(interval.contains(0)).toBe(true);
});
it('toString', () => {
expect(interval.toString()).toBe('(-∞, +∞)');
});
});
});