forked from CesiumGS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddDefaultMatchers.js
161 lines (132 loc) · 5.77 KB
/
addDefaultMatchers.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
/*global define*/
define([
'./equals',
'Core/defined',
'Core/DeveloperError',
'Core/RuntimeError'
], function(
equals,
defined,
DeveloperError,
RuntimeError) {
"use strict";
function createMissingFunctionMessageFunction(item, actualPrototype, expectedInterfacePrototype) {
return function() {
return 'Expected function \'' + item + '\' to exist on ' + actualPrototype.constructor.name + ' because it should implement interface ' + expectedInterfacePrototype.constructor.name + '.';
};
}
function makeThrowFunction(debug, Type, name) {
if (debug) {
return function(expected) {
// based on the built-in Jasmine toThrow matcher
var result = false;
var exception;
if (typeof this.actual !== 'function') {
throw new Error('Actual is not a function');
}
try {
this.actual();
} catch (e) {
exception = e;
}
if (exception) {
result = exception instanceof Type;
}
var not = this.isNot ? 'not ' : '';
this.message = function() {
if (result) {
return ['Expected function ' + not + 'to throw ' + name + ' , but it threw', exception.message || exception].join(' ');
} else {
return 'Expected function to throw ' + name + '.';
}
};
return result;
};
}
return function() {
return this.isNot ? false : true;
};
}
function createDefaultMatchers(debug) {
return {
toBeGreaterThanOrEqualTo : function(value, epsilon) {
return this.actual >= value;
},
toBeLessThanOrEqualTo : function(value, epsilon) {
return this.actual <= value;
},
toBeBetween : function(lower, upper) {
if (lower > upper) {
var tmp = upper;
upper = lower;
lower = tmp;
}
return this.actual >= lower && this.actual <= upper;
},
toEqual : function(expected) {
return equals(this.env, this.actual, expected);
},
toEqualEpsilon : function(expected, epsilon) {
function equalityTester(a, b) {
var to_run;
if (defined(a)) {
if (typeof a.equalsEpsilon === 'function') {
return a.equalsEpsilon(b, epsilon);
} else if (a instanceof Object) {
// Check if the current object has a static function named 'equalsEpsilon'
to_run = Object.getPrototypeOf(a).constructor.equalsEpsilon;
if (typeof to_run === 'function') {
return to_run(a, b, epsilon);
}
}
}
if (defined(b)) {
if (typeof b.equalsEpsilon === 'function') {
return b.equalsEpsilon(a, epsilon);
} else if (b instanceof Object) {
// Check if the current object has a static function named 'equalsEpsilon'
to_run = Object.getPrototypeOf(b).constructor.equalsEpsilon;
if (typeof to_run === 'function') {
return to_run(b, a, epsilon);
}
}
}
if (typeof a === 'number' || typeof b === 'number') {
return Math.abs(a - b) <= epsilon;
}
return undefined;
}
var origTesters = this.env.equalityTesters_;
this.env.equalityTesters_ = [equalityTester];
var result = equals(this.env, this.actual, expected);
this.env.equalityTesters_ = origTesters;
return result;
},
toConformToInterface : function(expectedInterface) {
// All function properties on the prototype should also exist on the actual's prototype.
var actualPrototype = this.actual.prototype;
var expectedInterfacePrototype = expectedInterface.prototype;
for ( var item in expectedInterfacePrototype) {
if (expectedInterfacePrototype.hasOwnProperty(item) && typeof expectedInterfacePrototype[item] === 'function' && !actualPrototype.hasOwnProperty(item)) {
this.message = createMissingFunctionMessageFunction(item, actualPrototype, expectedInterfacePrototype);
return false;
}
}
return true;
},
toBeInstanceOf : function(expectedConstructor) {
return this.actual instanceof expectedConstructor;
},
toThrow : function(expectedConstructor) {
throw new Error('Do not use toThrow. Use toThrowDeveloperError or toThrowRuntimeError instead.');
},
toThrowDeveloperError : makeThrowFunction(debug, DeveloperError, 'DeveloperError'),
toThrowRuntimeError : makeThrowFunction(true, RuntimeError, 'RuntimeError')
};
}
return function(debug) {
return function() {
this.addMatchers(createDefaultMatchers(debug));
};
};
});