aboutsummaryrefslogtreecommitdiff
path: root/rdfloader/parser2v3/parse_file_test.go
blob: f7348ef6527eab908caddf2f87fb46867a00ea03 (plain)
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
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later

package parser2v3

import (
	"bufio"
	"strings"
	"testing"

	gordfParser "github.com/spdx/gordf/rdfloader/parser"
	rdfloader2 "github.com/spdx/gordf/rdfloader/xmlreader"
	gordfWriter "github.com/spdx/gordf/rdfwriter"
	"github.com/spdx/tools-golang/spdx/common"
	"github.com/spdx/tools-golang/spdx/v2_3"
)

// content is the tags within the rdf:RDF tag
// pads the content with the enclosing rdf:RDF tag
func wrapIntoTemplate(content string) string {
	header := `<rdf:RDF
        xmlns:spdx="http://spdx.org/rdf/terms#"
        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82C3301#"
        xmlns:doap="http://usefulinc.com/ns/doap#"
        xmlns:j.0="http://www.w3.org/2009/pointers#"
        xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">`
	footer := `</rdf:RDF>`
	return header + content + footer
}

func parserFromBodyContent(content string) (*rdfParser2_3, error) {
	rdfContent := wrapIntoTemplate(content)
	xmlreader := rdfloader2.XMLReaderFromFileObject(bufio.NewReader(strings.NewReader(rdfContent)))
	rootBlock, err := xmlreader.Read()
	if err != nil {
		return nil, err
	}
	parser := gordfParser.New()
	err = parser.Parse(rootBlock)
	if err != nil {
		return nil, err
	}
	nodeToTriples := gordfWriter.GetNodeToTriples(parser.Triples)
	rdfParser := NewParser2_3(parser, nodeToTriples)
	return rdfParser, err
}

func Test_rdfParser2_3_getArtifactFromNode(t *testing.T) {
	// TestCase 1: artifactOf without project URI
	rdfParser, err := parserFromBodyContent(
		`<spdx:File>
			<spdx:artifactOf>
				<doap:Project>
					<doap:homepage>http://www.openjena.org/</doap:homepage>
					<doap:name>Jena</doap:name>
				</doap:Project>
			</spdx:artifactOf>
		</spdx:File>`)
	if err != nil {
		t.Errorf("unexpected error while parsing a valid example: %v", err)
	}
	artifactOfNode := gordfWriter.FilterTriples(rdfParser.gordfParserObj.Triples, nil, &SPDX_ARTIFACT_OF, nil)[0].Object
	artifact, err := rdfParser.getArtifactFromNode(artifactOfNode)
	if err != nil {
		t.Errorf("error parsing a valid artifactOf node: %v", err)
	}
	if artifact.Name != "Jena" {
		t.Errorf("expected name of artifact: %s, found: %s", "Jena", artifact.Name)
	}
	expectedHomePage := "http://www.openjena.org/"
	if artifact.HomePage != expectedHomePage {
		t.Errorf("wrong artifact homepage. Expected: %s, found: %s", expectedHomePage, artifact.HomePage)
	}
	if artifact.URI != "" {
		t.Errorf("wrong artifact URI. Expected: %s, found: %s", "", artifact.URI)
	}

	// TestCase 2: artifactOf with a Project URI
	rdfParser, err = parserFromBodyContent(
		`<spdx:File>
			<spdx:artifactOf>
				<doap:Project rdf:about="http://subversion.apache.org/doap.rdf">
					<doap:homepage>http://www.openjena.org/</doap:homepage>
					<doap:name>Jena</doap:name>
				</doap:Project>
			</spdx:artifactOf>
		</spdx:File>`)
	if err != nil {
		t.Errorf("unexpected error while parsing a valid example: %v", err)
	}
	artifactOfNode = gordfWriter.FilterTriples(rdfParser.gordfParserObj.Triples, nil, &SPDX_ARTIFACT_OF, nil)[0].Object
	artifact, err = rdfParser.getArtifactFromNode(artifactOfNode)
	if err != nil {
		t.Errorf("error parsing a valid artifactOf node: %v", err)
	}
	expectedURI := "http://subversion.apache.org/doap.rdf"
	if artifact.URI != expectedURI {
		t.Errorf("wrong artifact URI. Expected: %s, found: %s", expectedURI, artifact.URI)
	}

	// TestCase 3: artifactOf with unknown predicate
	rdfParser, err = parserFromBodyContent(
		`<spdx:File>
			<spdx:artifactOf>
				<doap:Project rdf:about="http://subversion.apache.org/doap.rdf">
					<doap:homepage>http://www.openjena.org/</doap:homepage>
					<doap:name>Jena</doap:name>
					<doap:invalidTag rdf:ID="invalid"/>
				</doap:Project>
			</spdx:artifactOf>
		</spdx:File>`)
	if err != nil {
		t.Errorf("unexpected error while parsing a valid example: %v", err)
	}
	artifactOfNode = gordfWriter.FilterTriples(rdfParser.gordfParserObj.Triples, nil, &SPDX_ARTIFACT_OF, nil)[0].Object
	_, err = rdfParser.getArtifactFromNode(artifactOfNode)
	if err == nil {
		t.Errorf("must've raised an error for an invalid predicate")
	}
}

