File: test_suite_test.go

package info (click to toggle)
golang-gonum-v1-gonum 0.15.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,792 kB
  • sloc: asm: 6,252; fortran: 5,271; sh: 377; ruby: 211; makefile: 98
file content (1325 lines) | stat: -rw-r--r-- 56,875 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
// Copyright ©2020 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Copyright © 2008 World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang)
// and others. All Rights Reserved.
// http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html
// Used under https://www.w3.org/Consortium/Legal/2008/03-bsd-license.

package rdf

type statement struct {
	input string

	subject, predicate, object, label term
}

type term struct {
	text string
	qual string
	kind Kind
}

// Test suite values were extracted from the test case archives in this directory.
// The archives were obtained from https://w3c.github.io/rdf-tests/ntriples/ and
// https://w3c.github.io/rdf-tests/nquads/.
var testSuite = map[string][]statement{
	"comment_following_triple.nq": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "<http://example/s> <http://example/p> _:o . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\" . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\"^^<http://example/dt> . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "http://example/dt", kind: Literal},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\"@en . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "@en", kind: Literal},
		},
	},
	"comment_following_triple.nt": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "<http://example/s> <http://example/p> _:o . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\" . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\"^^<http://example/dt> . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "http://example/dt", kind: Literal},
		},
		{
			input:     "<http://example/s> <http://example/p> \"o\"@en . # comment",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "@en", kind: Literal},
		},
	},
	"langtagged_string.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"chat\"@en .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "chat", qual: "@en", kind: Literal},
		},
	},
	"langtagged_string.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"chat\"@en .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "chat", qual: "@en", kind: Literal},
		},
	},
	"lantag_with_subtag.nq": {
		{
			input:     "<http://example.org/ex#a> <http://example.org/ex#b> \"Cheers\"@en-UK .",
			subject:   term{text: "http://example.org/ex#a", kind: IRI},
			predicate: term{text: "http://example.org/ex#b", kind: IRI},
			object:    term{text: "Cheers", qual: "@en-UK", kind: Literal},
		},
	},
	"lantag_with_subtag.nt": {
		{
			input:     "<http://example.org/ex#a> <http://example.org/ex#b> \"Cheers\"@en-UK .",
			subject:   term{text: "http://example.org/ex#a", kind: IRI},
			predicate: term{text: "http://example.org/ex#b", kind: IRI},
			object:    term{text: "Cheers", qual: "@en-UK", kind: Literal},
		},
	},
	"literal.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x", kind: Literal},
		},
	},
	"literal.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x", kind: Literal},
		},
	},
	"literal_all_controls.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007\\u0008\\t\\u000B\\u000C\\u000E\\u000F\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\v\f\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", kind: Literal},
		},
	},
	"literal_all_controls.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007\\u0008\\t\\u000B\\u000C\\u000E\\u000F\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\v\f\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", kind: Literal},
		},
	},
	"literal_all_punctuation.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \" !\\\"#$%&():;<=>?@[]^_`{|}~\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: " !\"#$%&():;<=>?@[]^_`{|}~", kind: Literal},
		},
	},
	"literal_all_punctuation.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \" !\\\"#$%&():;<=>?@[]^_`{|}~\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: " !\"#$%&():;<=>?@[]^_`{|}~", kind: Literal},
		},
	},
	"literal_ascii_boundaries.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\x00\t\v\f\x0e&([]\u007f\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\x00\t\v\f\x0e&([]\u007f", kind: Literal},
		},
	},
	"literal_ascii_boundaries.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\x00\t\v\f\x0e&([]\u007f\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\x00\t\v\f\x0e&([]\u007f", kind: Literal},
		},
	},
	"literal_false.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "false", qual: "http://www.w3.org/2001/XMLSchema#boolean", kind: Literal},
		},
	},
	"literal_false.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "false", qual: "http://www.w3.org/2001/XMLSchema#boolean", kind: Literal},
		},
	},
	"literal_true.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "true", qual: "http://www.w3.org/2001/XMLSchema#boolean", kind: Literal},
		},
	},
	"literal_true.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "true", qual: "http://www.w3.org/2001/XMLSchema#boolean", kind: Literal},
		},
	},
	"literal_with_2_dquotes.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\\\"\\\"y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x\"\"y", kind: Literal},
		},
	},
	"literal_with_2_dquotes.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\\\"\\\"y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x\"\"y", kind: Literal},
		},
	},
	"literal_with_2_squotes.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x''y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x''y", kind: Literal},
		},
	},
	"literal_with_2_squotes.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x''y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x''y", kind: Literal},
		},
	},
	"literal_with_BACKSPACE.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\b\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\b", kind: Literal},
		},
	},
	"literal_with_BACKSPACE.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\b\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\b", kind: Literal},
		},
	},
	"literal_with_CARRIAGE_RETURN.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\r\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\r", kind: Literal},
		},
	},
	"literal_with_CARRIAGE_RETURN.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\r\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\r", kind: Literal},
		},
	},
	"literal_with_CHARACTER_TABULATION.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\t\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\t", kind: Literal},
		},
	},
	"literal_with_CHARACTER_TABULATION.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\t\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\t", kind: Literal},
		},
	},
	"literal_with_FORM_FEED.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\f\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\f", kind: Literal},
		},
	},
	"literal_with_FORM_FEED.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\f\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\f", kind: Literal},
		},
	},
	"literal_with_LINE_FEED.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\n\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\n", kind: Literal},
		},
	},
	"literal_with_LINE_FEED.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\n\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\n", kind: Literal},
		},
	},
	"literal_with_REVERSE_SOLIDUS.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\\\\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\\", kind: Literal},
		},
	},
	"literal_with_REVERSE_SOLIDUS.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\\\\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\\", kind: Literal},
		},
	},
	"literal_with_REVERSE_SOLIDUS2.nq": {
		{
			input:     "<http://example.org/ns#s> <http://example.org/ns#p1> \"test-\\\\\" .",
			subject:   term{text: "http://example.org/ns#s", kind: IRI},
			predicate: term{text: "http://example.org/ns#p1", kind: IRI},
			object:    term{text: "test-\\", kind: Literal},
		},
	},
	"literal_with_REVERSE_SOLIDUS2.nt": {
		{
			input:     "<http://example.org/ns#s> <http://example.org/ns#p1> \"test-\\\\\" .",
			subject:   term{text: "http://example.org/ns#s", kind: IRI},
			predicate: term{text: "http://example.org/ns#p1", kind: IRI},
			object:    term{text: "test-\\", kind: Literal},
		},
	},
	"literal_with_UTF8_boundaries.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\u0080߿ࠀ\u0fffက쿿퀀\ud7ff\ue000�𐀀\U0003fffd\U00040000\U000ffffd\U00100000\U0010fffd\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\u0080߿ࠀ\u0fffက쿿퀀\ud7ff\ue000�𐀀\U0003fffd\U00040000\U000ffffd\U00100000\U0010fffd", kind: Literal},
		},
	},
	"literal_with_UTF8_boundaries.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\u0080߿ࠀ\u0fffက쿿퀀\ud7ff\ue000�𐀀\U0003fffd\U00040000\U000ffffd\U00100000\U0010fffd\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "\u0080߿ࠀ\u0fffက쿿퀀\ud7ff\ue000�𐀀\U0003fffd\U00040000\U000ffffd\U00100000\U0010fffd", kind: Literal},
		},
	},
	"literal_with_dquote.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\\\"y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x\"y", kind: Literal},
		},
	},
	"literal_with_dquote.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x\\\"y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x\"y", kind: Literal},
		},
	},
	"literal_with_numeric_escape4.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\u006F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
	},
	"literal_with_numeric_escape4.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\u006F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
	},
	"literal_with_numeric_escape8.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\U0000006F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
	},
	"literal_with_numeric_escape8.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"\\U0000006F\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
		},
	},
	"literal_with_squote.nq": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x'y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x'y", kind: Literal},
		},
	},
	"literal_with_squote.nt": {
		{
			input:     "<http://a.example/s> <http://a.example/p> \"x'y\" .",
			subject:   term{text: "http://a.example/s", kind: IRI},
			predicate: term{text: "http://a.example/p", kind: IRI},
			object:    term{text: "x'y", kind: Literal},
		},
	},
	"minimal_whitespace.nq": {
		{
			input:     "<http://example/s><http://example/p><http://example/o>.",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "<http://example/s><http://example/p>\"Alice\".",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "Alice", kind: Literal},
		},
		{
			input:     "<http://example/s><http://example/p>_:o.",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
		},
		{
			input:     "_:s<http://example/p><http://example/o>.",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "_:s<http://example/p>\"Alice\".",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "Alice", kind: Literal},
		},
		{
			input:     "_:s<http://example/p>_:bnode1.",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "bnode1", kind: Blank},
		},
	},
	"minimal_whitespace.nt": {
		{
			input:     "<http://example/s><http://example/p><http://example/o>.",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "<http://example/s><http://example/p>\"Alice\".",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "Alice", kind: Literal},
		},
		{
			input:     "<http://example/s><http://example/p>_:o.",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
		},
		{
			input:     "_:s<http://example/p><http://example/o>.",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
		{
			input:     "_:s<http://example/p>\"Alice\".",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "Alice", kind: Literal},
		},
		{
			input:     "_:s<http://example/p>_:bnode1.",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "bnode1", kind: Blank},
		},
	},
	"nq-syntax-bnode-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> _:g .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-bnode-02.nq": {
		{
			input:     "_:s <http://example/p> <http://example/o> _:g .",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-bnode-03.nq": {
		{
			input:     "<http://example/s> <http://example/p> _:o _:g .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-bnode-04.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\" _:g .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-bnode-05.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\"@en _:g .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "@en", kind: Literal},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-bnode-06.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\"^^<http://www.w3.org/2001/XMLSchema#string> _:g .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "http://www.w3.org/2001/XMLSchema#string", kind: Literal},
			label:     term{text: "g", kind: Blank},
		},
	},
	"nq-syntax-uri-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> <http://example/g> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nq-syntax-uri-02.nq": {
		{
			input:     "_:s <http://example/p> <http://example/o> <http://example/g> .",
			subject:   term{text: "s", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nq-syntax-uri-03.nq": {
		{
			input:     "<http://example/s> <http://example/p> _:o <http://example/g> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Blank},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nq-syntax-uri-04.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\" <http://example/g> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", kind: Literal},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nq-syntax-uri-05.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\"@en <http://example/g> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "@en", kind: Literal},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nq-syntax-uri-06.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"o\"^^<http://www.w3.org/2001/XMLSchema#string> <http://example/g> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "o", qual: "http://www.w3.org/2001/XMLSchema#string", kind: Literal},
			label:     term{text: "http://example/g", kind: IRI},
		},
	},
	"nt-syntax-bnode-01.nq": {
		{
			input:     "_:a  <http://example/p> <http://example/o> .",
			subject:   term{text: "a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-bnode-01.nt": {
		{
			input:     "_:a  <http://example/p> <http://example/o> .",
			subject:   term{text: "a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-bnode-02.nq": {
		{
			input:     "<http://example/s> <http://example/p> _:a .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a", kind: Blank},
		},
		{
			input:     "_:a  <http://example/p> <http://example/o> .",
			subject:   term{text: "a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-bnode-02.nt": {
		{
			input:     "<http://example/s> <http://example/p> _:a .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a", kind: Blank},
		},
		{
			input:     "_:a  <http://example/p> <http://example/o> .",
			subject:   term{text: "a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-bnode-03.nq": {
		{
			input:     "<http://example/s> <http://example/p> _:1a .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "1a", kind: Blank},
		},
		{
			input:     "_:1a  <http://example/p> <http://example/o> .",
			subject:   term{text: "1a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-bnode-03.nt": {
		{
			input:     "<http://example/s> <http://example/p> _:1a .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "1a", kind: Blank},
		},
		{
			input:     "_:1a  <http://example/p> <http://example/o> .",
			subject:   term{text: "1a", kind: Blank},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-datatypes-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"123\"^^<http://www.w3.org/2001/XMLSchema#byte> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "123", qual: "http://www.w3.org/2001/XMLSchema#byte", kind: Literal},
		},
	},
	"nt-syntax-datatypes-01.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"123\"^^<http://www.w3.org/2001/XMLSchema#byte> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "123", qual: "http://www.w3.org/2001/XMLSchema#byte", kind: Literal},
		},
	},
	"nt-syntax-datatypes-02.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"123\"^^<http://www.w3.org/2001/XMLSchema#string> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "123", qual: "http://www.w3.org/2001/XMLSchema#string", kind: Literal},
		},
	},
	"nt-syntax-datatypes-02.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"123\"^^<http://www.w3.org/2001/XMLSchema#string> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "123", qual: "http://www.w3.org/2001/XMLSchema#string", kind: Literal},
		},
	},
	"nt-syntax-str-esc-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\n\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a\n", kind: Literal},
		},
	},
	"nt-syntax-str-esc-01.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\n\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a\n", kind: Literal},
		},
	},
	"nt-syntax-str-esc-02.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\u0020b\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a b", kind: Literal},
		},
	},
	"nt-syntax-str-esc-02.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\u0020b\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a b", kind: Literal},
		},
	},
	"nt-syntax-str-esc-03.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\U00000020b\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a b", kind: Literal},
		},
	},
	"nt-syntax-str-esc-03.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"a\\U00000020b\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "a b", kind: Literal},
		},
	},
	"nt-syntax-string-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"string\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", kind: Literal},
		},
	},
	"nt-syntax-string-01.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"string\" .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", kind: Literal},
		},
	},
	"nt-syntax-string-02.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"string\"@en .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", qual: "@en", kind: Literal},
		},
	},
	"nt-syntax-string-02.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"string\"@en .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", qual: "@en", kind: Literal},
		},
	},
	"nt-syntax-string-03.nq": {
		{
			input:     "<http://example/s> <http://example/p> \"string\"@en-uk .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", qual: "@en-uk", kind: Literal},
		},
	},
	"nt-syntax-string-03.nt": {
		{
			input:     "<http://example/s> <http://example/p> \"string\"@en-uk .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "string", qual: "@en-uk", kind: Literal},
		},
	},
	"nt-syntax-subm-01.nq": {
		{
			input:     "<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource1", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "_:anon <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "anon", kind: Blank},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource2> <http://example.org/property> _:anon .",
			subject:   term{text: "http://example.org/resource2", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "anon", kind: Blank},
		},
		{
			input:     "<http://example.org/resource3> \t <http://example.org/property>\t <http://example.org/resource2> \t.",
			subject:   term{text: "http://example.org/resource3", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource4", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource5", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource6", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource7> <http://example.org/property> \"simple literal\" .",
			subject:   term{text: "http://example.org/resource7", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "simple literal", kind: Literal},
		},
		{
			input:     "<http://example.org/resource8> <http://example.org/property> \"backslash:\\\\\" .",
			subject:   term{text: "http://example.org/resource8", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "backslash:\\", kind: Literal},
		},
		{
			input:     "<http://example.org/resource9> <http://example.org/property> \"dquote:\\\"\" .",
			subject:   term{text: "http://example.org/resource9", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "dquote:\"", kind: Literal},
		},
		{
			input:     "<http://example.org/resource10> <http://example.org/property> \"newline:\\n\" .",
			subject:   term{text: "http://example.org/resource10", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "newline:\n", kind: Literal},
		},
		{
			input:     "<http://example.org/resource11> <http://example.org/property> \"return\\r\" .",
			subject:   term{text: "http://example.org/resource11", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "return\r", kind: Literal},
		},
		{
			input:     "<http://example.org/resource12> <http://example.org/property> \"tab:\\t\" .",
			subject:   term{text: "http://example.org/resource12", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "tab:\t", kind: Literal},
		},
		{
			input:     "<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2>.",
			subject:   term{text: "http://example.org/resource13", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource14> <http://example.org/property> \"x\".",
			subject:   term{text: "http://example.org/resource14", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "x", kind: Literal},
		},
		{
			input:     "<http://example.org/resource15> <http://example.org/property> _:anon.",
			subject:   term{text: "http://example.org/resource15", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "anon", kind: Blank},
		},
		{
			input:     "<http://example.org/resource16> <http://example.org/property> \"\\u00E9\" .",
			subject:   term{text: "http://example.org/resource16", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "é", kind: Literal},
		},
		{
			input:     "<http://example.org/resource17> <http://example.org/property> \"\\u20AC\" .",
			subject:   term{text: "http://example.org/resource17", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "€", kind: Literal},
		},
		{
			input:     "<http://example.org/resource21> <http://example.org/property> \"\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource21", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource22> <http://example.org/property> \" \"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource22", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: " ", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource23> <http://example.org/property> \"x\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource23", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "x", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource23> <http://example.org/property> \"\\\"\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource23", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "\"", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource24> <http://example.org/property> \"<a></a>\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource24", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "<a></a>", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource25> <http://example.org/property> \"a <b></b>\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource25", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a <b></b>", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource26> <http://example.org/property> \"a <b></b> c\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource26", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a <b></b> c", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource26> <http://example.org/property> \"a\\n<b></b>\\nc\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource26", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a\n<b></b>\nc", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource27> <http://example.org/property> \"chat\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource27", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource30> <http://example.org/property> \"chat\"@fr .",
			subject:   term{text: "http://example.org/resource30", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "@fr", kind: Literal},
		},
		{
			input:     "<http://example.org/resource31> <http://example.org/property> \"chat\"@en .",
			subject:   term{text: "http://example.org/resource31", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "@en", kind: Literal},
		},
		{
			input:     "<http://example.org/resource32> <http://example.org/property> \"abc\"^^<http://example.org/datatype1> .",
			subject:   term{text: "http://example.org/resource32", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "abc", qual: "http://example.org/datatype1", kind: Literal},
		},
	},
	"nt-syntax-subm-01.nt": {
		{
			input:     "<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource1", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "_:anon <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "anon", kind: Blank},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource2> <http://example.org/property> _:anon .",
			subject:   term{text: "http://example.org/resource2", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "anon", kind: Blank},
		},
		{
			input:     "<http://example.org/resource3> \t <http://example.org/property>\t <http://example.org/resource2> \t.",
			subject:   term{text: "http://example.org/resource3", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource4", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource5", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> .",
			subject:   term{text: "http://example.org/resource6", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource7> <http://example.org/property> \"simple literal\" .",
			subject:   term{text: "http://example.org/resource7", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "simple literal", kind: Literal},
		},
		{
			input:     "<http://example.org/resource8> <http://example.org/property> \"backslash:\\\\\" .",
			subject:   term{text: "http://example.org/resource8", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "backslash:\\", kind: Literal},
		},
		{
			input:     "<http://example.org/resource9> <http://example.org/property> \"dquote:\\\"\" .",
			subject:   term{text: "http://example.org/resource9", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "dquote:\"", kind: Literal},
		},
		{
			input:     "<http://example.org/resource10> <http://example.org/property> \"newline:\\n\" .",
			subject:   term{text: "http://example.org/resource10", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "newline:\n", kind: Literal},
		},
		{
			input:     "<http://example.org/resource11> <http://example.org/property> \"return\\r\" .",
			subject:   term{text: "http://example.org/resource11", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "return\r", kind: Literal},
		},
		{
			input:     "<http://example.org/resource12> <http://example.org/property> \"tab:\\t\" .",
			subject:   term{text: "http://example.org/resource12", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "tab:\t", kind: Literal},
		},
		{
			input:     "<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2>.",
			subject:   term{text: "http://example.org/resource13", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "http://example.org/resource2", kind: IRI},
		},
		{
			input:     "<http://example.org/resource14> <http://example.org/property> \"x\".",
			subject:   term{text: "http://example.org/resource14", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "x", kind: Literal},
		},
		{
			input:     "<http://example.org/resource15> <http://example.org/property> _:anon.",
			subject:   term{text: "http://example.org/resource15", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "anon", kind: Blank},
		},
		{
			input:     "<http://example.org/resource16> <http://example.org/property> \"\\u00E9\" .",
			subject:   term{text: "http://example.org/resource16", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "é", kind: Literal},
		},
		{
			input:     "<http://example.org/resource17> <http://example.org/property> \"\\u20AC\" .",
			subject:   term{text: "http://example.org/resource17", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "€", kind: Literal},
		},
		{
			input:     "<http://example.org/resource21> <http://example.org/property> \"\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource21", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource22> <http://example.org/property> \" \"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource22", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: " ", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource23> <http://example.org/property> \"x\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource23", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "x", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource23> <http://example.org/property> \"\\\"\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource23", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "\"", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource24> <http://example.org/property> \"<a></a>\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource24", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "<a></a>", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource25> <http://example.org/property> \"a <b></b>\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource25", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a <b></b>", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource26> <http://example.org/property> \"a <b></b> c\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource26", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a <b></b> c", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource26> <http://example.org/property> \"a\\n<b></b>\\nc\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource26", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "a\n<b></b>\nc", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource27> <http://example.org/property> \"chat\"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .",
			subject:   term{text: "http://example.org/resource27", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "http://www.w3.org/2000/01/rdf-schema#XMLLiteral", kind: Literal},
		},
		{
			input:     "<http://example.org/resource30> <http://example.org/property> \"chat\"@fr .",
			subject:   term{text: "http://example.org/resource30", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "@fr", kind: Literal},
		},
		{
			input:     "<http://example.org/resource31> <http://example.org/property> \"chat\"@en .",
			subject:   term{text: "http://example.org/resource31", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "chat", qual: "@en", kind: Literal},
		},
		{
			input:     "<http://example.org/resource32> <http://example.org/property> \"abc\"^^<http://example.org/datatype1> .",
			subject:   term{text: "http://example.org/resource32", kind: IRI},
			predicate: term{text: "http://example.org/property", kind: IRI},
			object:    term{text: "abc", qual: "http://example.org/datatype1", kind: Literal},
		},
	},
	"nt-syntax-uri-01.nq": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-01.nt": {
		{
			input:     "<http://example/s> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-02.nq": {
		{
			input:     "<http://example/\\u0053> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/S", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-02.nt": {
		{
			input:     "<http://example/\\u0053> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/S", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-03.nq": {
		{
			input:     "<http://example/\\U00000053> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/S", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-03.nt": {
		{
			input:     "<http://example/\\U00000053> <http://example/p> <http://example/o> .",
			subject:   term{text: "http://example/S", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "http://example/o", kind: IRI},
		},
	},
	"nt-syntax-uri-04.nq": {
		{
			input:     "<http://example/s> <http://example/p> <scheme:!$%25&'()*+,-./0123456789:/@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~?#> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "scheme:!$%25&'()*+,-./0123456789:/@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~?#", kind: IRI},
		},
	},
	"nt-syntax-uri-04.nt": {
		{
			input:     "<http://example/s> <http://example/p> <scheme:!$%25&'()*+,-./0123456789:/@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~?#> .",
			subject:   term{text: "http://example/s", kind: IRI},
			predicate: term{text: "http://example/p", kind: IRI},
			object:    term{text: "scheme:!$%25&'()*+,-./0123456789:/@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~?#", kind: IRI},
		},
	},

	// Empty valid syntax.
	"nt-syntax-file-01.nq": nil,
	"nt-syntax-file-01.nt": nil,
	"nt-syntax-file-02.nq": nil,
	"nt-syntax-file-02.nt": nil,
	"nt-syntax-file-03.nq": nil,
	"nt-syntax-file-03.nt": nil,

	// Invalid syntax.
	"nq-syntax-bad-literal-01.nq": nil,
	"nq-syntax-bad-literal-02.nq": nil,
	"nq-syntax-bad-literal-03.nq": nil,
	"nq-syntax-bad-quint-01.nq":   nil,
	"nq-syntax-bad-uri-01.nq":     nil,
	"nt-syntax-bad-base-01.nq":    nil,
	"nt-syntax-bad-base-01.nt":    nil,
	"nt-syntax-bad-esc-01.nq":     nil,
	"nt-syntax-bad-esc-01.nt":     nil,
	"nt-syntax-bad-esc-02.nq":     nil,
	"nt-syntax-bad-esc-02.nt":     nil,
	"nt-syntax-bad-esc-03.nq":     nil,
	"nt-syntax-bad-esc-03.nt":     nil,
	"nt-syntax-bad-lang-01.nq":    nil,
	"nt-syntax-bad-lang-01.nt":    nil,
	"nt-syntax-bad-num-01.nq":     nil,
	"nt-syntax-bad-num-01.nt":     nil,
	"nt-syntax-bad-num-02.nq":     nil,
	"nt-syntax-bad-num-02.nt":     nil,
	"nt-syntax-bad-num-03.nq":     nil,
	"nt-syntax-bad-num-03.nt":     nil,
	"nt-syntax-bad-prefix-01.nq":  nil,
	"nt-syntax-bad-prefix-01.nt":  nil,
	"nt-syntax-bad-string-01.nq":  nil,
	"nt-syntax-bad-string-01.nt":  nil,
	"nt-syntax-bad-string-02.nq":  nil,
	"nt-syntax-bad-string-02.nt":  nil,
	"nt-syntax-bad-string-03.nq":  nil,
	"nt-syntax-bad-string-03.nt":  nil,
	"nt-syntax-bad-string-04.nq":  nil,
	"nt-syntax-bad-string-04.nt":  nil,
	"nt-syntax-bad-string-05.nq":  nil,
	"nt-syntax-bad-string-05.nt":  nil,
	"nt-syntax-bad-string-06.nq":  nil,
	"nt-syntax-bad-string-06.nt":  nil,
	"nt-syntax-bad-string-07.nq":  nil,
	"nt-syntax-bad-string-07.nt":  nil,
	"nt-syntax-bad-struct-01.nq":  nil,
	"nt-syntax-bad-struct-01.nt":  nil,
	"nt-syntax-bad-struct-02.nq":  nil,
	"nt-syntax-bad-struct-02.nt":  nil,
	"nt-syntax-bad-uri-01.nq":     nil,
	"nt-syntax-bad-uri-01.nt":     nil,
	"nt-syntax-bad-uri-02.nq":     nil,
	"nt-syntax-bad-uri-02.nt":     nil,
	"nt-syntax-bad-uri-03.nq":     nil,
	"nt-syntax-bad-uri-03.nt":     nil,
	"nt-syntax-bad-uri-04.nq":     nil,
	"nt-syntax-bad-uri-04.nt":     nil,
	"nt-syntax-bad-uri-05.nq":     nil,
	"nt-syntax-bad-uri-05.nt":     nil,
	"nt-syntax-bad-uri-06.nq":     nil,
	"nt-syntax-bad-uri-06.nt":     nil,
	"nt-syntax-bad-uri-07.nq":     nil,
	"nt-syntax-bad-uri-07.nt":     nil,
	"nt-syntax-bad-uri-08.nq":     nil,
	"nt-syntax-bad-uri-08.nt":     nil,
	"nt-syntax-bad-uri-09.nq":     nil,
	"nt-syntax-bad-uri-09.nt":     nil,
}