aboutsummaryrefslogtreecommitdiff
path: root/reporter/reporter_test.go
diff options
context:
space:
mode:
authorSteve Winslow <steve@swinslow.net>2020-06-14 15:56:47 -0400
committerSteve Winslow <steve@swinslow.net>2020-06-14 15:56:47 -0400
commit1e75edca9522aa82d1f269929d907209f93b3575 (patch)
tree15548b332d15f3c118997f05ee72ffc3440a821b /reporter/reporter_test.go
parentc7239bdc744217f39616839f6bb6d3453a6d2307 (diff)
downloadspdx-tools-1e75edca9522aa82d1f269929d907209f93b3575.tar.gz
Add reporter and tests for 2.2
Signed-off-by: Steve Winslow <steve@swinslow.net>
Diffstat (limited to 'reporter/reporter_test.go')
-rw-r--r--reporter/reporter_test.go146
1 files changed, 135 insertions, 11 deletions
diff --git a/reporter/reporter_test.go b/reporter/reporter_test.go
index c0d7940..9de377e 100644
--- a/reporter/reporter_test.go
+++ b/reporter/reporter_test.go
@@ -9,8 +9,8 @@ import (
"github.com/spdx/tools-golang/spdx"
)
-// ===== Reporter top-level function tests =====
-func TestReporterCanMakeReportFromPackage(t *testing.T) {
+// ===== 2.1 Reporter top-level function tests =====
+func Test2_1ReporterCanMakeReportFromPackage(t *testing.T) {
pkg := &spdx.Package2_1{
FilesAnalyzed: true,
Files: map[spdx.ElementID]*spdx.File2_1{
@@ -41,7 +41,7 @@ func TestReporterCanMakeReportFromPackage(t *testing.T) {
// render as buffer of bytes
var got bytes.Buffer
- err := Generate(pkg, &got)
+ err := Generate2_1(pkg, &got)
if err != nil {
t.Errorf("Expected nil error, got %v", err)
}
@@ -53,22 +53,22 @@ func TestReporterCanMakeReportFromPackage(t *testing.T) {
}
}
-func TestReporterReturnsErrorIfPackageFilesNotAnalyzed(t *testing.T) {
+func Test2_1ReporterReturnsErrorIfPackageFilesNotAnalyzed(t *testing.T) {
pkg := &spdx.Package2_1{
FilesAnalyzed: false,
}
// render as buffer of bytes
var got bytes.Buffer
- err := Generate(pkg, &got)
+ err := Generate2_1(pkg, &got)
if err == nil {
t.Errorf("Expected non-nil error, got nil")
}
}
-// ===== Utility functions =====
+// ===== 2.1 Utility functions =====
-func TestCanGetCountsOfLicenses(t *testing.T) {
+func Test2_1CanGetCountsOfLicenses(t *testing.T) {
pkg := &spdx.Package2_1{
FilesAnalyzed: true,
Files: map[spdx.ElementID]*spdx.File2_1{
@@ -87,7 +87,7 @@ func TestCanGetCountsOfLicenses(t *testing.T) {
},
}
- totalFound, totalNotFound, foundCounts := countLicenses(pkg)
+ totalFound, totalNotFound, foundCounts := countLicenses2_1(pkg)
if totalFound != 9 {
t.Errorf("expected %v, got %v", 9, totalFound)
}
@@ -108,8 +108,8 @@ func TestCanGetCountsOfLicenses(t *testing.T) {
}
}
-func TestNilPackageReturnsZeroCountsOfLicenses(t *testing.T) {
- totalFound, totalNotFound, foundCounts := countLicenses(nil)
+func Test2_1NilPackageReturnsZeroCountsOfLicenses(t *testing.T) {
+ totalFound, totalNotFound, foundCounts := countLicenses2_1(nil)
if totalFound != 0 {
t.Errorf("expected %v, got %v", 0, totalFound)
}
@@ -121,7 +121,131 @@ func TestNilPackageReturnsZeroCountsOfLicenses(t *testing.T) {
}
pkg := &spdx.Package2_1{}
- totalFound, totalNotFound, foundCounts = countLicenses(pkg)
+ totalFound, totalNotFound, foundCounts = countLicenses2_1(pkg)
+ if totalFound != 0 {
+ t.Errorf("expected %v, got %v", 0, totalFound)
+ }
+ if totalNotFound != 0 {
+ t.Errorf("expected %v, got %v", 0, totalNotFound)
+ }
+ if len(foundCounts) != 0 {
+ t.Fatalf("expected %v, got %v", 0, len(foundCounts))
+ }
+}
+
+// ===== 2.2 Reporter top-level function tests =====
+func Test2_2ReporterCanMakeReportFromPackage(t *testing.T) {
+ pkg := &spdx.Package2_2{
+ FilesAnalyzed: true,
+ Files: map[spdx.ElementID]*spdx.File2_2{
+ spdx.ElementID("File0"): &spdx.File2_2{FileSPDXIdentifier: "File0", LicenseConcluded: "MIT"},
+ spdx.ElementID("File1"): &spdx.File2_2{FileSPDXIdentifier: "File1", LicenseConcluded: "NOASSERTION"},
+ spdx.ElementID("File2"): &spdx.File2_2{FileSPDXIdentifier: "File2", LicenseConcluded: "MIT"},
+ spdx.ElementID("File3"): &spdx.File2_2{FileSPDXIdentifier: "File3", LicenseConcluded: "MIT"},
+ spdx.ElementID("File4"): &spdx.File2_2{FileSPDXIdentifier: "File4", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File5"): &spdx.File2_2{FileSPDXIdentifier: "File5", LicenseConcluded: "NOASSERTION"},
+ spdx.ElementID("File6"): &spdx.File2_2{FileSPDXIdentifier: "File6", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File7"): &spdx.File2_2{FileSPDXIdentifier: "File7", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File8"): &spdx.File2_2{FileSPDXIdentifier: "File8", LicenseConcluded: "MIT"},
+ spdx.ElementID("File9"): &spdx.File2_2{FileSPDXIdentifier: "File9", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File10"): &spdx.File2_2{FileSPDXIdentifier: "File10", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File11"): &spdx.File2_2{FileSPDXIdentifier: "File11", LicenseConcluded: "NOASSERTION"},
+ },
+ }
+
+ // what we want to get, as a buffer of bytes
+ want := bytes.NewBufferString(` 9 License found
+ 3 License not found
+ 12 TOTAL
+
+ 5 GPL-2.0-only
+ 4 MIT
+ 9 TOTAL FOUND
+`)
+
+ // render as buffer of bytes
+ var got bytes.Buffer
+ err := Generate2_2(pkg, &got)
+ if err != nil {
+ t.Errorf("Expected nil error, got %v", err)
+ }
+
+ // check that they match
+ c := bytes.Compare(want.Bytes(), got.Bytes())
+ if c != 0 {
+ t.Errorf("Expected %v, got %v", want.String(), got.String())
+ }
+}
+
+func Test2_2ReporterReturnsErrorIfPackageFilesNotAnalyzed(t *testing.T) {
+ pkg := &spdx.Package2_2{
+ FilesAnalyzed: false,
+ }
+
+ // render as buffer of bytes
+ var got bytes.Buffer
+ err := Generate2_2(pkg, &got)
+ if err == nil {
+ t.Errorf("Expected non-nil error, got nil")
+ }
+}
+
+// ===== 2.2 Utility functions =====
+
+func Test2_2CanGetCountsOfLicenses(t *testing.T) {
+ pkg := &spdx.Package2_2{
+ FilesAnalyzed: true,
+ Files: map[spdx.ElementID]*spdx.File2_2{
+ spdx.ElementID("File0"): &spdx.File2_2{FileSPDXIdentifier: "File0", LicenseConcluded: "MIT"},
+ spdx.ElementID("File1"): &spdx.File2_2{FileSPDXIdentifier: "File1", LicenseConcluded: "NOASSERTION"},
+ spdx.ElementID("File2"): &spdx.File2_2{FileSPDXIdentifier: "File2", LicenseConcluded: "MIT"},
+ spdx.ElementID("File3"): &spdx.File2_2{FileSPDXIdentifier: "File3", LicenseConcluded: "MIT"},
+ spdx.ElementID("File4"): &spdx.File2_2{FileSPDXIdentifier: "File4", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File5"): &spdx.File2_2{FileSPDXIdentifier: "File5", LicenseConcluded: "NOASSERTION"},
+ spdx.ElementID("File6"): &spdx.File2_2{FileSPDXIdentifier: "File6", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File7"): &spdx.File2_2{FileSPDXIdentifier: "File7", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File8"): &spdx.File2_2{FileSPDXIdentifier: "File8", LicenseConcluded: "MIT"},
+ spdx.ElementID("File9"): &spdx.File2_2{FileSPDXIdentifier: "File9", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File10"): &spdx.File2_2{FileSPDXIdentifier: "File10", LicenseConcluded: "GPL-2.0-only"},
+ spdx.ElementID("File11"): &spdx.File2_2{FileSPDXIdentifier: "File11", LicenseConcluded: "NOASSERTION"},
+ },
+ }
+
+ totalFound, totalNotFound, foundCounts := countLicenses2_2(pkg)
+ if totalFound != 9 {
+ t.Errorf("expected %v, got %v", 9, totalFound)
+ }
+ if totalNotFound != 3 {
+ t.Errorf("expected %v, got %v", 3, totalNotFound)
+ }
+ if len(foundCounts) != 2 {
+ t.Fatalf("expected %v, got %v", 2, len(foundCounts))
+ }
+
+ // foundCounts is a map of license ID to count of licenses
+ // confirm that the results are as expected
+ if foundCounts["GPL-2.0-only"] != 5 {
+ t.Errorf("expected %v, got %v", 5, foundCounts["GPL-2.0-only"])
+ }
+ if foundCounts["MIT"] != 4 {
+ t.Errorf("expected %v, got %v", 4, foundCounts["MIT"])
+ }
+}
+
+func Test2_2NilPackageReturnsZeroCountsOfLicenses(t *testing.T) {
+ totalFound, totalNotFound, foundCounts := countLicenses2_2(nil)
+ if totalFound != 0 {
+ t.Errorf("expected %v, got %v", 0, totalFound)
+ }
+ if totalNotFound != 0 {
+ t.Errorf("expected %v, got %v", 0, totalNotFound)
+ }
+ if len(foundCounts) != 0 {
+ t.Fatalf("expected %v, got %v", 0, len(foundCounts))
+ }
+
+ pkg := &spdx.Package2_2{}
+ totalFound, totalNotFound, foundCounts = countLicenses2_2(pkg)
if totalFound != 0 {
t.Errorf("expected %v, got %v", 0, totalFound)
}