func Test_rdfParser2_3_getFileTypeFromUri(t *testing.T) {
	rdfParser, _ := parserFromBodyContent(``)

	// TestCase 1: Valid fileType URI:
	fileTypeURI := "http://spdx.org/rdf/terms#fileType_source"
	fileType, err := rdfParser.getFileTypeFromUri(fileTypeURI)
	if err != nil {
		t.Errorf("error in a valid example: %v", err)
	}
	if fileType != "source" {
		t.Errorf("wrong fileType. expected: %s, found: %s", "source", fileType)
	}

	// TestCase 2: Invalid fileType URI format.
	fileTypeURI = "http://spdx.org/rdf/terms#source"
	fileType, err = rdfParser.getFileTypeFromUri(fileTypeURI)
	if err == nil {
		t.Error("should've raised an error for invalid fileType")
	}
}

func Test_rdfParser2_3_setUnpackagedFiles(t *testing.T) {
	// unpackaged files are the files which are not associated with any package
	// file associated with a package sets parser.assocWithPackage[fileID] to true.
	rdfParser, _ := parserFromBodyContent(``)
	file1 := &v2_3.File{FileSPDXIdentifier: common.ElementID("file1")}
	file2 := &v2_3.File{FileSPDXIdentifier: common.ElementID("file2")}
	file3 := &v2_3.File{FileSPDXIdentifier: common.ElementID("file3")}

	// setting files to the document as if it were to be set when it was parsed using triples.
	rdfParser.files[file1.FileSPDXIdentifier] = file1
	rdfParser.files[file2.FileSPDXIdentifier] = file2
	rdfParser.files[file3.FileSPDXIdentifier] = file3

	// assuming file1 is associated with a package
	rdfParser.assocWithPackage[file1.FileSPDXIdentifier] = true

	rdfParser.setUnpackagedFiles()

	// after setting unpackaged files, parser.doc.Files must've file2 and file3
	if n := len(rdfParser.doc.Files); n != 2 {
		t.Errorf("unpackage files should've had 2 files, found %d files", n)
	}

	// checking if the unpackagedFiles contain only file2 & file3.
	for _, file := range rdfParser.doc.Files {
		switch string(file.FileSPDXIdentifier) {
		case "file2", "file3":
			continue
		default:
			t.Errorf("unexpected file with id %s found in unpackaged files", file.FileSPDXIdentifier)
		}
	}
}

func Test_setFileIdentifier(t *testing.T) {
	file := &v2_3.File{}

	// TestCase 1: valid example
	err := setFileIdentifier("http://spdx.org/documents/spdx-toolsv2.1.7-SNAPSHOT#SPDXRef-129", file)
	if err != nil {
		t.Errorf("unexpected error: %v", err)
	}
	if file.FileSPDXIdentifier != "129" {
		t.Errorf("expected %s, found: %s", "129", file.FileSPDXIdentifier)
	}

	// TestCase 2: invalid example
	err = setFileIdentifier("http://spdx.org/documents/spdx-toolsv2.1.7-SNAPSHOT#129", file)
	if err == nil {
		t.Errorf("should've raised an error for an invalid example")
	}
}

