mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* [wip] put in initial fix Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * capture expected behavior of dir resolver in tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update tests + comments to reflect current dir resolver behavior Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add additional test cases Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix linting Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix additional tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix bad merge conflict resolution Signed-off-by: Alex Goodman <alex.goodman@anchore.com> --------- Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
140 lines
3.8 KiB
Go
140 lines
3.8 KiB
Go
package pkg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/anchore/syft/internal"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/license"
|
|
)
|
|
|
|
func TestLicenseSet_Add(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
licenses []License
|
|
want []License
|
|
}{
|
|
{
|
|
name: "add one simple license",
|
|
licenses: []License{
|
|
NewLicense("MIT"),
|
|
},
|
|
want: []License{
|
|
NewLicense("MIT"),
|
|
},
|
|
},
|
|
{
|
|
name: "add multiple simple licenses",
|
|
licenses: []License{
|
|
NewLicense("MIT"),
|
|
NewLicense("MIT"),
|
|
NewLicense("Apache-2.0"),
|
|
},
|
|
want: []License{
|
|
NewLicense("Apache-2.0"),
|
|
NewLicense("MIT"),
|
|
},
|
|
},
|
|
{
|
|
name: "attempt to add a license with no name",
|
|
licenses: []License{
|
|
NewLicense(""),
|
|
},
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "keep multiple licenses sorted",
|
|
licenses: []License{
|
|
NewLicense("MIT"),
|
|
NewLicense("Apache-2.0"),
|
|
},
|
|
want: []License{
|
|
NewLicense("Apache-2.0"),
|
|
NewLicense("MIT"),
|
|
},
|
|
},
|
|
{
|
|
name: "deduplicate licenses with locations",
|
|
licenses: []License{
|
|
NewLicenseFromLocations("MIT", file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "1"})),
|
|
NewLicenseFromLocations("MIT", file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "1"})),
|
|
NewLicenseFromLocations("MIT", file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "2"})),
|
|
},
|
|
want: []License{
|
|
NewLicenseFromLocations(
|
|
"MIT",
|
|
file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "1"}),
|
|
file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "2"}),
|
|
),
|
|
},
|
|
},
|
|
{
|
|
name: "same licenses with different locations",
|
|
licenses: []License{
|
|
NewLicense("MIT"),
|
|
NewLicenseFromLocations("MIT", file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "2"})),
|
|
NewLicenseFromLocations("MIT", file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "1"})),
|
|
},
|
|
want: []License{
|
|
NewLicenseFromLocations(
|
|
"MIT",
|
|
file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "1"}),
|
|
file.NewLocationFromCoordinates(file.Coordinates{RealPath: "/place", FileSystemID: "2"}),
|
|
),
|
|
},
|
|
},
|
|
{
|
|
name: "same license from different sources",
|
|
licenses: []License{
|
|
NewLicense("MIT"),
|
|
NewLicenseFromLocations("MIT", file.NewLocation("/place")),
|
|
NewLicenseFromURLs("MIT", "https://example.com"),
|
|
},
|
|
want: []License{
|
|
{
|
|
Value: "MIT",
|
|
SPDXExpression: "MIT",
|
|
Type: license.Declared,
|
|
URLs: internal.NewStringSet("https://example.com"),
|
|
Locations: file.NewLocationSet(file.NewLocation("/place")),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "different licenses from different sources with different types constitute two licenses",
|
|
licenses: []License{
|
|
NewLicenseFromType("MIT", license.Concluded),
|
|
NewLicenseFromType("MIT", license.Declared),
|
|
NewLicenseFromLocations("MIT", file.NewLocation("/place")),
|
|
NewLicenseFromURLs("MIT", "https://example.com"),
|
|
},
|
|
want: []License{
|
|
{
|
|
Value: "MIT",
|
|
SPDXExpression: "MIT",
|
|
Type: license.Concluded,
|
|
URLs: internal.NewStringSet(),
|
|
Locations: file.NewLocationSet(),
|
|
},
|
|
{
|
|
Value: "MIT",
|
|
SPDXExpression: "MIT",
|
|
Type: license.Declared,
|
|
URLs: internal.NewStringSet("https://example.com"),
|
|
Locations: file.NewLocationSet(file.NewLocation("/place")),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
s := NewLicenseSet()
|
|
s.Add(tt.licenses...)
|
|
testMe := s.ToSlice()
|
|
assert.Equal(t, tt.want, testMe)
|
|
})
|
|
}
|
|
}
|