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
|
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
package builder
import (
"testing"
)
// ===== CreationInfo section builder tests =====
func TestBuilderCanBuildCreationInfoSection(t *testing.T) {
creatorType := "Organization"
creator := "Jane Doe LLC"
testValues := make(map[string]string)
testValues["Created"] = "2018-10-20T16:48:00Z"
ci, err := BuildCreationInfoSection(creatorType, creator, testValues)
if err != nil {
t.Fatalf("expected nil error, got %v", err)
}
if ci == nil {
t.Fatalf("expected non-nil CreationInfo, got nil")
}
if len(ci.Creators) != 2 {
t.Fatalf("expected %d, got %d", 2, len(ci.Creators))
}
if ci.Creators[1].Creator != "Jane Doe LLC" {
t.Errorf("expected %s, got %s", "Jane Doe LLC", ci.Creators[0].Creator)
}
if ci.Creators[0].Creator != "github.com/spdx/tools-golang/builder" {
t.Errorf("expected %s, got %s", "github.com/spdx/tools-golang/builder", ci.Creators[1].Creator)
}
if ci.Created != "2018-10-20T16:48:00Z" {
t.Errorf("expected %s, got %s", "2018-10-20T16:48:00Z", ci.Created)
}
}
func TestBuilderCanBuildCreationInfoSectionWithCreatorPerson(t *testing.T) {
creatorType := "Person"
creator := "John Doe"
testValues := make(map[string]string)
testValues["Created"] = "2018-10-20T16:48:00Z"
ci, err := BuildCreationInfoSection(creatorType, creator, testValues)
if err != nil {
t.Fatalf("expected nil error, got %v", err)
}
if ci == nil {
t.Fatalf("expected non-nil CreationInfo, got nil")
}
if len(ci.Creators) != 2 {
t.Fatalf("expected %d, got %d", 2, len(ci.Creators))
}
if ci.Creators[1].Creator != "John Doe" {
t.Errorf("expected %s, got %s", "John Doe", ci.Creators[0].Creator)
}
if ci.Creators[0].Creator != "github.com/spdx/tools-golang/builder" {
t.Errorf("expected %s, got %s", "github.com/spdx/tools-golang/builder", ci.Creators[1].Creator)
}
}
func TestBuilderCanBuildCreationInfoSectionWithCreatorTool(t *testing.T) {
creatorType := "Tool"
creator := "some-other-tool"
testValues := make(map[string]string)
testValues["Created"] = "2018-10-20T16:48:00Z"
ci, err := BuildCreationInfoSection(creatorType, creator, testValues)
if err != nil {
t.Fatalf("expected nil error, got %v", err)
}
if ci == nil {
t.Fatalf("expected non-nil CreationInfo, got nil")
}
if len(ci.Creators) != 2 {
t.Fatalf("expected %d, got %d", 2, len(ci.Creators))
}
if ci.Creators[0].Creator != "github.com/spdx/tools-golang/builder" {
t.Errorf("expected %s, got %s", "github.com/spdx/tools-golang/builder", ci.Creators[0])
}
if ci.Creators[1].Creator != "some-other-tool" {
t.Errorf("expected %s, got %s", "some-other-tool", ci.Creators[1])
}
}
func TestBuilderCanBuildCreationInfoSectionWithInvalidPerson(t *testing.T) {
creatorType := "Whatever"
creator := "John Doe"
testValues := make(map[string]string)
testValues["Created"] = "2018-10-20T16:48:00Z"
ci, err := BuildCreationInfoSection(creatorType, creator, testValues)
if err != nil {
t.Fatalf("expected nil error, got %v", err)
}
if ci == nil {
t.Fatalf("expected non-nil CreationInfo, got nil")
}
if len(ci.Creators) != 2 {
t.Fatalf("expected %d, got %d", 2, len(ci.Creators))
}
if ci.Creators[1].Creator != "John Doe" {
t.Errorf("expected %s, got %s", "John Doe", ci.Creators[1])
}
if ci.Creators[0].Creator != "github.com/spdx/tools-golang/builder" {
t.Errorf("expected %s, got %s", "github.com/spdx/tools-golang/builder", ci.Creators[0])
}
}
|