File: parser.rs

package info (click to toggle)
oxigraph 0.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,760 kB
  • sloc: python: 1,940; cpp: 158; sh: 145; makefile: 42
file content (651 lines) | stat: -rw-r--r-- 42,769 bytes parent folder | download | duplicates (4)
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
#![cfg(test)]

use anyhow::Result;
use oxigraph_testsuite::check_testsuite;

#[test]
#[ignore]
fn rdf11_n_triples_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf11/rdf-n-triples/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_n_triples_syntax_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-n-triples/syntax/manifest.ttl",
        &[],
    )
}
#[cfg(not(windows))] // Tests don't like git auto "\r\n" on Windows
#[test]
#[ignore]
fn rdf12_n_triples_c14n_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-n-triples/c14n/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf11_n_quads_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf11/rdf-n-quads/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_n_quads_syntax_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-n-quads/syntax/manifest.ttl",
        &[],
    )
}

#[cfg(not(windows))] // Tests don't like git auto "\r\n" on Windows
#[test]
#[ignore]
fn rdf12_n_quads_c14n_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-n-quads/c14n/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf11_turtle_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf11/rdf-turtle/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_turtle_syntax_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-turtle/syntax/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_turtle_eval_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-turtle/eval/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf11_trig_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf11/rdf-trig/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_trig_syntax_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-trig/syntax/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf12_trig_eval_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf12/rdf-trig/eval/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn rdf11_xml_w3c_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/rdf-tests/rdf/rdf11/rdf-xml/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn n3_parser_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/N3/tests/N3Tests/manifest-parser.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn n3_extended_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl",
        &[],
    )
}

#[cfg(not(windows))] // Tests don't like git auto "\r\n" on Windows
#[test]
#[ignore]
fn n3_turtle_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl",
        &[],
    )
}

#[test]
#[ignore]
fn jsonld_to_rdf_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/json-ld-api/tests/toRdf-manifest.jsonld",
        &[
            // relative IRI resolution discrepancies
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091",
            // Weird @base IRI support
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli12",
            // expandContext
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077",
            // produceGeneralizedRdf
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075",
            // non-normative - rdfDirection
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12",
            // scoped context
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc036",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc037",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc038",
            // @graph @container
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108",
            // @nest
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06",
            // @included
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09",
            // @container @id
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011",
            // @container @type
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020",
            // @container @ŋraph @index
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014",
            // @container @graph @id
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016",
            // @nest
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008",
            // @container @index
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11",
            // @protected
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr43",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01",
            // @propagate
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02",
            // useJCS
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23",
            // specVersion json-ld-1.0
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24",
            "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32",
        ],
    )
}

#[test]
#[ignore]
fn jsonld_to_rdf_streaming_testsuite() -> Result<()> {
    check_testsuite(
        "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest.jsonld",
        &[
            // We do not allow root @graph followed with other keys
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv017",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv019",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv021",
            // @context in @context (JSON-LD 1.1)
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv006",
            // relative IRI resolution discrepancies
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0122",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0123",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te062",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te091",
            // expandContext option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te077",
            // normative option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi12",
            // produceGeneralizedRdf option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0118",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te068",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te075",
            // rdfDirection option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi12",
            // specVersion option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0118",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0124",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0125",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc001",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc002",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc003",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc004",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc005",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc006",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc007",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc008",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc009",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc010",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc011",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc012",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc013",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc014",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc015",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc016",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc017",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc018",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc019",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc020",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc021",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc022",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc023",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc024",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc025",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc026",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc027",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc028",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc030",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc031",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc032",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc033",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc034",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc035",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi12",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te014",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te026",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te038",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te071",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te079",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te080",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te081",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te082",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te083",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te084",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te085",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te086",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te087",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te092",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te093",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te094",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te095",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te096",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te097",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te098",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te099",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te100",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te101",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te102",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te103",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te104",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te105",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te106",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te107",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te108",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te110",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te111",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te112",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te114",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te115",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te116",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te117",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te118",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te119",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te120",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te121",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te122",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te123",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te126",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te127",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te128",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te129",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te130",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter53",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tec01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tec02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tem01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tep03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter24",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter32",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter43",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter44",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter48",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter49",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm001",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm002",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm003",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm004",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm005",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm006",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm007",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm008",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm009",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm010",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm011",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm012",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm013",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm014",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm015",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm016",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm017",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm018",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm019",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm020",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn001",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn002",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn003",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn004",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn005",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn006",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn007",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn008",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp001",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp002",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp003",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp004",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr12",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr13",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr14",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr15",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr16",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr17",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr18",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr19",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr20",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr21",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr22",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr23",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr24",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr25",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr26",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr27",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr28",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr29",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr30",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr31",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr32",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr33",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr34",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr35",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr36",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr37",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr38",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr39",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr40",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#trt01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso12",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso13",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ttn02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf07",
            // useJCS option
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs01",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs02",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs03",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs04",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs05",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs06",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs07",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs08",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs09",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs10",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs11",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs12",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs13",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs14",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs15",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs16",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs17",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs18",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs19",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs20",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs21",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs22",
            "https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs23",
        ],
    )
}