forked from adlnet/lrs-conformance-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
batteries.js
13795 lines (13795 loc) · 553 KB
/
batteries.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
module.exports = {
"1.0.3": {
"conformanceTestCount": 1365,
"tests": {
"text": "",
"children": [
{
"text": "Formatting Requirements",
"children": [
{
"text": "A Statement contains an \"actor\" property",
"children": [
{
"text": "statement \"actor\" missing",
"children": []
}
]
},
{
"text": "A Statement contains a \"verb\" property",
"children": [
{
"text": "statement \"verb\" missing",
"children": []
}
]
},
{
"text": "A Statement contains an \"object\" property",
"children": [
{
"text": "statement \"object\" missing",
"children": []
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request any Statement having a property whose value is set to \"null\", except in an \"extensions\" property",
"children": [
{
"text": "statement actor should fail on \"null\"",
"children": []
},
{
"text": "statement verb should fail on \"null\"",
"children": []
},
{
"text": "statement context should fail on \"null\"",
"children": []
},
{
"text": "statement object should fail on \"null\"",
"children": []
},
{
"text": "statement activity extensions can be empty",
"children": []
},
{
"text": "statement result extensions can be empty",
"children": []
},
{
"text": "statement context extensions can be empty",
"children": []
},
{
"text": "statement substatement activity extensions can be empty",
"children": []
},
{
"text": "statement substatement result extensions can be empty",
"children": []
},
{
"text": "statement substatement context extensions can be empty",
"children": []
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request a Statement which uses the wrong data type",
"children": [
{
"text": "with strings where numbers are required",
"children": []
},
{
"text": "even if those strings contain numbers",
"children": []
},
{
"text": "with strings where booleans are required",
"children": []
},
{
"text": "even if those strings contain booleans",
"children": []
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request a Statement which uses any non-format-following key or value, including the empty string, where a string with a particular format, such as mailto IRI, UUID, or IRI, is required.",
"children": [
{
"text": "statement \"id\" invalid numeric",
"children": []
},
{
"text": "statement \"id\" invalid object",
"children": []
},
{
"text": "statement \"id\" invalid UUID with too many digits",
"children": []
},
{
"text": "statement \"id\" invalid UUID with non A-F",
"children": []
},
{
"text": "statement actor \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement actor \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement authority \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement authority \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement context instructor \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement context instructor \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement context team \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement as \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement as \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement\"s \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement\"s \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement\"s context instructor \"agent\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement\"s context instructor \"group\" account \"name\" property is string",
"children": []
},
{
"text": "statement substatement\"s context team \"group\" account \"name\" property is string",
"children": []
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request a Statement where the case of a key does not match the case specified in this specification.",
"children": [
{
"text": "should fail when not using \"id\"",
"children": []
},
{
"text": "should fail when not using \"actor\"",
"children": []
},
{
"text": "should fail when not using \"verb\"",
"children": []
},
{
"text": "should fail when not using \"object\"",
"children": []
},
{
"text": "should fail when not using \"result\"",
"children": []
},
{
"text": "should fail when not using \"context\"",
"children": []
},
{
"text": "should fail when not using \"timestamp\"",
"children": []
},
{
"text": "should fail when not using \"stored\"",
"children": []
},
{
"text": "should fail when not using \"authority\"",
"children": []
},
{
"text": "should fail when not using \"version\"",
"children": []
},
{
"text": "should fail when not using \"attachments\"",
"children": []
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request a Statement where the case of a value restricted to enumerated values does not match an enumerated value given in this specification exactly.",
"children": [
{
"text": "when interactionType is wrong case (\"true-faLse\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"choiCe\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"fill-iN\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"long-fiLl-in\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"matchIng\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"perfOrmance\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"seqUencing\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"liKert\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"nUmeric\")",
"children": []
},
{
"text": "when interactionType is wrong case (\"Other\")",
"children": []
}
]
},
{
"text": "The LRS rejects with error code 400 Bad Request a token with does not validate as matching the RFC 5646 standard in the sequence of token lengths for language map keys.",
"children": [
{
"text": "statement verb \"display\" should pass given de two letter language code only",
"children": []
},
{
"text": "statement verb \"display\" should fail given invalid language code",
"children": []
},
{
"text": "statement object \"name\" should pass given de-DE language-region code",
"children": []
},
{
"text": "statement object \"name\" should fail given invalid language code",
"children": []
},
{
"text": "statement object \"description\" should pass given zh-Hant language-script code",
"children": []
},
{
"text": "statement object \"description\" should fail given invalid language code",
"children": []
},
{
"text": "interaction components' description should pass given sr-Latn-RS language-script-region code",
"children": []
},
{
"text": "context.language should pass given three letter cmn language code",
"children": []
},
{
"text": "context.language should fail given invalid language code",
"children": []
},
{
"text": "statement attachment \"display\" should pass given es two letter language code only",
"children": []
},
{
"text": "statement attachment \"display\" should fail given invalid language code",
"children": []
},
{
"text": "statement attachment \"description\" should pass given es-MX language-UN region code",
"children": []
},
{
"text": "statement attachment \"description\" should fail given es-MX invalid language code",
"children": []
},
{
"text": "statement substatement verb \"display\" should pass given sr-Cyrl language-script code",
"children": []
},
{
"text": "statement substatement verb \"display\" should fail given invalid language code",
"children": []
},
{
"text": "statement substatement activity \"name\" should pass given zh-Hans-CN language-script-region code",
"children": []
},
{
"text": "statement substatement activity \"name\" should fail given zh-z-aaa-z-bbb-c-ccc invalid (two extensions with same single-letter prefix) language code",
"children": []
},
{
"text": "statement substatement activity \"description\" should pass given ase three letter language code",
"children": []
},
{
"text": "statement substatement activity \"description\" should fail given invalid language code",
"children": []
},
{
"text": "substatement interaction components' description should pass given ja two letter language code only",
"children": []
},
{
"text": "substatement context.language should pass given two letter fr-CA language-region code",
"children": []
},
{
"text": "substatement context.language should fail given invalid language code",
"children": []
}
]
},
{
"text": "An LRS stores 32-bit floating point numbers with at least the precision of IEEE 754",
"children": [
{
"text": "should pass and keep precision",
"children": []
}
]
},
{
"text": "The LRS rejects with error code 400 Bad Request parameter values which do not validate to the same standards required for values of the same types in Statements",
"children": [
{
"text": "should reject when statementId value is invalid",
"children": []
},
{
"text": "should reject when statementId value is invalid",
"children": []
},
{
"text": "should reject when statementId value is invalid",
"children": []
},
{
"text": "should reject when statementId value is invalid",
"children": []
},
{
"text": "should reject when statementId value is invalid",
"children": []
},
{
"text": "should reject when statementId value is invalid",
"children": []
}
]
},
{
"text": "All Objects are well-created JSON Objects",
"children": [
{
"text": "An LRS rejects a not well-created JSON Object",
"children": []
},
{
"text": "Statements Verify Templates",
"children": [
{
"text": "should pass statement template",
"children": []
}
]
},
{
"text": "Agents Verify Templates",
"children": [
{
"text": "should pass statement actor template",
"children": []
},
{
"text": "should pass statement authority template",
"children": []
},
{
"text": "should pass statement context instructor template",
"children": []
},
{
"text": "should pass statement substatement as agent template",
"children": []
},
{
"text": "should pass statement substatement\"s agent template",
"children": []
},
{
"text": "should pass statement substatement\"s context instructor template",
"children": []
}
]
},
{
"text": "Groups Verify Templates",
"children": [
{
"text": "should pass statement actor template",
"children": []
},
{
"text": "should pass statement authority template",
"children": []
},
{
"text": "should pass statement context instructor template",
"children": []
},
{
"text": "should pass statement context team template",
"children": []
},
{
"text": "should pass statement substatement as group template",
"children": []
},
{
"text": "should pass statement substatement\"s group template",
"children": []
},
{
"text": "should pass statement substatement\"s context instructor template",
"children": []
},
{
"text": "should pass statement substatement\"s context team template",
"children": []
}
]
},
{
"text": "A Group is defined by \"objectType\" of an \"actor\" property or \"object\" property with value \"Group\"",
"children": [
{
"text": "statement actor \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement authority \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement context instructor \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement context team \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement substatement as group \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement substatement\"s group \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement substatement\"s context instructor \"objectType\" accepts \"Group\"",
"children": []
},
{
"text": "statement substatement\"s context team \"objectType\" accepts \"Group\"",
"children": []
}
]
},
{
"text": "An Anonymous Group is defined by \"objectType\" of an \"actor\" or \"object\" with value \"Group\" and by none of \"mbox\", \"mbox_sha1sum\", \"openid\", or \"account\" being used",
"children": [
{
"text": "statement actor does not require functional identifier",
"children": []
},
{
"text": "statement authority does not require functional identifier",
"children": []
},
{
"text": "statement context instructor does not require functional identifier",
"children": []
},
{
"text": "statement context team does not require functional identifier",
"children": []
},
{
"text": "statement substatement as group does not require functional identifier",
"children": []
},
{
"text": "statement substatement\"s group does not require functional identifier",
"children": []
},
{
"text": "statement substatement\"s context instructor does not require functional identifier",
"children": []
},
{
"text": "statement substatement\"s context team does not require functional identifier",
"children": []
}
]
},
{
"text": "Verbs Verify Templates",
"children": [
{
"text": "should pass statement verb template",
"children": []
},
{
"text": "should pass substatement verb template",
"children": []
}
]
},
{
"text": "Objects Verify Templates",
"children": [
{
"text": "should pass statement activity template",
"children": []
},
{
"text": "should pass statement substatement activity template",
"children": []
},
{
"text": "should pass statement agent template",
"children": []
},
{
"text": "should pass statement substatement agent template",
"children": []
},
{
"text": "should pass statement group template",
"children": []
},
{
"text": "should pass statement substatement group template",
"children": []
},
{
"text": "should pass statement StatementRef template",
"children": []
},
{
"text": "should pass statement substatement StatementRef template",
"children": []
},
{
"text": "should pass statement SubStatement template",
"children": []
}
]
},
{
"text": "Activities Verify Templates",
"children": [
{
"text": "should pass statement activity default template",
"children": []
},
{
"text": "should pass statement substatement activity default template",
"children": []
},
{
"text": "should pass statement activity choice template",
"children": []
},
{
"text": "should pass statement activity fill-in template",
"children": []
},
{
"text": "should pass statement activity numeric template",
"children": []
},
{
"text": "should pass statement activity likert template",
"children": []
},
{
"text": "should pass statement activity long-fill-in template",
"children": []
},
{
"text": "should pass statement activity matching template",
"children": []
},
{
"text": "should pass statement activity other template",
"children": []
},
{
"text": "should pass statement activity performance template",
"children": []
},
{
"text": "should pass statement activity sequencing template",
"children": []
},
{
"text": "should pass statement activity true-false template",
"children": []
},
{
"text": "should pass statement substatement activity choice template",
"children": []
},
{
"text": "should pass statement substatement activity likert template",
"children": []
},
{
"text": "should pass statement substatement activity matching template",
"children": []
},
{
"text": "should pass statement substatement activity performance template",
"children": []
},
{
"text": "should pass statement substatement activity sequencing template",
"children": []
}
]
},
{
"text": "An Activity Definition uses the following properties: name, description, type, moreInfo, interactionType, or extensions",
"children": [
{
"text": "statement activity \"definition\" missing all properties",
"children": []
},
{
"text": "statement activity \"definition\" contains \"name\"",
"children": []
},
{
"text": "statement activity \"definition\" contains \"description\"",
"children": []
},
{
"text": "statement activity \"definition\" contains \"type\"",
"children": []
},
{
"text": "statement activity \"definition\" contains \"moreInfo\"",
"children": []
},
{
"text": "statement activity \"definition\" contains \"extensions\"",
"children": []
},
{
"text": "statement activity \"definition\" contains \"interactionType\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" missing all properties",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"name\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"description\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"type\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"moreInfo\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"extensions\"",
"children": []
},
{
"text": "statement substatement activity \"definition\" contains \"interactionType\"",
"children": []
}
]
},
{
"text": "SubStatements Verify Templates",
"children": [
{
"text": "should pass statement SubStatement template",
"children": []
}
]
},
{
"text": "StatementRefs Verify Templates",
"children": [
{
"text": "should pass statement StatementRef template",
"children": []
},
{
"text": "should pass substatement StatementRef template",
"children": []
}
]
},
{
"text": "Results Verify Templates",
"children": [
{
"text": "should pass statement result template",
"children": []
},
{
"text": "should pass substatement result template",
"children": []
}
]
},
{
"text": "Contexts Verify Templates",
"children": [
{
"text": "should pass statement context template",
"children": []
},
{
"text": "should pass substatement context template",
"children": []
}
]
},
{
"text": "A ContextActivity is defined as a single Activity of the \"value\" of the \"contextActivities\" property",
"children": [
{
"text": "statement context \"contextActivities parent\" value is activity",
"children": []
},
{
"text": "statement context \"contextActivities grouping\" value is activity",
"children": []
},
{
"text": "statement context \"contextActivities category\" value is activity",
"children": []
},
{
"text": "statement context \"contextActivities other\" value is activity",
"children": []
},
{
"text": "statement substatement context \"contextActivities parent\" value is activity",
"children": []
},
{
"text": "statement substatement context \"contextActivities grouping\" value is activity",
"children": []
},
{
"text": "statement substatement context \"contextActivities category\" value is activity",
"children": []
},
{
"text": "statement substatement context \"contextActivities other\" value is activity",
"children": []
}
]
},
{
"text": "Languages Verify Templates",
"children": [
{
"text": "should pass statement verb template",
"children": []
},
{
"text": "should pass statement object template",
"children": []
},
{
"text": "should pass statement attachment template",
"children": []
},
{
"text": "should pass statement substatement verb template",
"children": []
},
{
"text": "should pass statement substatement object template",
"children": []
}
]
}
]
},
{
"text": "An LRS rejects with error code 400 Bad Request a Statement containing IRL or IRI values without a scheme.",
"children": [
{
"text": "should fail with bad verb id scheme",
"children": []
},
{
"text": "should fail with bad verb openid scheme",
"children": []
},
{
"text": "should fail with bad account homePage",
"children": []
},
{
"text": "should fail with bad object id",
"children": []
},
{
"text": "should fail with bad object type",
"children": []
},
{
"text": "should fail with bad object moreInfo",
"children": []
},
{
"text": "should fail with attachment bad usageType",
"children": []
},
{
"text": "should fail with bad attachment fileUrl",
"children": []
},
{
"text": "should fail with bad object definition extension",
"children": []
},
{
"text": "should fail with bad context extension",
"children": []
},
{
"text": "should fail with bad result extension",
"children": []
}
]
}
]
},
{
"text": "Statement Lifecycle Requirements",
"children": [
{
"text": "A Voiding Statement is defined as a Statement whose \"verb\" property's \"id\" property's IRI ending with \"voided\"",
"children": [
{
"text": "statement verb voided IRI ends with \"voided\" (WARNING: this applies \"Upon receiving a Statement that voids another, the LRS SHOULD NOT* reject the request on the grounds of the Object of that voiding Statement not being present\")",
"children": []
}
]
},
{
"text": "A Voiding Statement's \"objectType\" field has a value of \"StatementRef\"",
"children": [
{
"text": "statement verb voided uses substatement with \"StatementRef\"",
"children": []
},
{
"text": "statement verb voided does not use object \"StatementRef\"",
"children": []
}
]
},
{
"text": "A Voided Statement is defined as a Statement that is not a Voiding Statement and is the Target of a Voiding Statement within the LRS",
"children": [
{
"text": "should return a voided statement when using GET \"voidedStatementId\"",
"children": []
},
{
"text": "should return 404 when using GET with \"statementId\"",
"children": []
}
]
},
{
"text": "A Voiding Statement cannot Target another Voiding Statement",
"children": [
{
"text": "should not void an already voided statement",
"children": []
},
{
"text": "should not void a voiding statement",
"children": []
}
]
}
]
},
{
"text": "Id Property Requirements",
"children": [
{
"text": "All UUID types follow requirements of RFC4122",
"children": [
{
"text": "statement \"id\" invalid UUID with too many digits",
"children": []
},
{
"text": "statement \"id\" invalid UUID with non A-F",
"children": []
},
{
"text": "statement object statementref \"id\" invalid UUID with too many digits",
"children": []
},
{
"text": "statement object statementref \"id\" invalid UUID with non A-F",
"children": []
},
{
"text": "statement context \"registration\" invalid UUID with too many digits",
"children": []
},
{
"text": "statement context \"registration\" invalid UUID with non A-F",
"children": []
},
{
"text": "statement context \"statement\" invalid UUID with too many digits",
"children": []
},
{
"text": "statement substatement context \"statement\" invalid UUID with non A-F",