This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArgumentsArrayValidator.tests.js
56 lines (46 loc) · 1.81 KB
/
ArgumentsArrayValidator.tests.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
describe('The ArgumentsArrayValidator object', function() {
describe('should raise errors when', function() {
it('the array is not provided', function() {
expect(function() {
argumentsArrayValidator.validate();
}).toThrowError(Error, /non-null/);
});
it('the array is null', function() {
expect(function() {
argumentsArrayValidator.validate(null);
}).toThrowError(Error, /non-null/);
});
it('the array is not an array', function() {
expect(function() {
argumentsArrayValidator.validate("Not an array");
}).toThrowError(Error, /must be an array/);
});
it('the array does not have the correct count of elements', function() {
expect(function() {
argumentsArrayValidator.validate([1, 2], 5);
}).toThrowError(Error, /must contain precisely 5/);
});
it('the array has too few elements', function() {
expect(function() {
argumentsArrayValidator.validate([1, 2], 4, null);
}).toThrowError(Error, /must contain at least 4/);
});
it('the array has too many elements', function() {
expect(function() {
argumentsArrayValidator.validate([1, 2, 3, 4], null, 2);
}).toThrowError(Error, /must contain no more than 2/);
});
});
it('should return true when the array has the correct count of elements', function() {
expect(argumentsArrayValidator.validate([1, 2], 2))
.toEqual(true);
});
it('should return true when the array has at least the minimum number of elements', function() {
expect(argumentsArrayValidator.validate([1, 2, 3], 2, null))
.toEqual(true);
});
it('should return true when the array has no more than the maximum number of elements', function() {
expect(argumentsArrayValidator.validate([1, 2], null, 4))
.toEqual(true);
});
});