-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
assert.js
193 lines (180 loc) · 5.07 KB
/
assert.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
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
/**
* Copyright 2021 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
USER_ERROR_SENTINEL,
elementStringOrPassThru,
} from './error-message-helpers';
/** @fileoverview Dependency-free assertion helpers for use in Preact. */
/**
* User error class for use in Preact. Use of sentinel string instead of a
* boolean to check user errors because errors could be rethrown by some native
* code as a new error, and only a message would survive. Mirrors errors
* produced by `user().error()` in src/log.js.
* @final
* @public
*/
export class UserError extends Error {
/**
* Builds the error, adding the user sentinel if not present.
* @param {string} message
*/
constructor(message) {
if (!message) {
message = USER_ERROR_SENTINEL;
} else if (message.indexOf(USER_ERROR_SENTINEL) == -1) {
message += USER_ERROR_SENTINEL;
}
super(message);
}
}
/**
* Throws a provided error if the second argument isn't trueish.
*
* Supports argument substitution into the message via %s placeholders.
*
* Throws an error object that has two extra properties:
* - associatedElement: This is the first element provided in the var args.
* It can be used for improved display of error messages.
* - messageArray: The elements of the substituted message as non-stringified
* elements in an array. When e.g. passed to console.error this yields
* native displays of things like HTML elements.
* @param {Object} errorCls
* @param {T} shouldBeTruthy
* @param {string} opt_message
* @param {...*} var_args Arguments substituted into %s in the message
* @return {T}
* @throws {Error} when shouldBeTruthy is not truthy.
*/
function assertion(errorCls, shouldBeTruthy, opt_message, var_args) {
if (shouldBeTruthy) {
return shouldBeTruthy;
}
// Skip the first 3 arguments to isolate format params
const messageArgs = Array.prototype.slice.call(arguments, 3);
const messageArray = [];
let firstElement;
// Substitute provided values into format string in message
const message = (opt_message || 'Assertion failed').replace(/%s/g, () => {
const subValue = messageArgs.shift();
if (subValue != '') {
messageArray.push(subValue);
}
// If an element is provided, add it to the error object
if (!firstElement && subValue?.nodeType == 1) {
firstElement = subValue;
}
return elementStringOrPassThru(subValue);
});
const error = new errorCls(message);
error.messageArray = messageArray;
if (firstElement) {
error.associatedElement = firstElement;
firstElement.classList.add('i-amphtml-error');
}
throw error;
}
/**
* Throws a user error if the first argument isn't trueish. Mirrors userAssert
* in src/log.js.
* @param {T} shouldBeTruthy
* @param {string} opt_message
* @param {*=} opt_1 Optional argument (var arg as individual params for better
* @param {*=} opt_2 Optional argument inlining)
* @param {*=} opt_3 Optional argument
* @param {*=} opt_4 Optional argument
* @param {*=} opt_5 Optional argument
* @param {*=} opt_6 Optional argument
* @param {*=} opt_7 Optional argument
* @param {*=} opt_8 Optional argument
* @param {*=} opt_9 Optional argument
* @return {T}
* @throws {UserError} when shouldBeTruthy is not truthy.
* @closurePrimitive {asserts.truthy}
*/
export function pureUserAssert(
shouldBeTruthy,
opt_message,
opt_1,
opt_2,
opt_3,
opt_4,
opt_5,
opt_6,
opt_7,
opt_8,
opt_9
) {
return assertion(
UserError,
shouldBeTruthy,
opt_message,
opt_1,
opt_2,
opt_3,
opt_4,
opt_5,
opt_6,
opt_7,
opt_8,
opt_9
);
}
/**
* Throws an error if the first argument isn't trueish. Mirrors devAssert in
* src/log.js.
* @param {T} shouldBeTruthy
* @param {string} opt_message
* @param {*=} opt_1 Optional argument (var arg as individual params for better
* @param {*=} opt_2 Optional argument inlining)
* @param {*=} opt_3 Optional argument
* @param {*=} opt_4 Optional argument
* @param {*=} opt_5 Optional argument
* @param {*=} opt_6 Optional argument
* @param {*=} opt_7 Optional argument
* @param {*=} opt_8 Optional argument
* @param {*=} opt_9 Optional argument
* @return {T}
* @throws {Error} when shouldBeTruthy is not truthy.
* @closurePrimitive {asserts.truthy}
*/
export function pureDevAssert(
shouldBeTruthy,
opt_message,
opt_1,
opt_2,
opt_3,
opt_4,
opt_5,
opt_6,
opt_7,
opt_8,
opt_9
) {
return assertion(
Error,
shouldBeTruthy,
opt_message,
opt_1,
opt_2,
opt_3,
opt_4,
opt_5,
opt_6,
opt_7,
opt_8,
opt_9
);
}