forked from juristr/angular-testing-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-matchers.ts
215 lines (190 loc) · 5.72 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
// see https://github.com/angular/flex-layout/edit/master/src/lib/utils/testing/custom-matchers.ts
/**
* @license
* Copyright Google Inc. 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';
export const expect: (actual: any) => NgMatchers = <any>_global.expect;
/**
* Jasmine matchers that check Angular specific conditions.
*/
export interface NgMatchers extends jasmine.Matchers {
/**
* Invert the matchers.
*/
not: NgMatchers;
/**
* 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 CSS styles.
*
* ## Example
*
* {@example testing/ts/matchers.ts region='toHaveCssStyle'}
*/
toHaveCssStyle(expected: { [k: string]: string } | string): boolean;
}
/**
* 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)}"
`;
}
};
}
};
},
toHaveCssStyle: function() {
return {
compare: function(actual: any, styles: { [k: string]: string } | string) {
let allPassed: boolean;
if (typeof styles === 'string') {
allPassed = _.hasStyle(actual, styles);
} else {
allPassed = Object.keys(styles).length !== 0;
Object.keys(styles).forEach(prop => {
allPassed = allPassed && hasPrefixedStyles(actual, prop, styles[prop]);
});
}
return {
pass: allPassed,
get message() {
const expectedValueStr = typeof styles === 'string' ? styles : JSON.stringify(styles);
return `
Expected ${actual.outerHTML} ${!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) {
value = value !== '*' ? value.trim() : undefined;
let elHasStyle = _.hasStyle(actual, key, value);
if (!elHasStyle) {
let prefixedStyles = applyCssPrefixes({ [key]: value });
Object.keys(prefixedStyles).forEach(prop => {
// Search for optional prefixed values
elHasStyle = elHasStyle || _.hasStyle(actual, prop, prefixedStyles[prop]);
});
}
return elHasStyle;
}
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);
}