84 lines
2.0 KiB
Go
84 lines
2.0 KiB
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package saver2v2
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/spdx/tools-golang/spdx/v2_2"
|
|
)
|
|
|
|
// ===== Other License section Saver tests =====
|
|
func TestSaver2_2OtherLicenseSavesText(t *testing.T) {
|
|
ol := &v2_2.OtherLicense{
|
|
LicenseIdentifier: "LicenseRef-1",
|
|
ExtractedText: `License 1 text
|
|
blah blah blah
|
|
blah blah blah blah`,
|
|
LicenseName: "License 1",
|
|
LicenseCrossReferences: []string{
|
|
"http://example.com/License1/",
|
|
"http://example.com/License1AnotherURL/",
|
|
},
|
|
LicenseComment: "this is a license comment",
|
|
}
|
|
|
|
// what we want to get, as a buffer of bytes
|
|
want := bytes.NewBufferString(`LicenseID: LicenseRef-1
|
|
ExtractedText: <text>License 1 text
|
|
blah blah blah
|
|
blah blah blah blah</text>
|
|
LicenseName: License 1
|
|
LicenseCrossReference: http://example.com/License1/
|
|
LicenseCrossReference: http://example.com/License1AnotherURL/
|
|
LicenseComment: this is a license comment
|
|
|
|
`)
|
|
|
|
// render as buffer of bytes
|
|
var got bytes.Buffer
|
|
err := renderOtherLicense2_2(ol, &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 TestSaver2_2OtherLicenseOmitsOptionalFieldsIfEmpty(t *testing.T) {
|
|
ol := &v2_2.OtherLicense{
|
|
LicenseIdentifier: "LicenseRef-1",
|
|
ExtractedText: `License 1 text
|
|
blah blah blah
|
|
blah blah blah blah`,
|
|
LicenseName: "License 1",
|
|
}
|
|
|
|
// what we want to get, as a buffer of bytes
|
|
want := bytes.NewBufferString(`LicenseID: LicenseRef-1
|
|
ExtractedText: <text>License 1 text
|
|
blah blah blah
|
|
blah blah blah blah</text>
|
|
LicenseName: License 1
|
|
|
|
`)
|
|
|
|
// render as buffer of bytes
|
|
var got bytes.Buffer
|
|
err := renderOtherLicense2_2(ol, &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())
|
|
}
|
|
}
|