Files
trivy/pkg/licensing/classifier_test.go
2023-04-24 13:41:08 +03:00

80 lines
1.8 KiB
Go

package licensing_test
import (
"os"
"testing"
"github.com/aquasecurity/trivy/pkg/licensing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/aquasecurity/trivy/pkg/fanal/types"
)
func TestClassifier_FullClassify(t *testing.T) {
tests := []struct {
name string
filePath string
want *types.LicenseFile
wantErr assert.ErrorAssertionFunc
}{
{
name: "C file with AGPL-3.0",
filePath: "testdata/licensed.c",
want: &types.LicenseFile{
Type: types.LicenseTypeHeader,
FilePath: "testdata/licensed.c",
Findings: []types.LicenseFinding{
{
Name: "AGPL-3.0",
Confidence: 1,
Link: "https://spdx.org/licenses/AGPL-3.0.html",
},
},
},
},
{
name: "Creative commons License file",
filePath: "testdata/LICENSE_creativecommons",
want: &types.LicenseFile{
Type: types.LicenseTypeFile,
FilePath: "testdata/LICENSE_creativecommons",
Findings: []types.LicenseFinding{
{
Name: "Commons-Clause",
Confidence: 1,
Link: "https://spdx.org/licenses/Commons-Clause.html",
},
},
},
},
{
name: "Apache 2 License file",
filePath: "testdata/LICENSE_apache2",
want: &types.LicenseFile{
Type: types.LicenseTypeFile,
FilePath: "testdata/LICENSE_apache2",
Findings: []types.LicenseFinding{
{
Name: "Apache-2.0",
Confidence: 1,
Link: "https://spdx.org/licenses/Apache-2.0.html",
},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
contentFile, err := os.Open(tt.filePath)
require.NoError(t, err)
defer contentFile.Close()
got, err := licensing.Classify(tt.filePath, contentFile, 0.9)
require.NoError(t, err)
assert.Equal(t, tt.want, got)
})
}
}