func Test_rdfParser2_3_setFileChecksumFromNode(t *testing.T) {
	// TestCase 1: md5 checksum
	parser, _ := parserFromBodyContent(` 
		<spdx:Checksum>
			<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_md5" />
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode := gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file := &v2_3.File{}
	err := parser.setFileChecksumFromNode(file, checksumNode)
	if err != nil {
		t.Errorf("error parsing a valid checksum node")
	}
	checksumValue := "d2356e0fe1c0b85285d83c6b2ad51b5f"
	for _, checksum := range file.Checksums {
		switch checksum.Algorithm {
		case common.SHA1:
			if checksum.Value != "" {
				t.Errorf("incorrectly set sha1, should've been empty")
			}
		case common.SHA256:
			if checksum.Value != "" {
				t.Errorf("incorrectly set sha256, should've been empty")
			}
		case common.MD5:
			if checksum.Value != checksumValue {
				t.Errorf("wrong checksum value for md5. Expected: %s, found: %s", checksumValue, checksum.Value)
			}
		}
	}

	// TestCase 2: valid sha1 checksum
	parser, _ = parserFromBodyContent(` 
		<spdx:Checksum>
			<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_sha1" />
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file = &v2_3.File{}
	err = parser.setFileChecksumFromNode(file, checksumNode)
	if err != nil {
		t.Errorf("error parsing a valid checksum node")
	}
	for _, checksum := range file.Checksums {
		switch checksum.Algorithm {
		case common.SHA1:
			if checksum.Value != checksumValue {
				t.Errorf("wrong checksum value for sha1. Expected: %s, found: %s", checksumValue, checksum.Value)
			}
		case common.SHA256:
			if checksum.Value != "" {
				t.Errorf("incorrectly set sha256, should've been empty")
			}
		case common.MD5:
			if checksum.Value != checksumValue {
				t.Errorf("incorrectly set md5, should've been empty")
			}
		}
	}

	// TestCase 3: valid sha256 checksum
	parser, _ = parserFromBodyContent(` 
		<spdx:Checksum>
			<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_sha256" />
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file = &v2_3.File{}
	err = parser.setFileChecksumFromNode(file, checksumNode)
	if err != nil {
		t.Errorf("error parsing a valid checksum node")
	}
	for _, checksum := range file.Checksums {
		switch checksum.Algorithm {
		case common.SHA1:
			if checksum.Value != checksumValue {
				t.Errorf("incorrectly set sha1, should've been empty")
			}
		case common.SHA256:
			if checksum.Value != checksumValue {
				t.Errorf("wrong checksum value for sha256. Expected: %s, found: %s", checksumValue, checksum.Value)
			}
		case common.MD5:
			if checksum.Value != checksumValue {
				t.Errorf("incorrectly set md5, should've been empty")
			}
		}
	}

	// TestCase 4: checksum node without one of the mandatory attributes
	parser, _ = parserFromBodyContent(` 
		<spdx:Checksum>
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file = &v2_3.File{}
	err = parser.setFileChecksumFromNode(file, checksumNode)
	if err == nil {
		t.Errorf("should've raised an error parsing an invalid checksum node")
	}

	// TestCase 5: invalid checksum algorithm
	parser, _ = parserFromBodyContent(` 
		<spdx:Checksum>
			<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_md43" />
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file = &v2_3.File{}
	err = parser.setFileChecksumFromNode(file, checksumNode)
	if err == nil {
		t.Errorf("should've raised an error parsing an invalid checksum node")
	}

	// TestCase 6: valid checksum algorithm which is invalid for file (like md4, md6, sha384, etc.)
	parser, _ = parserFromBodyContent(` 
		<spdx:Checksum>
			<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_sha2000" />
		    <spdx:checksumValue>d2356e0fe1c0b85285d83c6b2ad51b5f</spdx:checksumValue>
		</spdx:Checksum>
    `)
	checksumNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_CHECKSUM_CAPITALIZED)[0].Subject
	file = &v2_3.File{}
	err = parser.setFileChecksumFromNode(file, checksumNode)
	if err == nil {
		t.Errorf("should've raised an error parsing an invalid checksum algorithm for a file")
	}
}

func Test_rdfParser2_3_getFileFromNode(t *testing.T) {
	// TestCase 1: file with invalid id
	parser, _ := parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gzspdx.rdf#item177"/>
	`)
	fileNode := gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err := parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid file ID")
	}

	// TestCase 2: invalid fileType
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:fileType rdf:resource="http://spdx.org/rdf/terms#source"/>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid fileType")
	}

	// TestCase 3: invalid file checksum
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:checksum>
				<spdx:Checksum>
					<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_sha2000" />
					<spdx:checksumValue>0a3a0e1ab72b7c132f5021c538a7a3ea6d539bcd</spdx:checksumValue>
				</spdx:Checksum>
			</spdx:checksum>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid checksum")
	}

	// TestCase 4: invalid license concluded
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:licenseConcluded rdf:resource="http://spdx.org/rdf/terms#invalid_license" />
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid license Concluded")
	}

	// TestCase 5: invalid artifactOf attribute
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:artifactOf>
				<doap:Project>
					<doap:unknown_tag />
					<doap:name>Jena</doap:name>
				</doap:Project>
			</spdx:artifactOf>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid artifactOf predicate")
	}

	// TestCase 6: invalid file dependency
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:fileDependency rdf:resource="http://spdx.org/spdxdocs/spdx-example#CommonsLangSrc"/>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid fileDependency")
	}

	// TestCase 7: invalid annotation with unknown predicate
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:annotation>
				<spdx:Annotation>
					<spdx:unknownAttribute />
				</spdx:Annotation>
			</spdx:annotation>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid annotation predicate")
	}

	// TestCase 8: invalid relationship
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:relationship>
				<spdx:Relationship>
					<spdx:relationshipType rdf:resource="http://spdx.org/rdf/terms#dynamicLink"/>
				</spdx:Relationship>
			</spdx:relationship>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Errorf("should've raised an error stating invalid relationship Type")
	}

	// TestCase 8: unknown predicate
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:unknown />
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Error("should've raised an error stating invalid predicate for a file")
	}

	// TestCase 9: invalid licenseInfoInFile.
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:licenseInfoInFile rdf:resource="http://spdx.org/licenses/DC0-1.0" />
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	_, err = parser.getFileFromNode(fileNode)
	if err == nil {
		t.Error("should've raised an error stating invalid licenseInfoInFile for a file")
	}

	// TestCase 10: Splitting of File definition into parents of different tags mustn't create new file objects.
	fileDefinitions := []string{
		`<spdx:Package rdf:about="#SPDXRef-Package1">
			<spdx:hasFile>
				<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
					<spdx:fileName>time-1.9/ChangeLog</spdx:fileName>
					<spdx:fileType rdf:resource="http://spdx.org/rdf/terms#fileType_source"/>
				</spdx:File>
			</spdx:hasFile>
		</spdx:Package>`,
		`<spdx:Package rdf:about="#SPDXRef-Package2">
			<spdx:hasFile>
				<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
					<spdx:licenseConcluded rdf:resource="http://spdx.org/rdf/terms#noassertion" />
					<spdx:licenseInfoInFile rdf:resource="http://spdx.org/rdf/terms#NOASSERTION" />
				</spdx:File>
			</spdx:hasFile>
		</spdx:Package>`,
	}
	parser, _ = parserFromBodyContent(strings.Join(fileDefinitions, ""))

	var file *v2_3.File
	packageTypeTriples := gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_PACKAGE)
	for _, typeTriple := range packageTypeTriples {
		pkg, err := parser.getPackageFromNode(typeTriple.Subject)
		if err != nil {
			t.Errorf("unexpected error parsing a valid package: %v", err)
		}
		if n := len(pkg.Files); n != 1 {
			t.Errorf("expected package to contain exactly 1 file. Found %d files", n)
		}
		for _, file = range pkg.Files {
		}
	}

	// checking if all the attributes that spanned over a several tags are set in the same variable.
	expectedFileName := "time-1.9/ChangeLog"
	if file.FileName != expectedFileName {
		t.Errorf("expected %s, found %s", expectedFileName, file.FileName)
	}
	expectedLicenseConcluded := "NOASSERTION"
	if file.LicenseConcluded != expectedLicenseConcluded {
		t.Errorf("expected %s, found %s", expectedLicenseConcluded, file.LicenseConcluded)
	}
	expectedFileType := "source"
	if file.FileTypes[0] != expectedFileType {
		t.Errorf("expected %s, found %s", expectedFileType, file.FileTypes)
	}
	expectedLicenseInfoInFile := "NOASSERTION"
	if file.LicenseInfoInFiles[0] != expectedLicenseInfoInFile {
		t.Errorf("expected %s, found %s", expectedLicenseInfoInFile, file.LicenseInfoInFiles[0])
	}

	// TestCase 12: checking if recursive dependencies are resolved.
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="#SPDXRef-ParentFile">
			<spdx:fileType rdf:resource="http://spdx.org/rdf/terms#fileType_source"/>
			<spdx:fileDependency>
				<spdx:File rdf:about="#SPDXRef-ChildFile">
					<spdx:fileDependency>
						<spdx:File rdf:about="#SPDXRef-ParentFile">
							<spdx:fileName>ParentFile</spdx:fileName>
						</spdx:File>
					</spdx:fileDependency>
				</spdx:File>
			</spdx:fileDependency>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	file, err = parser.getFileFromNode(fileNode)

	// TestCase 11: all valid attribute and it's values.
	parser, _ = parserFromBodyContent(`
		<spdx:File rdf:about="http://anupam-VirtualBox/repo/SPDX2_time-1.9.tar.gz_1535120734-spdx.rdf#SPDXRef-item177">
			<spdx:fileName>time-1.9/ChangeLog</spdx:fileName>
			<spdx:name/>
			<spdx:fileType rdf:resource="http://spdx.org/rdf/terms#fileType_source"/>
			<spdx:checksum>
				<spdx:Checksum>
					<spdx:algorithm rdf:resource="http://spdx.org/rdf/terms#checksumAlgorithm_sha1" />
					<spdx:checksumValue>0a3a0e1ab72b7c132f5021c538a7a3ea6d539bcd</spdx:checksumValue>
				</spdx:Checksum>
			</spdx:checksum>
			<spdx:licenseConcluded rdf:resource="http://spdx.org/rdf/terms#noassertion" />
			<spdx:licenseInfoInFile rdf:resource="http://spdx.org/rdf/terms#NOASSERTION" />
			<spdx:licenseComments>no comments</spdx:licenseComments>
			<spdx:copyrightText>from spdx file</spdx:copyrightText>
			<spdx:artifactOf>
				<doap:Project>
					<doap:homepage>http://www.openjena.org/</doap:homepage>
					<doap:name>Jena</doap:name>
				</doap:Project>
			</spdx:artifactOf>
			<rdfs:comment>no comments</rdfs:comment>
			<spdx:noticeText rdf:resource="http://spdx.org/rdf/terms#noassertion"/>
			<spdx:fileContributor>Some Organization</spdx:fileContributor>
			<spdx:fileDependency rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82C3301#SPDXRef-CommonsLangSrc"/>
			<spdx:attributionText>attribution text</spdx:attributionText>
			<spdx:annotation>
				<spdx:Annotation>
					<spdx:annotationDate>2011-01-29T18:30:22Z</spdx:annotationDate>
					<rdfs:comment>File level annotation copied from a spdx document</rdfs:comment>
					<spdx:annotator>Person: File Commenter</spdx:annotator>
					<spdx:annotationType rdf:resource="http://spdx.org/rdf/terms#annotationType_other"/>
				</spdx:Annotation>
			</spdx:annotation>
			<spdx:relationship>
				<spdx:Relationship>
					<spdx:relationshipType rdf:resource="http://spdx.org/rdf/terms#relationshipType_contains"/>
					<spdx:relatedSpdxElement rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82C3301#SPDXRef-Package"/>
				</spdx:Relationship>
			</spdx:relationship>
		</spdx:File>
	`)
	fileNode = gordfWriter.FilterTriples(parser.gordfParserObj.Triples, nil, &RDF_TYPE, &SPDX_FILE)[0].Subject
	file, err = parser.getFileFromNode(fileNode)
	if err != nil {
		t.Errorf("unexpected error parsing a valid file: %v", err)
	}

	// checking each and every attribute of the obtained file.

	expectedFileName = "time-1.9/ChangeLog"
	if file.FileName != expectedFileName {
		t.Errorf("expected %s, found %s", expectedFileName, file.FileName)
	}

	if len(file.FileTypes) != 1 {
		t.Errorf("given file should have 1 fileType attribute. found %d", len(file.FileTypes))
	}
	expectedFileType = "source"
	if file.FileTypes[0] != expectedFileType {
		t.Errorf("expected %s, found %s", expectedFileType, file.FileTypes)
	}

	expectedChecksum := "0a3a0e1ab72b7c132f5021c538a7a3ea6d539bcd"

	for _, checksum := range file.Checksums {
		switch checksum.Algorithm {
		case common.SHA1:
			if checksum.Value != expectedChecksum {
				t.Errorf("expected %s, found %s", expectedChecksum, checksum.Value)
			}
		}
	}

	expectedLicenseConcluded = "NOASSERTION"
	if file.LicenseConcluded != expectedLicenseConcluded {
		t.Errorf("expected %s, found %s", expectedLicenseConcluded, file.LicenseConcluded)
	}

	if len(file.LicenseInfoInFiles) != 1 {
		t.Errorf("given file should have 1 licenseInfoInFile attribute. found %d", len(file.LicenseInfoInFiles))
	}
	expectedLicenseInfoInFile = "NOASSERTION"
	if file.LicenseInfoInFiles[0] != expectedLicenseInfoInFile {
		t.Errorf("expected %s, found %s", expectedLicenseInfoInFile, file.LicenseInfoInFiles[0])
	}

	expectedLicenseComments := "no comments"
	if file.LicenseComments != expectedLicenseComments {
		t.Errorf("expected %s, found %s", expectedLicenseComments, file.LicenseComments)
	}

	expectedCopyrightText := "from spdx file"
	if file.FileCopyrightText != expectedCopyrightText {
		t.Errorf("expected %s, found %s", expectedCopyrightText, file.FileCopyrightText)
	}

	if n := len(file.ArtifactOfProjects); n != 1 {
		t.Errorf("given file should have 1 artifactOfProjects attribute. found %d", n)
	}
	artifactOf := file.ArtifactOfProjects[0]
	expectedHomePage := "http://www.openjena.org/"
	if artifactOf.HomePage != expectedHomePage {
		t.Errorf("expected %s, found %s", expectedHomePage, artifactOf.HomePage)
	}
	if artifactOf.Name != "Jena" {
		t.Errorf("expected %s, found %s", "Jena", artifactOf.Name)
	}
	if artifactOf.URI != "" {
		t.Errorf("expected artifactOf uri to be empty, found %s", artifactOf.URI)
	}

	expectedFileComment := "no comments"
	if file.FileComment != expectedFileComment {
		t.Errorf("expected %s, found %s", expectedFileName, file.FileComment)
	}

	expectedNoticeText := "NOASSERTION"
	if file.FileNotice != expectedNoticeText {
		t.Errorf("expected %s, found %s", expectedNoticeText, file.FileNotice)
	}

	if n := len(file.FileContributors); n != 1 {
		t.Errorf("given file should have 1 fileContributor. found %d", n)
	}
	expectedFileContributor := "Some Organization"
	if file.FileContributors[0] != expectedFileContributor {
		t.Errorf("expected %s, found %s", expectedFileContributor, file.FileContributors)
	}

	if n := len(file.FileDependencies); n != 1 {
		t.Errorf("given file should have 1 fileDependencies. found %d", n)
	}
	expectedFileDependency := "CommonsLangSrc"
	if file.FileDependencies[0] != expectedFileDependency {
		t.Errorf("expected %s, found %s", expectedFileDependency, file.FileDependencies[0])
	}

	if n := len(file.FileAttributionTexts); n != 1 {
		t.Errorf("given file should have 1 attributionText. found %d", n)
	}
	expectedAttributionText := "attribution text"
	if file.FileAttributionTexts[0] != expectedAttributionText {
		t.Errorf("expected %s, found %s", expectedAttributionText, file.FileAttributionTexts[0])
	}

	if n := len(parser.doc.Annotations); n != 1 {
		t.Errorf("doc should've had 1 annotation. found %d", n)
	}
	ann := parser.doc.Annotations[0]
	expectedAnnDate := "2011-01-29T18:30:22Z"
	if ann.AnnotationDate != expectedAnnDate {
		t.Errorf("expected %s, found %s", expectedAnnDate, ann.AnnotationDate)
	}
	expectedAnnComment := "File level annotation copied from a spdx document"
	if ann.AnnotationComment != expectedAnnComment {
		t.Errorf("expected %s, found %s", expectedAnnComment, ann.AnnotationComment)
	}
	expectedAnnotationType := "OTHER"
	if ann.AnnotationType != expectedAnnotationType {
		t.Errorf("expected %s, found %s", expectedAnnotationType, ann.AnnotationType)
	}
	expectedAnnotator := "File Commenter"
	if ann.Annotator.Annotator != expectedAnnotator {
		t.Errorf("expected %s, found %s", expectedAnnotator, ann.Annotator)
	}
	expectedAnnotatorType := "Person"
	if ann.AnnotationType != expectedAnnotationType {
		t.Errorf("expected %s, found %s", expectedAnnotatorType, ann.Annotator.AnnotatorType)
	}

	if n := len(parser.doc.Relationships); n != 1 {
		t.Errorf("doc should've had 1 relation. found %d", n)
	}
	reln := parser.doc.Relationships[0]
	expectedRefAEID := "item177"
	if reln.RefA.DocumentRefID != "" {
		t.Errorf("expected refA.DocumentRefID to be empty, found %s", reln.RefA.DocumentRefID)
	}
	if string(reln.RefA.ElementRefID) != expectedRefAEID {
		t.Errorf("expected %s, found %s", expectedRefAEID, reln.RefA.ElementRefID)
	}
	expectedRefBEID := "Package"
	if reln.RefB.DocumentRefID != "" {
		t.Errorf("expected refB.DocumentRefID to be empty, found %s", reln.RefB.DocumentRefID)
	}
	if string(reln.RefB.ElementRefID) != expectedRefBEID {
		t.Errorf("expected %s, found %s", expectedRefBEID, reln.RefB.ElementRefID)
	}
	expectedRelationType := "contains"
	if reln.Relationship != expectedRelationType {
		t.Errorf("expected %s, found %s", expectedRefBEID, reln.RefB.ElementRefID)
	}
	if reln.RelationshipComment != "" {
		t.Errorf("expected relationship comment to be empty, found %s", reln.RelationshipComment)
	}
}

func Test_getNoticeTextFromNode(t *testing.T) {
	// TestCase 1: SPDX_NOASSERTION_SMALL must return NOASSERTION
	output := getNoticeTextFromNode(&gordfParser.Node{
		NodeType: gordfParser.IRI,
		ID:       SPDX_NOASSERTION_SMALL,
	})
	if strings.ToUpper(output) != "NOASSERTION" {
		t.Errorf("expected NOASSERTION, found %s", strings.ToUpper(output))
	}

	// TestCase 2: SPDX_NOASSERTION_CAPS must return NOASSERTION
	output = getNoticeTextFromNode(&gordfParser.Node{
		NodeType: gordfParser.IRI,
		ID:       SPDX_NOASSERTION_CAPS,
	})
	if strings.ToUpper(output) != "NOASSERTION" {
		t.Errorf("expected NOASSERTION, found %s", strings.ToUpper(output))
	}

	// TestCase 3: not a NOASSERTION must return the field verbatim
	// TestCase 1: SPDX_NOASSERTION_SMALL must return NOASSERTION
	output = getNoticeTextFromNode(&gordfParser.Node{
		NodeType: gordfParser.IRI,
		ID:       "text",
	})
	if output != "text" {
		t.Errorf("expected text, found %s", output)
	}
}