forked from juristr/angular-testing-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-matchers.ts
308 lines (274 loc) · 7.86 KB
/
custom-matchers.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
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
declare var global: any;
const _global = <any>(typeof window === 'undefined' ? global : window);
import { _dom as _ } from './dom-tools';
import { applyCssPrefixes } from './auto-prefixer';
import { extendObject } from './object-extend';
export const expect: (actual: any) => NgMatchers = <any>_global.expect;
/**
* Jasmine matchers that check Angular specific conditions.
*/
export interface NgMatchers extends jasmine.Matchers {
/**
* Expect the element to have exactly the given text.
*
* ## Example
*
* {@example testing/ts/matchers.ts region='toHaveText'}
*/
toHaveText(expected: string): boolean;
/**
* Compare key:value pairs as matching EXACTLY
*/
toHaveMap(expected: { [k: string]: string }): boolean;
/**
* Expect the element to have the given CSS class.
*
* ## Example
*
* {@example testing/ts/matchers.ts region='toHaveCssClass'}
*/
toHaveCssClass(expected: string): boolean;
/**
* Expect the element to have the given pairs of attribute name and attribute value
*/
toHaveAttributes(expected: { [k: string]: string }): boolean;
/**
* Expect the element to have the given CSS styles injected INLINE
*
* ## Example
*
* {@example testing/ts/matchers.ts region='toHaveStyle'}
*/
toHaveStyle(expected: { [k: string]: string } | string): boolean;
/**
* Expect the element to have the given CSS inline OR computed styles.
*
* ## Example
*
* {@example testing/ts/matchers.ts region='toHaveStyle'}
*/
toHaveStyle(expected: { [k: string]: string } | string): boolean;
/**
* Invert the matchers.
*/
not: NgMatchers;
}
/**
* NOTE: These custom JASMINE Matchers are used only
* in the Karma/Jasmine testing for the Layout Directives
* in `src/lib/flex/api`
*/
export const customMatchers: jasmine.CustomMatcherFactories = {
toEqual: function(util) {
return {
compare: function(actual: any, expected: any) {
return { pass: util.equals(actual, expected, [compareMap]) };
}
};
function compareMap(actual: any, expected: any) {
if (actual instanceof Map) {
let pass = actual.size === expected.size;
if (pass) {
actual.forEach((v: any, k: any) => {
pass = pass && util.equals(v, expected.get(k));
});
}
return pass;
} else {
return undefined;
}
}
},
toHaveText: function() {
return {
compare: function(actual: any, expectedText: string) {
const actualText = elementText(actual);
return {
pass: actualText == expectedText,
get message() {
return 'Expected ' + actualText + ' to be equal to ' + expectedText;
}
};
}
};
},
toHaveCssClass: function() {
return { compare: buildError(false), negativeCompare: buildError(true) };
function buildError(isNot: boolean) {
return function(actual: any, className: string) {
return {
pass: _.hasClass(actual, className) == !isNot,
get message() {
return `
Expected ${actual.outerHTML} ${isNot ? 'not ' : ''}
to contain the CSS class '${className}'
`;
}
};
};
}
},
toHaveMap: function() {
return {
compare: function(
actual: { [k: string]: string },
map: { [k: string]: string }
) {
let allPassed: boolean;
allPassed = Object.keys(map).length !== 0;
Object.keys(map).forEach(key => {
allPassed = allPassed && actual[key] === map[key];
});
return {
pass: allPassed,
get message() {
return `
Expected ${JSON.stringify(actual)} ${
!allPassed ? ' ' : 'not '
} to contain the
'${JSON.stringify(map)}'
`;
}
};
}
};
},
toHaveAttributes: function() {
return {
compare: function(actual: any, map: { [k: string]: string }) {
let allPassed: boolean;
let attributeNames = Object.keys(map);
allPassed = attributeNames.length !== 0;
attributeNames.forEach(name => {
allPassed =
allPassed &&
_.hasAttribute(actual, name) &&
_.getAttribute(actual, name) === map[name];
});
return {
pass: allPassed,
get message() {
return `
Expected ${actual.outerHTML} ${
allPassed ? 'not ' : ''
} attributes to contain
'${JSON.stringify(map)}'
`;
}
};
}
};
},
/**
* Check element's inline styles only
*/
toHaveStyle: function() {
return {
compare: buildCompareStyleFunction(true)
};
},
/**
* Check element's css stylesheet only (if not present inline)
*/
toHaveCSS: function() {
return {
compare: buildCompareStyleFunction(false)
};
}
};
/**
* Curried value to function to check styles that are inline or in a stylesheet for the
* specified DOM element.
*/
function buildCompareStyleFunction(inlineOnly = true) {
return function(actual: any, styles: { [k: string]: string } | string) {
let found = {};
let allPassed: boolean;
if (typeof styles === 'string') {
styles = { [styles]: null };
}
allPassed = Object.keys(styles).length !== 0;
Object.keys(styles).forEach(prop => {
let { elHasStyle, current } = hasPrefixedStyles(
actual,
prop,
styles[prop],
inlineOnly
);
allPassed = allPassed && elHasStyle;
if (!elHasStyle) {
extendObject(found, current);
}
});
return {
pass: allPassed,
get message() {
const expectedValueStr =
typeof styles === 'string' ? styles : JSON.stringify(styles, null, 2);
const foundValueStr = inlineOnly
? actual.outerHTML
: JSON.stringify(found);
return `
Expected ${foundValueStr} ${!allPassed ? ' ' : 'not '} to contain the
CSS ${typeof styles === 'string' ? 'property' : 'styles'} '${
expectedValueStr
}'
`;
}
};
};
}
/**
* Validate presence of requested style or use fallback
* to possible `prefixed` styles. Useful when some browsers
* (Safari, IE, etc) will use prefixed style instead of defaults.
*/
function hasPrefixedStyles(actual, key, value, inlineOnly) {
const current = {},
computed = getComputedStyle(actual);
value = value !== '*' ? value.trim() : undefined;
let elHasStyle = _.hasStyle(actual, key, value, inlineOnly);
if (!elHasStyle) {
let prefixedStyles = applyCssPrefixes({ [key]: value });
Object.keys(prefixedStyles).forEach(prop => {
// Search for optional prefixed values
elHasStyle =
elHasStyle ||
_.hasStyle(actual, prop, prefixedStyles[prop], inlineOnly);
if (!elHasStyle) {
current[prop] = computed.getPropertyValue(prop);
}
});
}
// Return BOTH confirmation and current computed key values (if confirmation == false)
return { elHasStyle, current };
}
function elementText(n: any): string {
const hasNodes = (m: any) => {
const children = _.childNodes(m);
return children && children['length'];
};
if (n instanceof Array) {
return n.map(elementText).join('');
}
if (_.isCommentNode(n)) {
return '';
}
if (_.isElementNode(n) && _.tagName(n) == 'CONTENT') {
return elementText(Array.prototype.slice.apply(_.getDistributedNodes(n)));
}
if (_.hasShadowRoot(n)) {
return elementText(_.childNodesAsList(_.getShadowRoot(n)));
}
if (hasNodes(n)) {
return elementText(_.childNodesAsList(n));
}
return _.getText(n);
}