-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathindex.spec.js
More file actions
465 lines (383 loc) · 18.7 KB
/
index.spec.js
File metadata and controls
465 lines (383 loc) · 18.7 KB
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
import { createElement } from 'lwc';
import Basic from 'x/basic';
import ExecutionContext from 'x/executionContext';
import Ignored from 'x/ignored';
import CaseVariants from 'x/caseVariants';
import Spread from 'x/spread';
import Lifecycle from 'x/lifecycle';
import ValueNotFunction from 'x/valueNotFunction';
import Rerender from 'x/rerender';
import RerenderLoop from 'x/rerenderLoop';
import PublicProp from 'x/publicProp';
import ComputedKey from 'x/computedKey';
import ValueEvaluationThrows from 'x/ValueEvaluationThrows';
import { jasmine } from '../../helpers/jasmine.js';
import { spyConsole } from '../../helpers/console.js';
import { catchUnhandledRejectionsAndErrors } from '../../helpers/utils.js';
describe('lwc:on', () => {
it('adds multiple event listeners', () => {
const element = createElement('x-basic', { is: Basic });
const testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
const button = element.shadowRoot.querySelector('button');
button.click();
button.dispatchEvent(new MouseEvent('mouseover'));
expect(testFn).toHaveBeenCalledWith('click handler called');
expect(testFn).toHaveBeenCalledWith('mouseover handler called');
});
it('event listeners added by lwc:on are bound to the owner component', () => {
const element = createElement('x-execution-context', { is: ExecutionContext });
const testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
const button = element.shadowRoot.querySelector('button');
button.click();
expect(testFn).toHaveBeenCalledWith("'this' is the component");
});
describe('ignored properties', () => {
let element;
let button;
let testFn;
function setup(propType) {
element = createElement('x-ignored', { is: Ignored });
testFn = jasmine.createSpy('test function');
element.testFn = testFn;
element.propType = propType;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
}
// In these tests, we are implicitly asserting that no error is thrown if the test passes
it('silently ignores non-enumerable properties', () => {
setup('non-enumerable');
button.click();
expect(testFn).not.toHaveBeenCalled();
});
it('silently ignores inherited properties', () => {
setup('inherited');
button.click();
expect(testFn).not.toHaveBeenCalled();
});
it('silently ignores symbol-keyed properties', () => {
setup('symbol-keyed');
});
});
describe('event type case', () => {
let element;
let button;
let testFn;
function setup(propCase) {
element = createElement('x-case-variants', { is: CaseVariants });
testFn = jasmine.createSpy('test function');
element.testFn = testFn;
element.propCase = propCase;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
}
it('adds event listeners corresponding to lowercase keyed property', () => {
setup('lower');
button.dispatchEvent(new CustomEvent('lowercase'));
expect(testFn).toHaveBeenCalledWith('lowercase handler called');
});
it('adds event listeners corresponding to kebab-case keyed property', () => {
setup('kebab');
button.dispatchEvent(new CustomEvent('kebab-case'));
expect(testFn).toHaveBeenCalledWith('kebab-case handler called');
});
it('adds event listeners corresponding to camelCase keyed property', () => {
setup('camel');
button.dispatchEvent(new CustomEvent('camelCase'));
expect(testFn).toHaveBeenCalledWith('camelCase handler called');
});
it('adds event listeners corresponding to CAPScase keyed property', () => {
setup('caps');
button.dispatchEvent(new CustomEvent('CAPSCASE'));
expect(testFn).toHaveBeenCalledWith('CAPSCASE handler called');
});
it('adds event listeners corresponding to PascalCase keyed property', () => {
setup('pascal');
button.dispatchEvent(new CustomEvent('PascalCase'));
expect(testFn).toHaveBeenCalledWith('PascalCase handler called');
});
it('adds event listeners corresponding to empty-string keyed property', () => {
setup('empty');
button.dispatchEvent(new CustomEvent(''));
expect(testFn).toHaveBeenCalledWith('empty string handler called');
});
});
it('event listeners are added independently from lwc:on and lwc:spread', () => {
const element = createElement('x-spread', { is: Spread });
const testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
const button = element.shadowRoot.querySelector('button');
button.click();
expect(testFn).toHaveBeenCalledWith('lwc:spread handler called');
expect(testFn).toHaveBeenCalledWith('lwc:on handler called');
});
it("event listeners are added before child's connectedCallback", () => {
const element = createElement('x-lifecycle', { is: Lifecycle });
const testFn = jasmine.createSpy('foo handler');
element.testFn = testFn;
document.body.appendChild(element);
expect(testFn).toHaveBeenCalledWith(
'handled events dispatched from child connectedCallback'
);
});
describe('object passed to lwc:on has property whose values is not a function', () => {
let element;
let button;
let caughtError;
catchUnhandledRejectionsAndErrors((error) => {
caughtError = error;
});
afterEach(() => {
caughtError = undefined;
});
function setup(handlerType) {
element = createElement('x-value-not-function', { is: ValueNotFunction });
element.handlerType = handlerType;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
}
function assertError() {
if (process.env.NODE_ENV !== 'production') {
expect(caughtError.message).toContain(
"Assert Violation: Invalid event handler for event 'click' on"
);
} else {
expect(caughtError.error instanceof TypeError).toBe(true);
}
}
it('null passed as handler', () => {
setup('null');
button.click();
assertError();
});
describe('undefined passed as handler', () => {
it('directly sets undefined', () => {
setup('undefined');
button.click();
assertError();
});
it('value of an accessor property without getter', () => {
setup('setter without getter');
button.click();
assertError();
});
});
it('string passed as handler', () => {
setup('string');
button.click();
assertError();
});
});
describe('re-render behavior', () => {
let element;
let button;
let testFn;
describe('without for:each loop', () => {
beforeEach(() => {
element = createElement('x-rerender', { is: Rerender });
testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
});
describe('with new object', () => {
it('Event listeners are added when lwc:on is provided a new object with additional properties', async () => {
element.listenersName = 'click and mouseover';
await element.triggerReRender();
button.click();
button.dispatchEvent(new MouseEvent('mouseover'));
expect(testFn).toHaveBeenCalledWith('click handler called');
expect(testFn).toHaveBeenCalledWith('mouseover handler called');
});
it('Event listeners are removed when lwc:on is provided a new object with reduced properties', async () => {
element.listenersName = 'empty';
await element.triggerReRender();
button.click();
expect(testFn).not.toHaveBeenCalledWith('click handler called');
});
it('Event listeners are modified when lwc:on is provided a new object with modified properties', async () => {
element.listenersName = 'modified click';
await element.triggerReRender();
button.click();
expect(testFn).not.toHaveBeenCalledWith('click handler called');
expect(testFn).toHaveBeenCalledWith('modified click handler called');
});
});
describe('with same object modified', () => {
let consoleSpy;
beforeEach(() => {
consoleSpy = spyConsole();
});
afterEach(() => {
consoleSpy.reset();
});
it('throws when a new property is added to object passed to lwc:on', async () => {
element.addMouseoverHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'mouseover' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
it('throws when a property is modified in object passed to lwc:on', async () => {
element.modifyClickHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'click' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
it('throws when a property is deleted from object passed to lwc:on', async () => {
element.deleteClickHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'click' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
});
});
describe('with for:each loop and local variable passed as argument to lwc:on', () => {
beforeEach(() => {
element = createElement('x-rerender-loop', { is: RerenderLoop });
testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
});
describe('with new object', () => {
it('Event listeners are added when lwc:on is provided a new object with additional properties', async () => {
element.listenersName = 'click and mouseover';
await element.triggerReRender();
button.click();
button.dispatchEvent(new MouseEvent('mouseover'));
expect(testFn).toHaveBeenCalledWith('click handler called');
expect(testFn).toHaveBeenCalledWith('mouseover handler called');
});
it('Event listeners are removed when lwc:on is provided a new object with reduced properties', async () => {
element.listenersName = 'empty';
await element.triggerReRender();
button.click();
expect(testFn).not.toHaveBeenCalledWith('click handler called');
});
it('Event listeners are modified when lwc:on is provided a new object with modified properties', async () => {
element.listenersName = 'modified click';
await element.triggerReRender();
button.click();
expect(testFn).not.toHaveBeenCalledWith('click handler called');
expect(testFn).toHaveBeenCalledWith('modified click handler called');
});
});
describe('with same object modified', () => {
let consoleSpy;
beforeEach(() => {
consoleSpy = spyConsole();
});
afterEach(() => {
consoleSpy.reset();
});
it('throws when a new property is added to object passed to lwc:on', async () => {
element.addMouseoverHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'mouseover' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
it('throws when a property is modified in object passed to lwc:on', async () => {
element.modifyClickHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'click' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
it('throws when a property is deleted from object passed to lwc:on', async () => {
element.deleteClickHandler();
await element.triggerReRender();
if (process.env.NODE_ENV !== 'production') {
expect(consoleSpy.calls.error.length).toEqual(1);
expect(consoleSpy.calls.error[0][0].message).toContain(
"Detected mutation of property 'click' in the object passed to lwc:on for <button>. Reusing the same object with modified properties is prohibited. Please pass a new object instead."
);
} else {
expect(consoleSpy.calls.error.length).toEqual(0);
}
});
});
});
});
it('works when the object is passed as public property to component', () => {
// In this test, we are implicitly asserting that no error is thrown if the test passes
const element = createElement('x-public-prop', { is: PublicProp });
const testFn = jasmine.createSpy('test function');
element.eventHandlers = {
click: testFn,
};
document.body.appendChild(element);
const button = element.shadowRoot.querySelector('button');
button.click();
expect(testFn).toHaveBeenCalled();
});
it('works properly with objects whose keys are computed', () => {
const element = createElement('x-computed-key', { is: ComputedKey });
const testFn = jasmine.createSpy('test function');
element.testFn = testFn;
document.body.appendChild(element);
const button = element.shadowRoot.querySelector('button');
button.click();
expect(testFn).toHaveBeenCalled();
});
describe('object passed to lwc:on has property whose value evaluation throws', () => {
let element;
let button;
let caughtError;
catchUnhandledRejectionsAndErrors((error) => {
caughtError = error;
});
afterEach(() => {
caughtError = undefined;
});
function setup(handlerType) {
element = createElement('x-value-evaluation-throws', { is: ValueEvaluationThrows });
element.handlerType = handlerType;
document.body.appendChild(element);
button = element.shadowRoot.querySelector('button');
}
it('getter that throws passed as handler', () => {
setup('getter that throws');
expect(caughtError.message).toContain('Error: some error');
expect(button).toBeNull();
});
it('LightningElement instance is passed as argument to lwc:on', () => {
setup('LightningElement instance');
expect(caughtError.error instanceof TypeError).toBe(true);
expect(caughtError.message).toContain('TypeError: Illegal constructor');
expect(button).toBeNull();
});
});
});