2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-10-03 19:46:05 -04:00
|
|
|
|
2016-10-19 16:42:39 -04:00
|
|
|
import {global} from './facade/lang';
|
2016-08-30 21:07:40 -04:00
|
|
|
import {getDOM} from './private_import_platform-browser';
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
|
2015-12-03 18:49:09 -05:00
|
|
|
/**
|
|
|
|
* Jasmine matchers that check Angular specific conditions.
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
export interface NgMatchers extends jasmine.Matchers {
|
2015-12-03 18:49:09 -05:00
|
|
|
/**
|
|
|
|
* Expect the value to be a `Promise`.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toBePromise'}
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
toBePromise(): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect the value to be an instance of a class.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toBeAnInstanceOf'}
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
toBeAnInstanceOf(expected: any): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect the element to have exactly the given text.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toHaveText'}
|
|
|
|
*/
|
2016-07-29 15:20:52 -04:00
|
|
|
toHaveText(expected: string): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect the element to have the given CSS class.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toHaveCssClass'}
|
|
|
|
*/
|
2016-07-29 15:20:52 -04:00
|
|
|
toHaveCssClass(expected: string): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect the element to have the given CSS styles.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toHaveCssStyle'}
|
|
|
|
*/
|
2016-07-29 15:20:52 -04:00
|
|
|
toHaveCssStyle(expected: {[k: string]: string}|string): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect a class to implement the interface of the given class.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toImplement'}
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
toImplement(expected: any): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expect an exception to contain the given error text.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toContainError'}
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
toContainError(expected: any): boolean;
|
2015-12-03 18:49:09 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Invert the matchers.
|
|
|
|
*/
|
2015-10-08 18:33:17 -04:00
|
|
|
not: NgMatchers;
|
|
|
|
}
|
|
|
|
|
2016-07-29 15:20:52 -04:00
|
|
|
const _global = <any>(typeof window === 'undefined' ? global : window);
|
2015-10-08 18:33:17 -04:00
|
|
|
|
2015-12-03 18:49:09 -05:00
|
|
|
/**
|
|
|
|
* Jasmine matching function with Angular matchers mixed in.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* {@example testing/ts/matchers.ts region='toHaveText'}
|
|
|
|
*/
|
2016-07-29 15:20:52 -04:00
|
|
|
export const expect: (actual: any) => NgMatchers = <any>_global.expect;
|
2015-10-08 18:33:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
// Some Map polyfills don't polyfill Map.toString correctly, which
|
|
|
|
// gives us bad error messages in tests.
|
|
|
|
// The only way to do this in Jasmine is to monkey patch a method
|
|
|
|
// to the object :-(
|
2016-07-29 15:20:52 -04:00
|
|
|
(Map as any).prototype['jasmineToString'] = function() {
|
|
|
|
const m = this;
|
2015-10-08 18:33:17 -04:00
|
|
|
if (!m) {
|
|
|
|
return '' + m;
|
|
|
|
}
|
2016-07-29 15:20:52 -04:00
|
|
|
const res: any[] = [];
|
|
|
|
m.forEach((v: any, k: any) => { res.push(`${k}:${v}`); });
|
2015-10-08 18:33:17 -04:00
|
|
|
return `{ ${res.join(',')} }`;
|
|
|
|
};
|
|
|
|
|
|
|
|
_global.beforeEach(function() {
|
|
|
|
jasmine.addMatchers({
|
|
|
|
// Custom handler for Map as Jasmine does not support it yet
|
2016-07-29 15:20:52 -04:00
|
|
|
toEqual: function(util) {
|
2015-10-08 18:33:17 -04:00
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any, expected: any) {
|
2015-10-08 18:33:17 -04:00
|
|
|
return {pass: util.equals(actual, expected, [compareMap])};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-29 15:20:52 -04:00
|
|
|
function compareMap(actual: any, expected: any) {
|
2015-10-08 18:33:17 -04:00
|
|
|
if (actual instanceof Map) {
|
2016-07-29 15:20:52 -04:00
|
|
|
let pass = actual.size === expected.size;
|
2015-10-08 18:33:17 -04:00
|
|
|
if (pass) {
|
2016-07-29 15:20:52 -04:00
|
|
|
actual.forEach((v: any, k: any) => { pass = pass && util.equals(v, expected.get(k)); });
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
return pass;
|
|
|
|
} else {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
toBePromise: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any) {
|
|
|
|
const pass = typeof actual === 'object' && typeof actual.then === 'function';
|
2015-10-08 18:33:17 -04:00
|
|
|
return {pass: pass, get message() { return 'Expected ' + actual + ' to be a promise'; }};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
toBeAnInstanceOf: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any, expectedClass: any) {
|
|
|
|
const pass = typeof actual === 'object' && actual instanceof expectedClass;
|
2015-10-08 18:33:17 -04:00
|
|
|
return {
|
|
|
|
pass: pass,
|
|
|
|
get message() {
|
|
|
|
return 'Expected ' + actual + ' to be an instance of ' + expectedClass;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
toHaveText: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any, expectedText: string) {
|
|
|
|
const actualText = elementText(actual);
|
2015-10-08 18:33:17 -04:00
|
|
|
return {
|
|
|
|
pass: actualText == expectedText,
|
|
|
|
get message() { return 'Expected ' + actualText + ' to be equal to ' + expectedText; }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
toHaveCssClass: function() {
|
|
|
|
return {compare: buildError(false), negativeCompare: buildError(true)};
|
|
|
|
|
2016-07-29 15:20:52 -04:00
|
|
|
function buildError(isNot: boolean) {
|
|
|
|
return function(actual: any, className: string) {
|
2015-10-08 18:33:17 -04:00
|
|
|
return {
|
2016-04-28 20:50:03 -04:00
|
|
|
pass: getDOM().hasClass(actual, className) == !isNot,
|
2015-10-08 18:33:17 -04:00
|
|
|
get message() {
|
|
|
|
return `Expected ${actual.outerHTML} ${isNot ? 'not ' : ''}to contain the CSS class "${className}"`;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-17 15:37:39 -05:00
|
|
|
toHaveCssStyle: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any, styles: {[k: string]: string}|string) {
|
|
|
|
let allPassed: boolean;
|
2016-10-19 16:42:39 -04:00
|
|
|
if (typeof styles === 'string') {
|
2016-04-28 20:50:03 -04:00
|
|
|
allPassed = getDOM().hasStyle(actual, styles);
|
2015-11-17 15:37:39 -05:00
|
|
|
} else {
|
2016-10-03 19:46:05 -04:00
|
|
|
allPassed = Object.keys(styles).length !== 0;
|
|
|
|
Object.keys(styles).forEach(prop => {
|
|
|
|
allPassed = allPassed && getDOM().hasStyle(actual, prop, styles[prop]);
|
2016-07-29 15:20:52 -04:00
|
|
|
});
|
2015-11-17 15:37:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
pass: allPassed,
|
|
|
|
get message() {
|
2016-10-19 16:42:39 -04:00
|
|
|
const expectedValueStr = typeof styles === 'string' ? styles : JSON.stringify(styles);
|
2015-11-17 15:37:39 -05:00
|
|
|
return `Expected ${actual.outerHTML} ${!allPassed ? ' ' : 'not '}to contain the
|
2016-10-19 16:42:39 -04:00
|
|
|
CSS ${typeof styles === 'string' ? 'property' : 'styles'} "${expectedValueStr}"`;
|
2015-11-17 15:37:39 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-10-08 18:33:17 -04:00
|
|
|
toContainError: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actual: any, expectedText: any) {
|
|
|
|
const errorMessage = actual.toString();
|
2015-10-08 18:33:17 -04:00
|
|
|
return {
|
|
|
|
pass: errorMessage.indexOf(expectedText) > -1,
|
|
|
|
get message() { return 'Expected ' + errorMessage + ' to contain ' + expectedText; }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
toImplement: function() {
|
|
|
|
return {
|
2016-07-29 15:20:52 -04:00
|
|
|
compare: function(actualObject: any, expectedInterface: any) {
|
|
|
|
const intProps = Object.keys(expectedInterface.prototype);
|
2015-10-08 18:33:17 -04:00
|
|
|
|
2016-07-29 15:20:52 -04:00
|
|
|
const missedMethods: any[] = [];
|
2015-10-08 18:33:17 -04:00
|
|
|
intProps.forEach((k) => {
|
|
|
|
if (!actualObject.constructor.prototype[k]) missedMethods.push(k);
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
pass: missedMethods.length == 0,
|
|
|
|
get message() {
|
|
|
|
return 'Expected ' + actualObject + ' to have the following methods: ' +
|
2016-06-08 19:38:52 -04:00
|
|
|
missedMethods.join(', ');
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-07-29 15:20:52 -04:00
|
|
|
function elementText(n: any): string {
|
2016-11-12 08:08:58 -05:00
|
|
|
const hasNodes = (n: any) => {
|
2016-07-29 15:20:52 -04:00
|
|
|
const children = getDOM().childNodes(n);
|
2015-10-08 18:33:17 -04:00
|
|
|
return children && children.length > 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (n instanceof Array) {
|
2016-06-08 19:38:52 -04:00
|
|
|
return n.map(elementText).join('');
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
if (getDOM().isCommentNode(n)) {
|
2015-10-08 18:33:17 -04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
if (getDOM().isElementNode(n) && getDOM().tagName(n) == 'CONTENT') {
|
|
|
|
return elementText(Array.prototype.slice.apply(getDOM().getDistributedNodes(n)));
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
if (getDOM().hasShadowRoot(n)) {
|
|
|
|
return elementText(getDOM().childNodesAsList(getDOM().getShadowRoot(n)));
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hasNodes(n)) {
|
2016-04-28 20:50:03 -04:00
|
|
|
return elementText(getDOM().childNodesAsList(n));
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
return getDOM().getText(n);
|
2015-10-08 18:33:17 -04:00
|
|
|
}
|