-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGS1DigitalLinkResolverTestSuite.js
1053 lines (943 loc) · 43.8 KB
/
GS1DigitalLinkResolverTestSuite.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
const outputElement = 'gs1ResolverTests' // Set this to the id of the element in the HTML document where you want the output to go
// We'll run a series of largely asynchronous discrete tests, each of which is
// defined within a JSON object as follows. These objects are sent to the 'recordResult'
// function when first defined and then again after the test has been completed. This
// is what creates the effect of red squares appearing and then, all being well, turning
// green as the test is passed.
const resultProps = {
"id": "", //An id for the test
"test": "", // conformance statement from spec
"status": "fail", // (pass|fail|warn), default is fail
"msg": "", // Displayed to the end user
"url": "", // The URL we're going to fetch
"headers": {} // Ready for any headers we want to set
}
const linkProps = { // We'll need to test lots of links (from the linkset) so it's good to have all their properties in an object
"href": "",
"rel": "",
"title": "",
"hreflang": "",
"type": ""
}
// Where possible, we'll use JavaScript's Fetch function but this is insufficient for some of
// the tests we need to run. In those cases, we'll need to use a PHP script that executes the
// request and sends the response back as a JSON object.
// const testUri = 'http://localhost:8000/test-suites/resolver/1.0.0/tester.php';
const testUri = 'https://ref.gs1.org/test-suites/resolver/1.0.0/tester.php';
const resolverDescriptionFileSchema = 'https://ref.gs1.org/standards/resolver/description-file-schema';
// const RabinRegEx = /^(([^:\/?#]+):)?(\/\/((([^\/?#]*)@)?([^\/?#:]*)(:([^\/?#]*))?))?([^?#]*)(\?([^#]*))?(#(.*))?/;
const RabinRegEx = /^((https?):)(\/\/((([^\/?#]*)@)?([^\/?#:]*)(:([^\/?#]*))?))?([^?#]*)(\?([^#]*))?(#(.*))?/i; // As above but specifically for HTTP(s) URIs
// (see https://www.w3.org/TR/powder-grouping/#rabinsRegEx for the origin of this regex by Jo Rabin)
// gives [2] scheme, [4] domain,[9] port, [10] path, [12] query, [14] fragment
// This is 'RE1' from the DL 1.2 spec but with added case insensitive flag
const plausibleDlURI = /^https?:(\/\/((([^\/?#]*)@)?([^\/?#:]*)(:([^\/?#]*))?))?([^?#]*)(((\/(01|gtin|8006|itip|8013|gmn|8010|cpid|414|gln|417|party|8017|gsrnp|8018|gsrn|255|gcn|00|sscc|253|gdti|401|ginc|402|gsin|8003|grai|8004|giai)\/)(\d{4}[^\/]+)(\/[^/]+\/[^/]+)?[/]?(\?([^?\n]*))?(#([^\n]*))?))/i;
// And this is 'RE2' also with added case insensitive flag ('RE3' that attempts to look for a compressed DL URI is not used in the test suite).
const plausibleDlURINoAlphas = /^https?:(\/\/((([^\/?#]*)@)?([^\/?#:]*)(:([^\/?#]*))?))?([^?#]*)(((\/(01|8006|8013|8010|414|417|8017|8018|255|00|253|401|402|8003|8004)\/)(\d{4}[^\/]+)(\/[^/]+\/[^/]+)?[/]?(\?([^?\n]*))?(#([^\n]*))?))/i;
// We're going to be checking that link types found are in the ratified list
const linkTypeListSource = 'https://ref.gs1.org/voc/data/linktypes';
// Global variables
let testList = [];
let resultsArray = [];
let gs1dlt = new GS1DigitalLinkToolkit(); // We'll make a lot of use of the GS1 Digital Link toolkit
// ***************************************************************************
// This is the main function that takes a Digital Link URI as input and creates the output.
// ***************************************************************************
const testDL = async (dl) =>
{
clearGrid();
// We start with some basic tests by simply inspecting the incoming URI
// No external calls are made at this stage.
let domain; // We'll need to make tests on the domain name in the DL URI
// First of all - is the incoming string a URL at all?
let isURL = Object.create(resultProps);
isURL.id = 'isURL';
isURL.test = 'Not listed as a conformance criterion but the DL URI must be a valid URL';
isURL.msg = 'Given GS1 Digital Link URI is not a valid URL';
recordResult(isURL); // The default message is sent to the output. We'll update it if the test is passed.
// While we're at it, we'll set up the results object for whether it's a valid DL URI or not
let validDL = Object.create(resultProps);
validDL.id = 'validDL';
validDL.test = 'Given input must be a GS1 Digital Link URI';
validDL.msg = 'Given input is not a valid GS1 Digital link URI, no further testing is possible';
recordResult(validDL);
// And whether it's using HTTPS or not
let isHttps = Object.create(resultProps);
isHttps.id = 'isHttps';
isHttps.test = 'SHALL support HTTP Over TLS (HTTPS)';
isHttps.msg = 'Given GS1 Digital Link URI uses a scheme other than HTTPS';
isHttps.status = 'warn';
recordResult(isHttps);
// We will tolerate leading and training spaces but not spaces within the URL
dl = dl.replace(/(^\s+|\s+$)/g, ''); // Remove leading and trailing spaces
// console.log('Given GS1 Digital Link URI is "' + dl + '"');
// We'll split the URI using Jo Rabin's regex
let UriElements = dl.match(RabinRegEx);
// If the input matches the regex, it's an http or https URI
if (UriElements)
{
let scheme = UriElements[2].toLowerCase();
domain = UriElements[4]; // Sets this important variable
if (((scheme === 'http') || (scheme === 'https')) && (domain.indexOf('.') !== -1))
{
isURL.msg = 'Given GS1 Digital Link URI is a valid URL';
isURL.status = 'pass';
recordResult(isURL);
// At this point we probably have a URL and we have its various elements,
} // End is it a URL
if (scheme === 'https')
{
isHttps.msg = 'Given GS1 Digital Link URI defines HTTPS as its scheme';
isHttps.status = 'pass';
recordResult(isHttps);
}
} // End is it a URI
let plausibleDL;
// if isHttps.status is pass or warn then we have a URL and we can probe further
if (isHttps.status !== 'fail')
{
plausibleDL = Object.create(resultProps);
plausibleDL.id = 'plausibleDL';
plausibleDL.test = 'Following GS1 Digital Link: URI syntax, we can check whether a URL plausibly is, or definitely is not, a DL URI';
plausibleDL.msg = 'Given URL does not conform to GS1 Digital Link URI syntax, no further tests are possible';
plausibleDL.status = 'fail';
// Let's check that it is a plausible DL URI using the regular expression method in the DL URI spec
if (plausibleDlURINoAlphas.test(dl))
{
plausibleDL.status = 'pass';
plausibleDL.msg = 'URL under test plausibly is a GS1 Digital Link URI (uncompressed)';
} else if (plausibleDlURI.test(dl))
{
plausibleDL.status = 'warn';
plausibleDL.msg = 'URL under test plausibly is a GS1 Digital Link URI but is using convenience alphas that were deprecated in version 1.2.0 and removed entirley in version 1.3.0 published in November 2022';
}
recordResult(plausibleDL);
}
// So now if plausibleDL.status is pass or warn, then we can pass it to the toolkit for a full check
if (plausibleDL.status !== 'fail')
{
try
{
let gs1Array = gs1dlt.extractFromGS1digitalLink(dl);
// You can get here with a variety of URLs including just a domain name and /gtin etc.
// So we need to check further Object returned has a GS1 object within it.
// Test for that using Mark's code unless and until we can switch to the BSR
if (gs1dlt.buildStructuredArray(gs1Array.GS1).identifiers.length === 1)
{
validDL.status = 'pass';
validDL.msg = 'Given input is a valid GS1 Digital Link URI';
recordResult(validDL);
}
}
catch (err)
{
console.log('Error when extracting keys from given DL. Message is ' + err);
}
}
// If validDL.status is pass, we're good to go.
if (validDL.status === 'pass')
{
// We'll call a series of functions rather than putting everything here
// They return an object that normally goes into the async fetch array
TLSCheck(domain).then(); // This one doesn't push to the array
rdFileCheck(domain).then(); // Nor this one, so we don't need to wait either for them
//We'll wait for these run tests
await runTest(checkHttpVersion(domain));
await runTest(headerBasedChecks(dl));
await runTest(errorCodeChecks(dl));
await runTest(trailingSlashCheck(dl));
//await runTest(compressionChecks(dl, domain, gs1dlt));
await runTest(testQuery(dl));
await runTest(linkTypeIslinkset(dl));
await runTest(linksetHeaderTests(dl));
// await resultSummary();
}
rotatingCircle(false);
// End validDL.status=='pass'
}
const TLSCheck = async (domain) =>
{
// This is designed to make sure that the server is available over TLS (i.e. using
// https works, even if the given DL is http) It does not handle a JSON
// response and therefore we don't use the promises array
let tlsOK = Object.create(resultProps);
tlsOK.id = 'tlsOK';
tlsOK.test = 'SHALL support HTTP Over TLS (HTTPS)';
tlsOK.msg = 'Resolver does not support HTTP over TLS';
recordResult(tlsOK);
try
{
let response = await fetch('https://' + domain, {method: 'HEAD', mode: 'no-cors'});
// console.log(`response status is ${response.status}`)
if (response.status >= 0)
{ // status is usually 0 for a site that supports https, I think 'cos we're
// using non-cors mode. This test could really do with improving
tlsOK.msg = 'Confirmed that server supports HTTP over TLS';
tlsOK.status = 'pass';
}
recordResult(tlsOK);
}
catch (error)
{
console.log('TLSCheck() Error: There has been a problem with your fetch operation when checking for TLS support: ', error.message);
}
return tlsOK;
}
const rdFileCheck = async (domain) =>
{
// Checking that the Resolver Description File is available. Also want to check a few things about it.
let rdFile = Object.create(resultProps);
rdFile.id = 'rdFile';
rdFile.test = 'SHALL provide a resolver description file at /.well-known/gs1resolver';
rdFile.msg = 'Resolver Description File not found';
recordResult(rdFile);
try
{
let testRequest = new Request('https://' + domain + '/.well-known/gs1resolver', {
method: 'get',
mode: 'cors',
redirect: 'follow',
headers: new Headers({
'Accept': 'application/json'
})
});
let response = await fetch(testRequest);
let data = await response.json();
const schemaTestResult = await doesJSONSchemaPass(data, resolverDescriptionFileSchema);
//if (
// data['supportedPrimaryKeys'] &&
// data['resolverRoot'].match(/^((https?):)(\/\/((([^\/?#]*)@)?([^\/?#:]*)(:([^\/?#]*))?))?([^?#]*)(\?([^#]*))?(#(.*))?/) &&
// schemaTestResult.testResult
//)
if (schemaTestResult.testResult)
{
rdFile.msg = 'Resolver description file found with at least minimum required data and is valid against the official GS1 schema';
rdFile.status = 'pass';
}
else if (response.ok)
{
rdFile.msg = 'Resolver description file found but does not validate against the official GS1 schema. Error(s): ' + schemaTestResult.errors.join(', ');
}
//else
//{
// rdFile.msg = 'Resolver description file found but minimum required data not found';
//}
recordResult(rdFile);
}
catch (error)
{
console.log('rdFileCheck() Error: There has been a problem with your fetch operation: ', error.message);
}
return rdFile.status;
}
const checkHttpVersion = (domain) =>
{
let httpVersion = Object.create(resultProps);
httpVersion.id = 'httpVersion';
httpVersion.test = 'SHALL support HTTP 1.1 (or higher)';
httpVersion.status = 'warn';
httpVersion.msg = 'HTTP version not detected. If other tests passed, it\'s probably OK';
httpVersion.url = testUri + '?test=getHTTPversion&testVal=' + encodeURIComponent(domain);
recordResult(httpVersion);
httpVersion.process = async (data) =>
{
let r = parseFloat(data.result.toUpperCase().replace('HTTP', '').replace('/', ''));
if (r && r >= 1.1)
{
httpVersion.status = 'pass';
httpVersion.msg = 'Server at ' + domain + ' supports HTTP ' + r;
}
recordResult(httpVersion);
}
return httpVersion;
}
const headerBasedChecks = (dl) =>
{
// We'll perform a number of checks based on the headers returned from checking the DL directly
let corsCheck = Object.create(resultProps);
corsCheck.id = 'corsCheck';
corsCheck.test = 'SHALL support CORS';
corsCheck.msg = 'CORS headers not detected';
recordResult(corsCheck);
// *************** Need to look at the link header
let linkOnRedirect = Object.create(resultProps);
linkOnRedirect.id = 'linkOnRedirect';
linkOnRedirect.test = 'SHOULD expose the direct link to the linkset in an HTTP Link header when redirecting.';
linkOnRedirect.status = 'warn';
linkOnRedirect.msg = 'No link to the linkset detected when redirecting';
recordResult(linkOnRedirect);
let legacyLinkHeaders = Object.create(resultProps);
legacyLinkHeaders.id = 'legacyLinkHeaders';
legacyLinkHeaders.test = 'The inclusion of all possible links in the HTTP Link header was deprecated in version 1.0.0 of the GS1-Conformant resolver standard, February 2024';
legacyLinkHeaders.status = 'pass'; // This is unusual - we're setting this pass and will change to warn if we find a reason
legacyLinkHeaders.msg = 'No unnecessary links found in HTTP Link header';
recordResult(legacyLinkHeaders);
let methodsCheck = Object.create(resultProps);
methodsCheck.id = 'methodsCheck';
methodsCheck.test = 'SHALL support HTTP 1.1 (or higher) GET, HEAD and OPTIONS requests.';
methodsCheck.msg = 'At least one of GET, HEAD or OPTIONS not detected';
recordResult(methodsCheck);
let u = stripQueryStringFromURL(dl);
corsCheck.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u);
// console.log(`Looking at ${testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u)}`);
corsCheck.process = async (data) =>
{
//console.log(`What came back was ${JSON.stringify(data.result)}`);
if ((data.result['Access-Control-Allow-Origin']) || (data.result['access-control-allow-origin']))
{
// That's probably enough tbh
corsCheck.status = 'pass';
corsCheck.msg = 'CORS headers detected';
recordResult(corsCheck);
}
// Need to handle case insensitivity - some servers use title case, others lower case
if ((data.result['Access-Control-Allow-Origin'] !== undefined) && (data.result['access-control-allow-methods'] === undefined))
{
data.result['access-control-allow-methods'] = data.result['Access-Control-Allow-Methods'];
}
if ((typeof data.result['access-control-allow-methods'] === 'string') &&
(((data.result['access-control-allow-methods'].indexOf('GET') > -1) &&
(data.result['access-control-allow-methods'].indexOf('HEAD') > -1)) &&
(data.result['access-control-allow-methods'].indexOf('OPTIONS') > -1)))
{ // We have our three allowed methods
methodsCheck.msg = 'GET, HEAD an OPTIONS methods declared to be supported';
methodsCheck.status = 'pass';
recordResult(methodsCheck);
}
// Handling case-insensitivity of 'Link/link' header
let linkHeader = data.result['Link'];
if (!linkHeader) {linkHeader = data.result['link'];}
if (linkHeader)
{
// we have a link header.
// We just want to make sure that there's a link to the linkset.
// This means a link with a rel value of linkset
// If there is more than one link in the header, we can see if they're still
// including all the links from the linkset. If so, we can warn and say that this
// is now deprecated.
// console.log(`Link header is ${linkHeader}`);
let allLinks = linkHeader.split('",');
for (let i in allLinks)
{
if (!allLinks.hasOwnProperty(i))
{
continue;
}
allLinks[i] += '"';
}
// console.log(`All links is ${allLinks}`);
// So we have an array, each item in a link with all its attributes
// We just need to find a link with rel="linkset"
for (link in allLinks)
{
// console.log(`Looking at a link header ${allLinks[link]}`)
if (allLinks[link].indexOf('rel="linkset"') > -1){
linkOnRedirect.status = 'pass';
linkOnRedirect.msg = 'Link to the linkset detected when redirecting';
recordResult(linkOnRedirect);
}
if (allLinks[link].indexOf('rel="gs1:') > -1){
// All we're looking for is a link with an @rel value that includes a gs1: CURIE
legacyLinkHeaders.status = 'warn';
legacyLinkHeaders.msg = 'Unnecessary links found in HTTP Link header';
recordResult(legacyLinkHeaders);
}
}
}
}
return corsCheck;
}
const errorCodeChecks = (dl) =>
{
// ******* Test for appropriate use of 400
let reportWith400 = Object.create(resultProps);
reportWith400.id = 'reportWith400';
reportWith400.test = 'SHALL extract and syntactically validate the URI and report errors with an HTTP response code of 400';
reportWith400.msg = 'Non-conformant GS1 Digital Link URI not reported with 400 error';
recordResult(reportWith400);
// ********** Also test not using 200 to report errors
let noErrorWith200 = Object.create(resultProps);
noErrorWith200.id = 'noErrorWith200';
noErrorWith200.test = 'A GS1 conformant resolver SHALL NOT use a 200 OK response code with a resource that indicates an error condition';
noErrorWith200.msg = 'Error reported with 200 OK';
recordResult(noErrorWith200);
// Let's create an error - we know we have a valid DL so we'll mess it up by adding /foo to the end
reportWith400.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(stripQueryStringFromURL(dl) + '/foo');
reportWith400.process = async (data) =>
{
let httpResponseCode = data.result['httpCode']
//console.log(`We have a response code of ${data.result['0']}`);
if (httpResponseCode === 400)
{
reportWith400.msg = 'Non-conformant GS1 Digital Link URI correctly reported with 400 error';
reportWith400.status = 'pass';
}
else
{
reportWith400.msg = `Non-conformant GS1 Digital Link URI wrongly reported with HTTP ${httpResponseCode} error`;
}
recordResult(reportWith400);
if (httpResponseCode !== 200)
{
noErrorWith200.msg = `Error was correctly reported with a non-200 OK response code of HTTP ${httpResponseCode}`;
noErrorWith200.status = 'pass';
recordResult(noErrorWith200);
}
}
return reportWith400;
}
const trailingSlashCheck = (dl) =>
{
// Need to create a URI with and without a trailing slash
// We can dispense with any query string and create version with no trailing slash, then append slash to make the
// other
let noSlash = stripQueryStringFromURL(dl);
if (noSlash.lastIndexOf('/') + 1 === noSlash.length)
{
noSlash = noSlash.substring(0, noSlash.lastIndexOf('/'));
}
let slash = noSlash + '/';
let trailingSlash = Object.create(resultProps);
trailingSlash.id = 'trailingSlash';
trailingSlash.test = 'SHOULD tolerate trailing slashes at the end of GS1 Digital Link URIs, i.e. the resolver SHOULD NOT fail if one is present';
trailingSlash.msg = 'Resolver responds differently with or without a trailing slash';
trailingSlash.status = 'warn'; // This is a SHOULD not a SHALL so warn is as strong as we should be
recordResult(trailingSlash);
trailingSlash.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(noSlash);
trailingSlash.process = async (data) =>
{
try
{
let slashRequest = new Request(testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(slash), {
method: 'get',
mode: 'cors'
})
let response = await fetch(slashRequest);
let slashJSON = await response.json();
if ((data.result.httpCode === slashJSON.result.httpCode) && (data.result.location === slashJSON.result.location))
{
trailingSlash.status = 'pass';
trailingSlash.msg = 'Response from server with and without trailing slash is identical'
recordResult(trailingSlash); // No need to update if we didn't get here
}
}
catch (error)
{
console.log('trailingSlashCheck() Error: There has been a problem with your fetch operation for ' + trailingSlash.url + ': ', error.message);
}
}
return trailingSlash;
}
// Need to do lots of tests with the linkset
// Starting with "can I get it?"
// Ask for linkset using linkType=linkset, If something comes back, hang on to it.
// Ask for linkset using linkType=all - if anything somes back it should be the same as previous. Warn of deprecation
// Don't set Accept header with those two - should be HTML
// Repeat with Accept header set to application/json - should be JSON, doesn't have to be in the linkset formet
// Ask for linkset using Accept header of application/linkset+json without linkType param set (shoud be the same)
// Check for presence of Vary header
// In previous, check for presence of link header to context file by looking at value of @rel, should be the long w3.org URL
// However we got it, validate linkset against the schema
// If valid, test default link.
// If there's a defaultLinkMulti, work through those
// Now work through all the other links by asking for them explicitly - should redirect to the target
// Test for multiple links with exactly the same metadata - which should return a 300
// Test for a link type that is not included - should be a 404
const linkTypeIslinkset = (dl) =>
{
// Check that setting linkType to linkset does not redirect or cause an error
let ltLinksetNoRedirect = Object.create(resultProps);
ltLinksetNoRedirect.id = 'ltLinksetNoRedirect';
ltLinksetNoRedirect.test = 'On receiving a request for the linkset, by setting the linkType parameter to linkset, the resolver SHALL NOT redirect the query and SHALL return the linkset. ';
ltLinksetNoRedirect.msg = 'Setting linkType to linkset resulted in a redirect or an error';
recordResult(ltLinksetNoRedirect);
let u = stripQueryStringFromURL(dl) + '?linkType=linkset';
ltLinksetNoRedirect.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u);
//console.log(`Testing ${ltLinksetNoRedirect.url}`)
ltLinksetNoRedirect.process = async (data) =>
{
//console.log(`What came back was ${JSON.stringify(data.result)}`);
if (data.result['httpCode'] === 200) {
ltLinksetNoRedirect.status = 'pass';
ltLinksetNoRedirect.msg = 'No redirect with linkType set to linkset';
recordResult(ltLinksetNoRedirect);
} else {
await runTest(linkTypeIsAll(dl));
}
}
return ltLinksetNoRedirect;
}
const linkTypeIsAll = (dl) =>
{
// If linkType=linkset didn't wor, we'll try this
let ltAllNoRedirect = Object.create(resultProps);
ltAllNoRedirect.id = 'ltAllNoRedirect';
ltAllNoRedirect.test = 'On receiving a request for the linkset, by setting the linkType paramter to all, the resolver SHALL NOT redirect the query and SHALL return the linkset. ';
ltAllNoRedirect.msg = 'Setting linkType to all resulted in a redirect or an error';
recordResult(ltAllNoRedirect);
let u = stripQueryStringFromURL(dl) + '?linkType=all';
//console.log(`u is ${u}`);
ltAllNoRedirect.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u);
//console.log(`Testing ${ltAllNoRedirect.url}`)
ltAllNoRedirect.process = async (data) =>
{
//console.log(`What came back was ${JSON.stringify(data.result)}`);
if (data.result['httpCode'] === 200) {
ltAllNoRedirect.status = 'warn';
ltAllNoRedirect.msg = 'Using linkType set to all was deprecated in GS1-Conformant resolver 1.0.0 (Feb 2024) in favour of linkType=linkset';
recordResult(ltAllNoRedirect);
}
}
return ltAllNoRedirect;
}
const linksetHeaderTests = (dl) =>
{
let ltAcceptNoRedirect = Object.create(resultProps);
ltAcceptNoRedirect.id = 'ltAcceptNoRedirect';
ltAcceptNoRedirect.test = 'On receiving a request for the linkset, by setting the HTTP Accept header to application/linkset+json, the resolver SHALL NOT redirect the query and SHALL return the linkset.';
ltAcceptNoRedirect.msg = 'Setting Accept header to application/linkset+json resulted in a redirect or an error';
recordResult(ltAcceptNoRedirect);
ltAcceptNoRedirect.url = testUri + '?test=getLinkset&testVal=' + encodeURIComponent(stripQueryStringFromURL(dl));
ltAcceptNoRedirect.process = async (data) =>
{
// data.result is a string that we need to parse into JSON
let resultObject = JSON.parse(data.result);
//console.log(`What came back was ${JSON.stringify(resultObject)}`);
if (resultObject.httpCode === 200) {
ltAcceptNoRedirect.status = 'pass';
ltAcceptNoRedirect.msg = 'No redirect when asking for linkset by setting the Accept header';
recordResult(ltAcceptNoRedirect);
const decodedString = decodeURIComponent(resultObject.responseBody);
const tempObject = JSON.parse(decodedString);
const linksetObject = tempFixLinkset(tempObject);
let validLinkset = Object.create(resultProps);
validLinkset.id = 'validLinkset';
validLinkset.test = 'Linkset must be valid according to published JSON schema';
validLinkset.msg = 'Linkset does not validate';
recordResult(validLinkset);
const schemaTestResult = await doesJSONSchemaPass(linksetObject, 'https://gs1.github.io/linkset/gs1-linkset-schema.json');
if (schemaTestResult.testResult)
{
validLinkset.msg = 'Linkset validates against the published schema';
validLinkset.status = 'pass';
recordResult(validLinkset);
linksetTests(dl, linksetObject);
}
}
}
return ltAcceptNoRedirect;
}
// This is a hack around the weird behavious of id.gs1.org where linksets are badly formed
//
const tempFixLinkset = (linksetObject) => {
if (Array.isArray(linksetObject.linkset)) {
return linksetObject;
} else {
let modifiedObject = {"linkset":[linksetObject.linkset]};
//console.log(`modified version is ${JSON.stringify(modifiedObject)}`);
let hackedLinkset = Object.create(resultProps);
hackedLinkset.id = 'hackedLinkset';
hackedLinkset.test = 'Linkset must be valid according to published JSON schema';
hackedLinkset.msg = 'This is a temporary hack - the linkset is *not* valid as the value of linkset itself must be an array of objects';
recordResult(hackedLinkset);
return modifiedObject;
}
}
const doesJSONSchemaPass = async (data, schemaUrl) =>
{
try
{
// Initialize Ajv
// Set the strict flag to false as it currently doesn't seem to support format type of uri
// Need to investigate
const ajv = new window.ajv7({strict:false});
// Fetch schema from URL
const fetchSchema = async () => {
try {
const response = await fetch(schemaUrl, {
method: 'GET',
headers: {
'Accept': 'application/json'
}
});
if (!response.ok) {
throw new Error(`Failed to fetch schema: ${response.statusText}`);
}
const schema = await response.json();
// If the schema specifies Draft-04, replace it with Draft-07
// Need to update the actual schema
if (schema.$schema === 'http://json-schema.org/draft-04/schema#') {
schema.$schema = 'http://json-schema.org/draft-07/schema#';
}
return schema;
} catch (error) {
console.error('Error fetching schema:', error.message);
throw new Error('Unable to fetch schema');
}
};
// Fetch the schema
let schema;
try
{
schema = await fetchSchema();
}
catch (error)
{
return {
testResult: false,
errors: [error.message]
};
}
// Compile schema and validate data
try
{
const validate = ajv.compile(schema);
const valid = validate(data);
if (valid)
{
return {testResult: true}; // Success
}
else
{
return {
testResult: false,
errors: validate.errors.map(err => `${err.instancePath} ${err.message}`)
};
}
}
catch (error)
{
console.error('Validation error:', error.message);
return {
testResult: false,
errors: [error.message]
};
}
}
catch (error)
{
console.error('Unexpected error:', error.message);
return {
testResult: false,
errors: ['Unexpected error occurred during schema validation']
};
}
};
const testQuery = (dl) =>
{
let qsPassedOn = Object.create(resultProps);
qsPassedOn.id = 'qsPassedOn';
qsPassedOn.test = 'By default, SHALL pass on all key=value pairs in the query string of the request URI (if present) when redirecting';
qsPassedOn.msg = 'Query string not passed on. If the query string is deliberately suppressed for this Digital Link URI, test another one where the default behaviour of passing on the query string applies';
qsPassedOn.status = 'warn';
recordResult(qsPassedOn);
let u = stripQueryStringFromURL(dl);
let query = 'foo=bar';
qsPassedOn.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u + '?' + query);
//console.log(`We're testing the query string in this ${testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u + '?' + query)}`);
qsPassedOn.process = async (data) =>
{
let redirect;
if (data.result.location){
redirect = data.result.location;
} else if (data.result.Location){
redirect = data.result.Location;
}
if (redirect)
{
// There is a redirection
if (redirect.indexOf(query) > -1)
{ // Our query is being passed on
qsPassedOn.status = 'pass';
qsPassedOn.msg = 'Query passed on when redirecting';
}
}
else
{
qsPassedOn.msg = 'GS1 Digital Link URI not redirected so cannot test this feature';
}
recordResult(qsPassedOn);
}
return qsPassedOn;
}
const linksetTests = async (dl, linksetObject) => {
// Need to handle the 3 namespaces that can be used for GS1 link types
// Reduce them all to 'gs1:'
let linksetObjectString = JSON.stringify(linksetObject);
const re = /https:\/\/((ref\.)|(www\.))?gs1\.org\/voc\//gi;
linksetObjectString = linksetObjectString.replace(re, 'gs1:');
//console.log(linksetObjectString);
const modifiedLinksetObject = JSON.parse(linksetObjectString);
// We'll work through the array of objects under linkset
for (i in modifiedLinksetObject.linkset) {
const linkset = modifiedLinksetObject.linkset[i];
// Let's go through and find all the link types in use
let linkTypesInUse = [];
for (l in linkset) {
if ((l !== 'anchor') && (l !== 'itemDescription')) {
linkTypesInUse.push(l);
}
}
// So now we have all our link types in the linkset as gs1:{linkType}
// We know there should be a default link so we can set that rest object up outside
// of the loop
let defaultLinkExists = Object.create(resultProps);
defaultLinkExists.id = 'defaultLinkExists';
defaultLinkExists.test = 'For each identified entity there SHALL be exactly one default link, the list of link types for which SHALL include gs1:defaultLink. This default is defined without any of the optional attributes, that is, it SHALL include a title, but SHALL NOT include other attributes.';
defaultLinkExists.msg = 'No default link found';
recordResult(defaultLinkExists);
for (lt in linkTypesInUse) {
const linkType = linkTypesInUse[lt]
//console.log(`linkType is ${linkType}`)
if (linkType === 'gs1:defaultLink') {
defaultLinkExists.msg = 'Default link found';
defaultLinkExists.status = 'pass';
recordResult(defaultLinkExists);
// This one is straightforward, there should only be one link object
let singleDefaulLink = Object.create(resultProps);
singleDefaulLink.id = 'singleDefaulLink';
singleDefaulLink.test = 'For each identified entity there SHALL be exactly one default link, the list of link types for which SHALL include gs1:defaultLink. This default is defined without any of the optional attributes, that is, it SHALL include a title, but SHALL NOT include other attributes.';
if (linkset[linkType].length === 1) {
singleDefaulLink.status='pass';
singleDefaulLink.msg = 'Single default link found'
} else if (linkset[linkType].length !== 1){
singleDefaulLink.msg = 'Multiple (or zero) default links found'
}
recordResult(singleDefaulLink);
// console.log(`The default targetURL is ${linkset[linkType][0].href}`);
// And we should be redirected to its href with a simple query
if ((singleDefaulLink.status ==='pass') && (linkset[linkType][0].href)) {
await runTest(testDefaultLink(dl, linkset[linkType][0].href));
}
}
// Everything else is more complicated
// Can have arbitrary number of links per link type
// If combo of hreflang, type and context is unique, need to create relevant request
// And check result
// If combo is not unique, need to test that response is a 300
else {
//console.log(`Looking at ${linkType}`)
for (linkObject in linkset[linkType]) {
if (linkset[linkType].length === 1) {
// For now, only handling single link per link type
// Handling multiple link objects for a single link type will
// require adding significant complexity that right now (2025-03-27)
// I don't have time to add :-(
await runTest(testSingleLinkObject(dl, linkType, linkset[linkType][0].href));
}
}
}
}
}
return;
}
const testDefaultLink = (dl, targetURL) => {
let defaultTarget = Object.create(resultProps);
defaultTarget.id = 'defaultTarget';
defaultTarget.test = "One of the links SHALL be recognised by the resolver as the default and the resolver SHALL redirect to that URL unless there is information supplied within the query to the contrary.";
defaultTarget.msg = "Resolver does not redirect to the default as expected"
recordResult(defaultTarget);
let u = stripQueryStringFromURL(dl);
defaultTarget.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(u);
defaultTarget.process = async (data) =>
{
let targetLocation = data.result.Location;
if (!targetLocation) {targetLocation = data.result.location}
if (targetURL === targetLocation) {
defaultTarget.status = 'pass';
defaultTarget.msg = "Resolver correctly redirects to default"
}
}
return defaultTarget;
}
const testSingleLinkObject = (dl, linkType, targetURL) => {
let loObject = Object.create(resultProps);
loObject.id = 'loFor' + linkType.replace(':','');
loObject.test = 'If the requested type of link is available, the resolver SHALL redirect to it';
loObject.msg = `Requesting linkType of ${linkType} did not redirect to ${targetURL}`;
loObject.url = testUri + '?test=getAllHeaders&testVal=' + encodeURIComponent(stripQueryStringFromURL(dl) + '?linkType=' + linkType);
//console.log(`fetching ${loObject.url}`)
loObject.process = async (data) =>
{
let targetLocation = data.result.Location;
if (!targetLocation) {targetLocation = data.result.location}
if (targetLocation.indexOf('?linkType='+linkType) !== -1)
{
targetLocation = stripQueryStringFromURL(targetLocation)
} else if (targetLocation.indexOf('&linkType='+linkType) !== -1)
{
targetLocation = targetLocation.substring(0, targetLocation.indexOf('&linkType='))
}
//console.log(`targetURL is ${targetURL} and targetLocation is ${targetLocation}, test is ${(targetURL === targetLocation)}`)
if (targetURL === targetLocation) {
loObject.status = 'pass';
loObject.msg = `Resolver correctly redirects to ${targetURL} for ${linkType} `
}
}
return loObject
}
const resultSummary = async () => {
console.log(`Calling result Summary`);
let rdfReport = document.getElementById('rdFile');
let linksetReport = document.getElementById('validLinkset');
if ((rdfReport.className.indexOf('pass') === -1) && (linksetReport.className.indexOf('pass') === -1)) {
let p = document.createElement('p');
p.appendChild(document.createTextNode('Really bad'));
outputElement.prepend(p)
}
}
const rotatingCircle = (showFlag) =>
{
document.getElementById('rotatingcircle').style.visibility = showFlag ? "visible" : "hidden";
}
// ********************* Processing functions ******************************
function stripQueryStringFromURL(url)
{
try
{
return url.indexOf('?') > -1 ? url.substring(0, url.indexOf('?')) : url;
}
catch (e)
{
console.log(`stripQueryStringFromURL() URL: '${url}', Error: ${e.message}`);
// print stacktrace
console.log(e.stack);
}
}
/**
* runTest() executes the .process() method in the supplied test.
* @param test
* @returns {Promise<void>}
*/
const runTest = async (test) =>
{
//console.log('Fetching ' + test.url + ' for ' + test.id);
try
{
let response = await fetch(test.url, {headers: test.headers});
let data = await response.json();
await test.process(data);
recordResult(test);
}
catch (error)
{
console.log(`"Error from test id: '${test.id}' on '${test.url}' has error: ${error}`);
// print stacktrace
console.log(error.stack);
}
return test.status;
}
// ************************** Output functions *****************************
function getDL()
{
let dl = document.getElementById('testResults');
if (!dl)
{
dl = document.createElement('dl');
dl.id = 'testResults';
document.getElementById(outputElement).appendChild(dl);
}
return dl;
}
function clearGrid()
{
let e = document.getElementById('resultsGrid');
if (e)
{
e.innerHTML = '';
}
e = document.getElementById('testResults');
if (e)
{
e.innerHTML = '';
}
return true;
}
function getGrid()
{
let p = document.getElementById('resultsGrid')
if (!p)
{
p = document.createElement('p');
p.id = 'resultsGrid';
document.getElementById(outputElement)
.appendChild(p);
}
return p;
}
function recordResult(result)
{
try
{
// See if result is already in the array
let i = 0;
while ((i < resultsArray.length) && (resultsArray[i].id !== result.id))
{
i++;
}
// i now either points to the existing record or the next available index, either way we can now push the result
// into the array
resultsArray[i] = result;
sendOutput(result);
return 1;
}
catch (e)
{
console.log('recordResult() Error: ' + e.message);
return 0;
}
}
function sendOutput(o)
{
// We begin by creating or updating entries in the DL list
// If the dt/dd pair exist we need to update them, otherwise we need to create them
// So begin by testing for existence