forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceWorkerManager.test.js
577 lines (470 loc) · 19.1 KB
/
ServiceWorkerManager.test.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
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// @flow
import React from 'react';
import { Provider } from 'react-redux';
import * as WorkboxModule from 'workbox-window';
import {
render,
screen,
act,
} from 'firefox-profiler/test/fixtures/testing-library';
import { ServiceWorkerManager } from '../../components/app/ServiceWorkerManager';
import { stateFromLocation } from '../../app-logic/url-handling';
import { updateUrlState } from '../../actions/app';
import {
viewProfile,
startSymbolicating,
doneSymbolicating,
} from '../../actions/receive-profile';
import { fatalError } from '../../actions/errors';
import { ensureExists } from '../../utils/flow';
import { blankStore } from '../fixtures/stores';
import { getProfileFromTextSamples } from '../fixtures/profiles/processed-profile';
import { fireFullClick } from '../fixtures/utils';
function _getSimpleProfile() {
return getProfileFromTextSamples('A').profile;
}
describe('app/ServiceWorkerManager', () => {
// Opt out of Flow checking for this variable because we're doing
// unconventional things with it.
let nativeLocation: any;
beforeEach(() => {
// Because of how window.location is implemented in browsers and jsdom, we
// can't easily spy on `window.location.reload`. That's why we replace the
// full property 'location' instead.
nativeLocation = Object.getOwnPropertyDescriptor(window, 'location');
// It seems node v8 doesn't let us change the value unless we delete it before.
delete window.location;
// $FlowExpectError because the value we pass isn't a proper Location object.
Object.defineProperty(window, 'location', {
value: { reload: jest.fn() },
writable: true,
configurable: true,
});
// We don't need a fullfledged service worker object because we're mocking
// the workbox library. But we need _something_ so that the app will try to
// add a service worker in the first place.
(navigator: any).serviceWorker = {};
});
afterEach(() => {
process.env.NODE_ENV = 'development';
Object.defineProperty(window, 'location', nativeLocation);
nativeLocation = null;
delete navigator.serviceWorker;
});
function setup() {
// Comment out this spy when you want to debug this test file.
jest.spyOn(console, 'log').mockImplementation(() => {});
// Due to the following jest issues, we can't put this implementation in a
// jest.mock() call and also spying on the Workbox constructor:
// https://github.com/facebook/jest/issues/7573
// https://github.com/facebook/jest/issues/10419
// But we need the constructor spy to access the instance.
jest.spyOn(WorkboxModule, 'Workbox').mockImplementation(() => {
// Constructor
// We reimplement the event system so that we can dispatchEvent in tests
const listenersMap = new Map();
return {
register: jest.fn(),
messageSkipWaiting: jest.fn(),
addEventListener: jest.fn((eventName, callback) => {
const listeners = listenersMap.get(eventName) ?? new Set();
listeners.add(callback);
listenersMap.set(eventName, listeners);
}),
dispatchEvent: (eventName) => {
const listeners = listenersMap.get(eventName) ?? new Set();
for (const listener of listeners) {
listener();
}
},
};
});
function navigateToStoreLoadingPage() {
const newUrlState = stateFromLocation({
pathname: '/public/ThisIsAFakeHash/calltree',
search: '',
hash: '',
});
act(() => {
store.dispatch(updateUrlState(newUrlState));
});
}
function navigateToFromBrowserProfileLoadingPage() {
const newUrlState = stateFromLocation({
pathname: '/from-browser/',
search: '',
hash: '',
});
act(() => {
store.dispatch(updateUrlState(newUrlState));
});
}
function navigateToFileLoadingPage() {
const newUrlState = stateFromLocation({
pathname: '/from-file/',
search: '',
hash: '',
});
act(() => {
store.dispatch(updateUrlState(newUrlState));
});
}
function navigateToFromUrlLoadingPage(url: string) {
const newUrlState = stateFromLocation({
pathname: `/from-url/${encodeURIComponent(url)}/`,
search: '',
hash: '',
});
act(() => {
store.dispatch(updateUrlState(newUrlState));
});
}
function getWorkboxInstance() {
// WorkboxModule.Workbox is a mock but Flow doesn't know about that.
const instance = (WorkboxModule.Workbox: any).mock.results[0].value;
return instance;
}
const store = blankStore();
const renderResult = render(
<Provider store={store}>
<ServiceWorkerManager />
</Provider>
);
return {
...renderResult,
getReloadButton: () => screen.getByText(/reload/i),
getCloseButton: () => screen.getByLabelText(/hide/i),
navigateToStoreLoadingPage,
navigateToFromBrowserProfileLoadingPage,
navigateToFileLoadingPage,
navigateToFromUrlLoadingPage,
dispatch: store.dispatch,
getWorkboxInstance,
};
}
it('does not register a service worker in the development environment', () => {
setup();
expect(WorkboxModule.Workbox).not.toHaveBeenCalled();
});
describe('in the home, with the `none` datasource', () => {
it('shows a notice when the SW is updated, and the user can close it', () => {
process.env.NODE_ENV = 'production';
const { container, getCloseButton, getReloadButton, getWorkboxInstance } =
setup();
expect(WorkboxModule.Workbox).toHaveBeenCalledWith('/sw.js', {
updateViaCache: 'none',
});
const instance = getWorkboxInstance();
expect(instance.register).toHaveBeenCalled();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(getReloadButton()).toHaveTextContent('Apply and reload');
expect(container.firstChild).toMatchSnapshot();
// Some other tab applied the update before we had the chance.
instance.dispatchEvent('controlling');
expect(getReloadButton()).toHaveTextContent('Reload the application');
expect(container.firstChild).toMatchSnapshot();
// Let's hide the notice.
fireFullClick(getCloseButton());
expect(container).toBeEmptyDOMElement();
// But getting a new update should display the notice again.
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(container.firstChild).toMatchSnapshot();
// Until now, we didn't try to update from this tab.
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
// But let's do it now.
const reloadButton = getReloadButton();
fireFullClick(reloadButton);
expect(instance.messageSkipWaiting).toHaveBeenCalled();
expect(reloadButton).toHaveTextContent('Applying…');
// And we should now reload automatically when the SW is fully updated.
instance.dispatchEvent('controlling');
expect(window.location.reload).toHaveBeenCalledTimes(1);
});
});
describe('with the `public` datasource', () => {
it('shows a notice when the SW is updated', async () => {
process.env.NODE_ENV = 'production';
const {
dispatch,
getReloadButton,
getWorkboxInstance,
navigateToStoreLoadingPage,
} = setup();
navigateToStoreLoadingPage();
await act(() => dispatch(viewProfile(_getSimpleProfile())));
expect(WorkboxModule.Workbox).toHaveBeenCalledWith('/sw.js', {
updateViaCache: 'none',
});
const instance = getWorkboxInstance();
expect(instance.register).toHaveBeenCalled();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(getReloadButton()).toHaveTextContent('Apply and reload');
expect(document.body).toMatchSnapshot();
// Until now, we didn't try to update from this tab.
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
// But let's do it now.
const reloadButton = getReloadButton();
fireFullClick(reloadButton);
expect(instance.messageSkipWaiting).toHaveBeenCalled();
expect(reloadButton).toHaveTextContent('Applying…');
// And we should now reload automatically when the SW is fully updated.
instance.dispatchEvent('controlling');
expect(window.location.reload).toHaveBeenCalledTimes(1);
});
it(`doesn't show a notice until a profile is fully loaded`, async () => {
process.env.NODE_ENV = 'production';
const {
navigateToStoreLoadingPage,
container,
dispatch,
getWorkboxInstance,
} = setup();
navigateToStoreLoadingPage();
const instance = getWorkboxInstance();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
await act(() => dispatch(viewProfile(_getSimpleProfile())));
expect(container).not.toBeEmptyDOMElement();
});
it(`doesn't show a notice until we're done symbolicating`, async () => {
process.env.NODE_ENV = 'production';
const {
navigateToStoreLoadingPage,
dispatch,
container,
getWorkboxInstance,
} = setup();
navigateToStoreLoadingPage();
await act(() => dispatch(viewProfile(_getSimpleProfile())));
act(() => {
dispatch(startSymbolicating());
});
const instance = getWorkboxInstance();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
act(() => {
dispatch(doneSymbolicating());
});
expect(container).not.toBeEmptyDOMElement();
});
it('shows a warning notice if the SW was updated before we were ready', async () => {
process.env.NODE_ENV = 'production';
const {
navigateToStoreLoadingPage,
queryByText,
getReloadButton,
dispatch,
container,
getWorkboxInstance,
} = setup();
navigateToStoreLoadingPage();
await act(() => dispatch(viewProfile(_getSimpleProfile())));
act(() => {
dispatch(startSymbolicating());
});
const instance = getWorkboxInstance();
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
// Some other tabs updated the SW.
instance.dispatchEvent('controlling');
expect(
ensureExists(container.querySelector('.photon-message-bar')).className
).toMatch(/\bphoton-message-bar-warning\b/);
expect(container.firstChild).toMatchSnapshot();
// There's a reload button for the `public` datasource only once we're ready.
expect(queryByText(/reload/i)).not.toBeInTheDocument();
act(() => {
dispatch(doneSymbolicating());
});
expect(getReloadButton()).toBeInTheDocument();
});
});
describe('with the `from-browser` datasource', () => {
it(`doesn't show a notice if updated after we were fully loaded`, async () => {
process.env.NODE_ENV = 'production';
const {
navigateToFromBrowserProfileLoadingPage,
container,
dispatch,
getWorkboxInstance,
} = setup();
navigateToFromBrowserProfileLoadingPage();
await act(() => dispatch(viewProfile(_getSimpleProfile())));
const instance = getWorkboxInstance();
// We don't display anything if there's an update ready.
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
// And we still don't if it was updated elsewhere.
instance.dispatchEvent('controlling');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
});
it('shows a warning notice if updated before we were ready', async () => {
process.env.NODE_ENV = 'production';
const {
navigateToFromBrowserProfileLoadingPage,
container,
dispatch,
queryByText,
getWorkboxInstance,
} = setup();
navigateToFromBrowserProfileLoadingPage();
const instance = getWorkboxInstance();
// We don't display anything if there's an update ready.
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(container).toBeEmptyDOMElement();
// But we do if it's updated from another tab.
instance.dispatchEvent('controlling');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(
ensureExists(container.querySelector('.photon-message-bar')).className
).toMatch(/\bphoton-message-bar-warning\b/);
// There's no reload button for the `from-browser` datasource.
expect(queryByText(/reload/i)).not.toBeInTheDocument();
expect(container.firstChild).toMatchSnapshot();
// The notice stays if we're getting ready after that.
await act(() => dispatch(viewProfile(_getSimpleProfile())));
expect(container).not.toBeEmptyDOMElement();
});
});
describe('with the `from-url` datasource', () => {
it('shows a notice when the SW is updated', async () => {
process.env.NODE_ENV = 'production';
const {
dispatch,
getReloadButton,
getWorkboxInstance,
navigateToFromUrlLoadingPage,
} = setup();
navigateToFromUrlLoadingPage(
'https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task…DbtMVxw/runs/0/artifacts/public/test_info/profile_amazon.zip'
);
await act(() => dispatch(viewProfile(_getSimpleProfile())));
expect(WorkboxModule.Workbox).toHaveBeenCalledWith('/sw.js', {
updateViaCache: 'none',
});
const instance = getWorkboxInstance();
expect(instance.register).toHaveBeenCalled();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(getReloadButton()).toHaveTextContent('Apply and reload');
expect(document.body).toMatchSnapshot();
// Until now, we didn't try to update from this tab.
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
// But let's do it now.
const reloadButton = getReloadButton();
fireFullClick(reloadButton);
expect(instance.messageSkipWaiting).toHaveBeenCalled();
expect(reloadButton).toHaveTextContent('Applying…');
// And we should now reload automatically when the SW is fully updated.
instance.dispatchEvent('controlling');
expect(window.location.reload).toHaveBeenCalledTimes(1);
});
it(`doesn't show a notice when the profile url is on localhost`, async () => {
process.env.NODE_ENV = 'production';
const { dispatch, getWorkboxInstance, navigateToFromUrlLoadingPage } =
setup();
navigateToFromUrlLoadingPage('http://localhost:5656/profile_amazon.zip');
await act(() => dispatch(viewProfile(_getSimpleProfile())));
expect(WorkboxModule.Workbox).toHaveBeenCalledWith('/sw.js', {
updateViaCache: 'none',
});
const instance = getWorkboxInstance();
expect(instance.register).toHaveBeenCalled();
// There's a new update!
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
// There's no reload button.
expect(screen.queryByText(/reload/i)).not.toBeInTheDocument();
});
});
describe('automatic reloading', () => {
it('reloads the application automatically if there is an error and there is a pending version', () => {
process.env.NODE_ENV = 'production';
const { dispatch, getWorkboxInstance } = setup();
const instance = getWorkboxInstance();
act(() => {
dispatch(fatalError(new Error('Error while loading profile')));
});
expect(window.location.reload).not.toHaveBeenCalled();
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
// Dispatch the events that an update is ready.
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).toHaveBeenCalled();
expect(window.location.reload).toHaveBeenCalled();
});
it('reloads the application automatically if there is an error and there is a ready version happening then', () => {
process.env.NODE_ENV = 'production';
const { dispatch, getWorkboxInstance } = setup();
const instance = getWorkboxInstance();
act(() => {
dispatch(fatalError(new Error('Error while loading profile')));
});
expect(window.location.reload).not.toHaveBeenCalled();
// Dispatch the event that an update has been activated in another tab.
instance.dispatchEvent('controlling');
expect(window.location.reload).toHaveBeenCalled();
});
it('reloads the application automatically if there is an error and a new version has been notified before', () => {
process.env.NODE_ENV = 'production';
const { dispatch, getWorkboxInstance } = setup();
const instance = getWorkboxInstance();
instance.dispatchEvent('controlling');
expect(window.location.reload).not.toHaveBeenCalled();
act(() => {
dispatch(fatalError(new Error('Error while loading profile')));
});
expect(window.location.reload).toHaveBeenCalled();
});
it('does not reload if the dataSource is from-file', () => {
process.env.NODE_ENV = 'production';
const { navigateToFileLoadingPage, dispatch, getWorkboxInstance } =
setup();
navigateToFileLoadingPage();
const instance = getWorkboxInstance();
act(() => {
dispatch(fatalError(new Error('Error while loading profile')));
});
expect(window.location.reload).not.toHaveBeenCalled();
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
instance.dispatchEvent('installing');
instance.dispatchEvent('installed');
instance.dispatchEvent('waiting');
expect(instance.messageSkipWaiting).not.toHaveBeenCalled();
expect(window.location.reload).not.toHaveBeenCalled();
});
});
});