This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathone-app.spec.js
2015 lines (1797 loc) · 75.3 KB
/
one-app.spec.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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2019 American Express Travel Related Services Company, Inc.
*
* 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.
*/
// Headers are under a key with a dangling underscore
/* eslint-disable no-underscore-dangle */
import { promises as fs } from 'fs';
import path from 'path';
import fetch from 'cross-fetch';
import yargs, { argv } from 'yargs';
import parsePrometheusTextFormat from 'parse-prometheus-text-format';
import { setUpTestRunner, tearDownTestRunner, sendSignal } from './helpers/testRunner';
import { waitFor } from './helpers/wait';
import { deployBrokenModule, dropModuleVersion } from './helpers/moduleDeployments';
import {
removeModuleFromModuleMap,
addModuleToModuleMap,
writeModuleMap,
readModuleMap,
retrieveModuleIntegrityDigests,
retrieveGitSha,
testCdnUrl,
} from './helpers/moduleMap';
import { searchForNextLogMatch } from './helpers/logging';
import createFetchOptions from './helpers/fetchOptions';
import getRandomPortNumber from './helpers/getRandomPortNumber';
import {
getCacheKeys,
getCacheEntries,
getCacheMatch,
getServiceWorkerReady,
} from './helpers/browserExecutors';
import transit from '../../src/universal/utils/transit';
yargs.array('remoteOneAppEnvironment');
yargs.array('scanEnvironment');
jest.setTimeout(95000);
describe('Tests that require Docker setup', () => {
describe('one-app startup with bad module module', () => {
let originalModuleMap;
const oneAppLocalPortToUse = getRandomPortNumber();
const oneAppMetricsLocalPortToUse = getRandomPortNumber();
let browser;
const moduleName = 'unhealthy-frank';
const version = '0.0.0';
beforeAll(async () => {
originalModuleMap = readModuleMap();
await addModuleToModuleMap({
moduleName,
version,
});
({ browser } = await setUpTestRunner({ oneAppLocalPortToUse, oneAppMetricsLocalPortToUse }));
});
afterAll(async () => {
await tearDownTestRunner({ browser });
writeModuleMap(originalModuleMap);
});
test('one-app starts up successfully with a bad module', async () => {
const revertErrorMatch = /There was an error loading module (?<moduleName>.*) at (?<url>.*). Ignoring (?<workingModule>.*) until .*/;
const requiredExternalsError = searchForNextLogMatch(revertErrorMatch);
const loggedError = await requiredExternalsError;
const [, problemModule, problemModuleUrl, workingUrl] = revertErrorMatch.exec(loggedError);
const gitSha = await retrieveGitSha();
await expect(requiredExternalsError).resolves.toMatch(revertErrorMatch);
expect(problemModule).toBe(moduleName);
expect(problemModuleUrl).toBe(
`${testCdnUrl}/${gitSha}/${moduleName}/${version}/${moduleName}.node.js`
);
// eslint-disable-next-line no-useless-escape
expect(workingUrl).toBe(moduleName);
});
test('one-app remains healthy with a bad module at start', async () => {
await browser.url('https://one-app:8443/success');
const header = await browser.$('.helloMessage');
const headerText = await header.getText();
expect(headerText).toBe('Hello! One App is successfully rendering its Modules!');
});
});
describe('one-app successfully started', () => {
const defaultFetchOptions = createFetchOptions();
let originalModuleMap;
const oneAppLocalPortToUse = getRandomPortNumber();
const oneAppMetricsLocalPortToUse = getRandomPortNumber();
const appAtTestUrls = {
fetchUrl: `https://localhost:${oneAppLocalPortToUse}`,
fetchMetricsUrl: `http://localhost:${oneAppMetricsLocalPortToUse}/metrics`,
browserUrl: 'https://one-app:8443',
cdnUrl: 'https://sample-cdn.frank',
};
let browser;
beforeAll(async () => {
removeModuleFromModuleMap('late-frank');
removeModuleFromModuleMap('unhealthy-frank');
originalModuleMap = readModuleMap();
({ browser } = await setUpTestRunner({ oneAppLocalPortToUse, oneAppMetricsLocalPortToUse }));
});
afterAll(async () => {
await tearDownTestRunner({ browser });
writeModuleMap(originalModuleMap);
});
test('app rejects CORS POST requests', async () => {
const response = await fetch(`${appAtTestUrls.fetchUrl}/success`, {
...defaultFetchOptions,
method: 'POST',
headers: {
origin: 'test.example.com',
},
});
const rawHeaders = response.headers.raw();
expect(response.status).toBe(200);
expect(rawHeaders).not.toHaveProperty('access-control-allow-origin');
expect(rawHeaders).not.toHaveProperty('access-control-expose-headers');
expect(rawHeaders).not.toHaveProperty('access-control-allow-credentials');
});
describe('metrics', () => {
it('connects', async () => {
expect.assertions(1);
const response = await fetch(appAtTestUrls.fetchMetricsUrl);
expect(response).toHaveProperty('status', 200);
});
it('has all metrics', async () => {
expect.assertions(1);
const response = await fetch(appAtTestUrls.fetchMetricsUrl);
const parsedMetrics = parsePrometheusTextFormat(await response.text());
expect(parsedMetrics.map((metric) => metric.name).sort()).toMatchSnapshot();
});
it('has help information on each metric', async () => {
expect.assertions(1);
const response = await fetch(appAtTestUrls.fetchMetricsUrl);
const parsedMetrics = parsePrometheusTextFormat(await response.text());
const allMetricNames = parsedMetrics.map((metric) => metric.name);
const metricsNamesWithHelpInfo = parsedMetrics
.filter((metric) => metric.help && metric.help.length > 0)
.map((metric) => metric.name);
expect(metricsNamesWithHelpInfo).toEqual(allMetricNames);
});
});
test('app rejects CORS OPTIONS pre-flight requests for POST', async () => {
const response = await fetch(`${appAtTestUrls.fetchUrl}/success`, {
...defaultFetchOptions,
method: 'OPTIONS',
headers: {
origin: 'test.example.com',
},
});
expect(response.status).toBe(200);
// preflight-only headers
const rawHeaders = response.headers.raw();
expect(rawHeaders).not.toHaveProperty('access-control-max-age');
expect(rawHeaders).not.toHaveProperty('access-control-allow-methods');
expect(rawHeaders).not.toHaveProperty('access-control-allow-headers');
// any response headers
expect(rawHeaders).not.toHaveProperty('access-control-allow-origin');
expect(rawHeaders).not.toHaveProperty('access-control-expose-headers');
expect(rawHeaders).not.toHaveProperty('access-control-allow-credentials');
});
describe('root module without corsOrigins set', () => {
beforeAll(async () => {
await addModuleToModuleMap({
moduleName: 'frank-lloyd-root',
version: '0.0.2',
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'frank-lloyd-root',
version: '0.0.2',
}),
});
// wait for change to be picked up
await waitFor(5000);
});
// Success is tested in block:
// "Tests that can run against either local Docker setup or remote One App environments"
test('app rejects CORS POST requests for partials', async () => {
const response = await fetch(
`${appAtTestUrls.fetchUrl}/html-partial/en-US/frank-the-parrot`,
{
...defaultFetchOptions,
method: 'POST',
headers: {
origin: 'test.example.com',
},
body: {
message: 'Hello!',
},
}
);
const rawHeaders = response.headers.raw();
expect(response.status).toBe(200);
expect(rawHeaders).not.toHaveProperty('access-control-allow-origin');
expect(rawHeaders).not.toHaveProperty('access-control-expose-headers');
expect(rawHeaders).not.toHaveProperty('access-control-allow-credentials');
});
afterAll(async () => {
writeModuleMap(originalModuleMap);
// wait for modules to revert
await waitFor(5000);
});
});
describe('one-app server provides reporting routes', () => {
describe('client reported errors', () => {
let reportedErrorSearch;
const errorMessage = 'reported client error';
const clientReportedErrorLog = new RegExp(errorMessage);
beforeAll(() => {
reportedErrorSearch = searchForNextLogMatch(clientReportedErrorLog);
});
test('logs errors when reported to /_/report/errors', async () => {
const resp = await fetch(`${appAtTestUrls.fetchUrl}/_/report/errors`, {
...defaultFetchOptions,
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([{ msg: errorMessage }]),
});
expect(resp.status).toEqual(204);
await expect(reportedErrorSearch).resolves.toMatchSnapshot();
});
});
describe('csp-violations reported to server', () => {
let reportedCspViolationSearch;
// const violation = 'csp violation';
const cspViolationLog = /CSP Violation: {.*document-uri.*bad.example.com/;
beforeAll(() => {
reportedCspViolationSearch = searchForNextLogMatch(cspViolationLog);
});
test('logs violations reported to /_/report/errors', async () => {
const resp = await fetch(`${appAtTestUrls.fetchUrl}/_/report/security/csp-violation`, {
...defaultFetchOptions,
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
'csp-report': {
'document-uri': 'bad.example.com',
},
}),
});
expect(resp.status).toEqual(204);
await expect(reportedCspViolationSearch).resolves.toMatchSnapshot();
});
});
});
describe('holocron', () => {
let sampleModuleVersion;
beforeAll(async () => {
sampleModuleVersion = '0.0.0';
});
test('loads modules on start', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/healthy-frank`);
const headerBody = await browser.$('.helloFrank');
const headerText = await headerBody.getText();
expect(headerText.includes('Im Frank, and healthy')).toBe(true);
});
describe('module removed from module map', () => {
afterAll(() => {
const integrityDigests = retrieveModuleIntegrityDigests({
moduleName: 'healthy-frank',
version: sampleModuleVersion,
});
addModuleToModuleMap({
moduleName: 'healthy-frank',
version: sampleModuleVersion,
integrityDigests,
});
});
test('removes module from one-app', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/healthy-frank`);
const headerBody = await browser.$('.helloFrank');
const headerText = await headerBody.getText();
expect(headerText.includes('Im Frank, and healthy')).toBe(true);
removeModuleFromModuleMap('healthy-frank');
// not ideal but need to wait for app to poll;
await waitFor(5000);
await browser.url(`${appAtTestUrls.browserUrl}/demo/healthy-frank`);
const missingModuleMessageElement = await browser.$('.missingModuleMessage');
const missingModuleNameElement = await missingModuleMessageElement.$(
'.missingModuleName'
);
const missingModuleName = await missingModuleNameElement.getText();
expect(missingModuleName.includes('healthy-frank')).toBe(true);
});
});
describe('new module added to module map', () => {
afterAll(() => removeModuleFromModuleMap('late-frank'));
test('loads new module when module map updated', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/late-frank`);
const missingModuleMessageElement = await browser.$('.missingModuleMessage');
const missingModuleNameElement = await missingModuleMessageElement.$(
'.missingModuleName'
);
const missingModuleName = await missingModuleNameElement.getText();
expect(missingModuleName.includes('late-frank')).toBe(true);
await addModuleToModuleMap({
moduleName: 'late-frank',
version: sampleModuleVersion,
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'late-frank',
version: sampleModuleVersion,
}),
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
await browser.url(`${appAtTestUrls.browserUrl}/demo/late-frank`);
const frankHeader = await browser.$('.lateFrank');
const frankText = await frankHeader.getText();
expect(frankText.includes('Sorry Im late!')).toBe(true);
});
});
describe('root module module config', () => {
test('provideStateConfig sets config', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/success`);
const configPreTag = await browser.$('.value-provided-from-config');
const configText = await configPreTag.getText();
expect(configText).toEqual('https://internet-origin-dev.example.com/some-api/v1');
});
describe('root module provides invalid config', () => {
let failedRootModuleConfigSearch;
const failedRootModuleConfig = /Root module attempted to set the following non-overrideable options for the client but not the server:\\n\s{2}someApiUrl/;
beforeEach(async () => {
const nextVersion = '0.0.1';
failedRootModuleConfigSearch = searchForNextLogMatch(failedRootModuleConfig);
await addModuleToModuleMap({
moduleName: 'frank-lloyd-root',
version: nextVersion,
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'frank-lloyd-root',
version: nextVersion,
}),
});
await waitFor(5000);
});
afterEach(async () => {
writeModuleMap(originalModuleMap);
});
test('writes an error to log when failed module config', async () => {
await expect(failedRootModuleConfigSearch).resolves.toMatch(failedRootModuleConfig);
});
test('with an unhealthy config results in keeping healthy module', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/success`);
const configPreTag = await browser.$('.value-provided-from-config');
const configText = await configPreTag.getText();
expect(configText).toEqual('https://internet-origin-dev.example.com/some-api/v1');
});
});
});
describe('child module config', () => {
test('validateStateConfig validates an acceptable module config', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/picky-frank`);
const versionSelector = await browser.$('.version');
const version = await versionSelector.getText();
expect(version).toEqual('v0.0.0');
});
describe('child module fails to validate the module config', () => {
let failedChildModuleSearch;
const failedChildModuleValidation = /Error: Failed to pass correct url on client/;
beforeEach(async () => {
const nextVersion = '0.0.1';
failedChildModuleSearch = searchForNextLogMatch(failedChildModuleValidation);
await addModuleToModuleMap({
moduleName: 'picky-frank',
version: nextVersion,
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'picky-frank',
version: nextVersion,
}),
});
await waitFor(5000);
});
afterEach(async () => {
writeModuleMap(originalModuleMap);
});
test('writes an error to log when failed child module validation', async () => {
await expect(failedChildModuleSearch).resolves.toMatch(failedChildModuleValidation);
});
test('with a validation failure one app serves healthy module', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/picky-frank`);
const versionSelector = await browser.$('.version');
const version = await versionSelector.getText();
expect(version).toEqual('v0.0.0');
});
});
});
describe('loading broken module', () => {
let brokenModuleDetails;
const blocklistRegex = /bad-frank\.node\.js added to blocklist: bad things will happen/;
let blocklistingOfModuleLogSearch;
beforeAll(async () => {
brokenModuleDetails = {
moduleName: 'bad-frank',
version: sampleModuleVersion,
integrityDigests: {
browser:
'sha256-4XVXHQGFftIRsBvUKIobtVQjouQBaq11PwPHDMzQ2Hk= sha384-FX5cUzgC22jk+RGJ47h07QVt4q/cvv+Ck57CY0A8bwEQDn+w48zYlwMDlh9OxRzq',
node: 'sha256-4XVXHQGFftIRsBvUKIobtVQjouQBaq11PwPHDMzQ2Hk= sha384-FX5cUzgC22jk+RGJ47h07QVt4q/cvv+Ck57CY0A8bwEQDn+w48zYlwMDlh9OxRzq',
legacyBrowser:
'sha256-4XVXHQGFftIRsBvUKIobtVQjouQBaq11PwPHDMzQ2Hk= sha384-FX5cUzgC22jk+RGJ47h07QVt4q/cvv+Ck57CY0A8bwEQDn+w48zYlwMDlh9OxRzq',
},
};
blocklistingOfModuleLogSearch = searchForNextLogMatch(blocklistRegex);
await deployBrokenModule(brokenModuleDetails);
await addModuleToModuleMap(brokenModuleDetails);
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(async () => {
writeModuleMap(originalModuleMap);
await dropModuleVersion(brokenModuleDetails);
});
test('bad-frank added to blocklist', async () => {
await expect(blocklistingOfModuleLogSearch).resolves.toMatch(blocklistRegex);
});
test('does not load broken module', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/bad-frank`);
const missingModuleMessageElement = await browser.$('.missingModuleMessage');
const missingModuleNameElement = await missingModuleMessageElement.$(
'.missingModuleName'
);
const missingModuleName = await missingModuleNameElement.getText();
expect(missingModuleName.includes('bad-frank')).toBe(true);
});
test('one-app remains healthy', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/success`);
const header = await browser.$('.helloMessage');
const headerText = await header.getText();
expect(headerText).toBe('Hello! One App is successfully rendering its Modules!');
});
});
describe('loading module with an integrity mismatch on the server', () => {
const blocklistRegex = /SRI for module at https:\/\/sample-cdn\.frank\/modules\/.+\/sneaky-frank\/0\.0\.0\/sneaky-frank\.node\.js must match SRI in module map/;
let blocklistingOfModuleLogSearch;
let moduleDetails;
beforeAll(async () => {
const version = '0.0.0';
moduleDetails = {
moduleName: 'sneaky-frank',
version,
integrityDigests: {
browser:
'sha256-GmvP4f2Fg21H5bLWdUNqFFuLeGnLbXD7FDrb0CJL6CA= sha384-sewv7JNAfdDA+jcS+nn4auGm5Sad4GaMSxvT3IIlAdsLhUnxCjqWrWHbt4PWBJoo',
legacyBrowser:
'sha256-GmvP4f2Fg21H5bLWdUNqFFuLeGnLbXD7FDrb0CJL6CA= sha384-sewv7JNAfdDA+jcS+nn4auGm5Sad4GaMSxvT3IIlAdsLhUnxCjqWrWHbt4PWBJoo',
node: 'invalid-digest',
},
};
await deployBrokenModule({
moduleName: moduleDetails.moduleName,
version: moduleDetails.version,
});
await addModuleToModuleMap(moduleDetails);
blocklistingOfModuleLogSearch = searchForNextLogMatch(blocklistRegex);
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(async () => {
writeModuleMap(originalModuleMap);
await dropModuleVersion({
moduleName: moduleDetails.moduleName,
version: moduleDetails.version,
});
});
test('sneaky-frank added to blocklist', async () => {
await expect(blocklistingOfModuleLogSearch).resolves.toMatch(blocklistRegex);
});
test('does not load broken module', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/sneaky-frank`);
const missingModuleMessageElement = await browser.$('.missingModuleMessage');
const missingModuleNameElement = await missingModuleMessageElement.$(
'.missingModuleName'
);
const missingModuleName = await missingModuleNameElement.getText();
expect(missingModuleName.includes('sneaky-frank')).toBe(true);
});
test('one-app remains healthy', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/success`);
const header = await browser.$('.helloMessage');
const headerText = await header.getText();
expect(headerText).toBe('Hello! One App is successfully rendering its Modules!');
});
});
describe('loading module with an integrity mismatch on the client', () => {
let moduleDetails;
beforeAll(async () => {
const version = '0.0.0';
const moduleName = 'healthy-frank';
moduleDetails = {
moduleName,
version,
integrityDigests: {
...retrieveModuleIntegrityDigests({ moduleName, version }),
browser: 'sha256-invalid-digest sha384-invalid-digest',
legacyBrowser: 'sha256-invalid-digest sha384-invalid-digest',
},
};
await addModuleToModuleMap(moduleDetails);
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(() => {
writeModuleMap(originalModuleMap);
});
test('does not load unverified module on the browser', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/healthy-frank`);
const consoleLogs = await browser.getLogs('browser');
expect(consoleLogs).toEqual(
expect.arrayContaining([
{
level: 'SEVERE',
message: expect.stringMatching(
/https:\/\/one-app:8443\/demo\/healthy-frank - Failed to find a valid digest in the 'integrity' attribute for resource 'https:\/\/sample-cdn\.frank\/modules\/.+\/healthy-frank\/0\.0\.0\/healthy-frank.browser.js' with computed SHA-256 integrity '.+'\. The resource has been blocked\./
),
source: 'security',
timestamp: expect.any(Number),
},
])
);
});
});
describe('needy frank can make universal requests to an api', () => {
afterAll(async () => {
writeModuleMap(originalModuleMap);
});
describe('with iguazu', () => {
describe('with ssr enabled', () => {
beforeAll(async () => {
const integrityDigests = retrieveModuleIntegrityDigests({
moduleName: 'needy-frank',
version: '0.0.0',
});
await addModuleToModuleMap({
moduleName: 'needy-frank',
version: '0.0.0',
integrityDigests,
});
await waitFor(5000);
});
test('should have SSR preload module state with readPosts', async () => {
await browser.url(
`${appAtTestUrls.browserUrl}/demo/needy-frank?api=https://fast.api.frank/posts`
);
const needyFrankModuleStateTag = await browser.$('.needy-frank-loaded-data');
const needyFrankModuleState = await needyFrankModuleStateTag.getText();
expect(JSON.parse(needyFrankModuleState)).toMatchSnapshot();
});
describe('uses root module provided fetch', () => {
test('should timeout on server if request exceeds one second', async () => {
await browser.url(
`${appAtTestUrls.browserUrl}/demo/needy-frank?api=https://slow.api.frank/posts`
);
const needyFrankModuleStateTag = await browser.$('.needy-frank-loaded-data');
const needyFrankModuleState = await needyFrankModuleStateTag.getText();
expect(JSON.parse(needyFrankModuleState)).toEqual({
procedures: {
pendingCalls: {
readPosts: {},
},
procedureCaches: {
readPosts: {
'8cd6dad8022e63aee356ac38f2f079d979eb40ef': {
message: 'Request to https://***/posts was too slow',
name: 'Error',
},
},
},
},
resources: {},
});
});
});
});
describe('with ssr disabled', () => {
beforeAll(async () => {
const integrityDigests = retrieveModuleIntegrityDigests({
moduleName: 'needy-frank',
version: '0.0.1',
});
await addModuleToModuleMap({
moduleName: 'needy-frank',
version: '0.0.1',
integrityDigests,
});
await waitFor(5000);
});
test('should timeout on client if request exceeds six seconds', async () => {
await browser.url(
`${appAtTestUrls.browserUrl}/demo/needy-frank?api=https://extra-slow.api.frank/posts`
);
await waitFor(7000);
const needyFrankModuleStateTag = await browser.$('.needy-frank-loaded-data');
const needyFrankModuleState = await needyFrankModuleStateTag.getText();
expect(JSON.parse(needyFrankModuleState)).toMatchSnapshot({
procedures: {
procedureCaches: {
readPosts: {
de48373b416b8d2af053d04402c35d194568ffdd: {
stack: expect.stringContaining(
'Error: https://extra-slow.api.frank/posts after 6000ms'
),
},
},
},
},
});
});
});
});
});
describe('`providedExternals` and `requiredExternals` module configuration', () => {
afterAll(() => {
removeModuleFromModuleMap('late-frank');
});
describe('root module `providedExternals` usage', () => {
const providedExternalsModuleValidation = /Module frank-lloyd-root attempted to provide externals/;
const moduleName = 'frank-lloyd-root';
const version = '0.0.2';
let providedExternalsWarning;
beforeAll(async () => {
providedExternalsWarning = searchForNextLogMatch(providedExternalsModuleValidation);
await addModuleToModuleMap({
moduleName,
version,
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(() => {
writeModuleMap(originalModuleMap);
});
test('no warnings written to log if a root module is configured with `providedExternals`', async () => {
await expect(providedExternalsWarning).rejects.toEqual(
new Error(
'Failed to match: /Module frank-lloyd-root attempted to provide externals/ in logs'
)
);
});
test('loads root module correctly with styles from @emotion/core when the root module `providesExternals`', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/success`);
const headerBody = await browser.$('.helloMessage');
const headerText = await headerBody.getText();
const headerColor = await headerBody.getCSSProperty('background-color');
expect(
headerText.includes('Hello! One App is successfully rendering its Modules!')
).toBe(true);
expect(headerColor.value).toEqual('rgba(0,0,255,1)'); // color: blue;
});
});
describe('child module `providedExternals` invalid usage', () => {
const providedExternalsModuleValidation = /Module late-frank attempted to provide externals/;
const moduleName = 'late-frank';
const version = '0.0.1';
let providedExternalsWarning;
beforeAll(async () => {
providedExternalsWarning = searchForNextLogMatch(providedExternalsModuleValidation);
await addModuleToModuleMap({
moduleName,
version,
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(() => {
writeModuleMap(originalModuleMap);
});
test('writes a warning to log if a child module is configured with `providedExternals`', async () => {
await expect(providedExternalsWarning).resolves.toMatch(
providedExternalsModuleValidation
);
});
test('loads child module correctly with styles from @emotion/core regardless of mis-configuration', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/late-frank`);
const headerBody = await browser.$('.lateFrank');
const headerText = await headerBody.getText();
const headerColor = await headerBody.getCSSProperty('color');
expect(headerText.includes('Sorry Im late!')).toBe(true);
expect(headerColor.value).toEqual('rgba(255,192,203,1)'); // color: pink;
});
});
describe('child module `requiredExternals` invalid usage', () => {
const moduleName = 'cultured-frankie';
const version = '0.0.1';
afterEach(() => {
writeModuleMap(originalModuleMap);
});
test('fails to get external `react-intl` for child module as an unsupplied `requiredExternal` - logs failure', async () => {
const requiredExternalsErrorMatch = /Failed to get external react-intl from root module/;
const requiredExternalsError = searchForNextLogMatch(requiredExternalsErrorMatch);
await addModuleToModuleMap({
moduleName,
version,
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
await expect(requiredExternalsError).resolves.toMatch(requiredExternalsErrorMatch);
});
test('fails to get external `react-intl` for child module as an unsupplied `requiredExternal` - Logs reverting message', async () => {
const revertErrorMatch = /There was an error loading module (?<moduleName>.*) at (?<url>.*). Reverting back to (?<workingModule>.*)/;
const requiredExternalsError = searchForNextLogMatch(revertErrorMatch);
await addModuleToModuleMap({
moduleName,
version,
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
const loggedError = await requiredExternalsError;
const [, problemModule, problemModuleUrl, workingUrl] = revertErrorMatch
.exec(loggedError);
const gitSha = await retrieveGitSha();
await expect(requiredExternalsError).resolves.toMatch(revertErrorMatch);
expect(problemModule).toBe('cultured-frankie');
expect(problemModuleUrl).toBe(
`${testCdnUrl}/${gitSha}/${moduleName}/${version}/${moduleName}.node.js`
);
// eslint-disable-next-line no-useless-escape
expect(workingUrl).toBe(
`${testCdnUrl}/${gitSha}/${moduleName}/0.0.0/${moduleName}.node.js"}`
);
});
test('fails to get external `semver` for child module as an unsupplied `requiredExternal` for new module in mooduleMap', async () => {
const revertErrorMatch = /There was an error loading module (?<moduleName>.*) at (?<url>.*). Ignoring (?<ignoredModule>.*) until .*/;
const requiredExternalsError = searchForNextLogMatch(revertErrorMatch);
const modName = 'unhealthy-frank';
const modVersion = '0.0.0';
await addModuleToModuleMap({
moduleName: modName,
version: modVersion,
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
const loggedError = await requiredExternalsError;
const [, problemModule, problemModuleUrl, ignoredModule] = revertErrorMatch
.exec(loggedError);
const gitSha = await retrieveGitSha();
await expect(requiredExternalsError).resolves.toMatch(revertErrorMatch);
expect(problemModule).toBe(modName);
expect(problemModuleUrl).toBe(
`${testCdnUrl}/${gitSha}/${modName}/${modVersion}/${modName}.node.js`
);
expect(ignoredModule).toBe(modName);
});
test('does not modify the original version "0.0.0" of the failing module', async () => {
const response = await fetch(`${appAtTestUrls.fetchUrl}/demo/${moduleName}`, {
...defaultFetchOptions,
});
const htmlData = await response.text();
expect(/<script.*cultured-frankie\/0\.0\.0.*>/.test(htmlData)).toBe(true);
});
});
describe('child module `requiredExternals` valid usage', () => {
const providedExternalsModuleValidation = /Module late-frank attempted to provide externals/;
let providedExternalsWarning;
beforeAll(async () => {
providedExternalsWarning = searchForNextLogMatch(providedExternalsModuleValidation);
await addModuleToModuleMap({
moduleName: 'frank-lloyd-root',
version: '0.0.2',
});
await addModuleToModuleMap({
moduleName: 'late-frank',
version: '0.0.2',
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(async () => {
writeModuleMap(originalModuleMap);
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
test('does not write a warning to log if a child module is configured with `requiredExternals`', async () => {
await expect(providedExternalsWarning).rejects.toEqual(
new Error(
'Failed to match: /Module late-frank attempted to provide externals/ in logs'
)
);
});
test('loads child module correctly with styles from @emotion/core', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/demo/late-frank`);
const headerBody = await browser.$('.lateFrank');
const headerText = await headerBody.getText();
const headerColor = await headerBody.getCSSProperty('color');
expect(headerText.includes('Sorry Im late!')).toBe(true);
expect(headerColor.value).toEqual('rgba(255,192,203,1)'); // color: pink;
});
});
});
});
describe('module requires SafeRequest Restricted Attributes not provided by the root module', () => {
const requestRestrictedAttributesRegex = /Error: Root module must extendSafeRequestRestrictedAttributes with cookies: \[macadamia,homebaked]/;
let requestRestrictedAttributesLogSearch;
beforeAll(async () => {
requestRestrictedAttributesLogSearch = searchForNextLogMatch(
requestRestrictedAttributesRegex
);
await addModuleToModuleMap({
moduleName: 'vitruvius-franklin',
version: '0.0.1',
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'vitruvius-franklin',
version: '0.0.1',
}),
});
// not ideal but need to wait for app to poll;
await waitFor(5000);
});
afterAll(() => {
writeModuleMap(originalModuleMap);
});
it('does not update the module in memory', async () => {
await browser.url(`${appAtTestUrls.browserUrl}/vitruvius`);
const versionSelector = await browser.$('.version');
const version = await versionSelector.getText();
expect(version).toEqual('0.0.0');
});
it('does not load module', async () => {
await expect(requestRestrictedAttributesLogSearch).resolves.toMatch(
requestRestrictedAttributesRegex
);
});
});
test('app calls loadModuleData to run async requests using root module provided fetchClient', async () => {
const response = await fetch(`${appAtTestUrls.fetchUrl}/demo/ssr-frank`, {
...defaultFetchOptions,
});
const htmlData = await response.text();
const scriptContents = htmlData.match(
/<script id="initial-state" nonce=\S+>([^<]+)<\/script>/
)[1];
const initialState = scriptContents.match(/window\.__INITIAL_STATE__ = "([^<]+)";/)[1];
const state = transit.fromJSON(initialState.replace(/\\/g, ''));
expect(state.getIn(['modules', 'ssr-frank', 'data'])).toEqual({
posts: [
{
author: 'typicode',
id: 1,
title: 'json-server',
},
],
secretMessage: 'you are being watched',
loadedOnServer: true,
});
});
describe('module root configureRequestLog', () => {
it('has included userId from cookies in request log', async () => {
const requestLogRegex = /some-user-id-1234/;
const searchForRequerstLog = searchForNextLogMatch(requestLogRegex);
await browser.setCookies({
name: 'userId',
value: 'some-user-id-1234',
});
await browser.url(`${appAtTestUrls.browserUrl}/success`);
await expect(searchForRequerstLog).resolves.toMatch(requestLogRegex);
});
it('log gets updated when Root module gets updated', async () => {
await addModuleToModuleMap({
moduleName: 'frank-lloyd-root',
version: '0.0.2',
integrityDigests: retrieveModuleIntegrityDigests({
moduleName: 'frank-lloyd-root',
version: '0.0.2',
}),
});
const waiting = waitFor(5000);
const requestLogRegex = /abcdefg123456/;
const searchForRequerstLog = searchForNextLogMatch(requestLogRegex);
await browser.setCookies({
name: 'guuid',
value: 'abcdefg123456',
});
await waiting;
await browser.url(`${appAtTestUrls.browserUrl}/success`);
await expect(searchForRequerstLog).resolves.toMatch(requestLogRegex);
});
afterAll(() => {
writeModuleMap(originalModuleMap);
});
});
describe('custom error page', () => {
const loadCustomErrorPageRoot = async () => {