2019-01-09 13:49:16 -08: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
// The functions in this file verify that the assumptions we are making
|
|
|
|
// about state in an instruction are correct before implementing any logic.
|
|
|
|
// They are meant only to be called in dev mode as sanity checks.
|
|
|
|
|
2019-06-07 20:46:11 -07:00
|
|
|
import {stringify} from './stringify';
|
|
|
|
|
2019-01-09 13:49:16 -08:00
|
|
|
export function assertNumber(actual: any, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(typeof actual === 'number')) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, typeof actual, 'number', '===');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertString(actual: any, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(typeof actual === 'string')) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual === null ? 'null' : typeof actual, 'string', '===');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertEqual<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual == expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '==');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertNotEqual<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual != expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '!=');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertSame<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual === expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '===');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 14:29:45 +01:00
|
|
|
export function assertNotSame<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual !== expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '!==');
|
2019-03-22 14:29:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 13:49:16 -08:00
|
|
|
export function assertLessThan<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual < expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '<');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-11 12:43:32 -07:00
|
|
|
export function assertLessThanOrEqual<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual <= expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '<=');
|
2019-10-11 12:43:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 13:49:16 -08:00
|
|
|
export function assertGreaterThan<T>(actual: T, expected: T, msg: string) {
|
2020-01-26 11:01:41 -08:00
|
|
|
if (!(actual > expected)) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, expected, '>');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-26 11:01:41 -08:00
|
|
|
export function assertGreaterThanOrEqual<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (!(actual >= expected)) {
|
|
|
|
throwError(msg, actual, expected, '>=');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 13:49:16 -08:00
|
|
|
export function assertNotDefined<T>(actual: T, msg: string) {
|
|
|
|
if (actual != null) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, null, '==');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertDefined<T>(actual: T, msg: string) {
|
|
|
|
if (actual == null) {
|
2019-12-17 11:39:55 -08:00
|
|
|
throwError(msg, actual, null, '!=');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 11:39:55 -08:00
|
|
|
export function throwError(msg: string): never;
|
|
|
|
export function throwError(msg: string, actual: any, expected: any, comparison: string): never;
|
|
|
|
export function throwError(msg: string, actual?: any, expected?: any, comparison?: string): never {
|
2019-01-09 13:49:16 -08:00
|
|
|
// tslint:disable-next-line
|
|
|
|
debugger; // Left intentionally for better debugger experience.
|
2019-12-17 11:39:55 -08:00
|
|
|
throw new Error(
|
|
|
|
`ASSERTION ERROR: ${msg}` +
|
|
|
|
(comparison == null ? '' : ` [Expected=> ${expected} ${comparison} ${actual} <=Actual]`));
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function assertDomNode(node: any) {
|
2019-02-13 13:11:39 -08:00
|
|
|
// If we're in a worker, `Node` will not be defined.
|
2019-01-28 14:45:31 -08:00
|
|
|
assertEqual(
|
2019-02-13 13:11:39 -08:00
|
|
|
(typeof Node !== 'undefined' && node instanceof Node) ||
|
2019-06-14 07:55:17 +02:00
|
|
|
(typeof node === 'object' && node != null &&
|
|
|
|
node.constructor.name === 'WebWorkerRenderNode'),
|
2019-06-07 20:46:11 -07:00
|
|
|
true, `The provided value must be an instance of a DOM Node but got ${stringify(node)}`);
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function assertDataInRange(arr: any[], index: number) {
|
2019-06-07 15:28:33 +02:00
|
|
|
const maxLen = arr ? arr.length : 0;
|
|
|
|
assertLessThan(index, maxLen, `Index expected to be less than ${maxLen} but got ${index}`);
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|