Files
aquasecurity-trivy/pkg/fanal/analyzer/language/python/packaging/packaging_test.go
2024-05-20 07:12:43 +00:00

227 lines
5.2 KiB
Go

package packaging
import (
"context"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
"github.com/aquasecurity/trivy/pkg/fanal/types"
)
func Test_packagingAnalyzer_Analyze(t *testing.T) {
tests := []struct {
name string
dir string
includeChecksum bool
want *analyzer.AnalysisResult
wantErr string
}{
{
name: "egg zip",
dir: "testdata/egg-zip",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "kitchen-1.2.6-py2.7.egg",
Packages: types.Packages{
{
Name: "kitchen",
Version: "1.2.6",
Licenses: []string{
"GNU Library or Lesser General Public License (LGPL)",
},
FilePath: "kitchen-1.2.6-py2.7.egg",
},
},
},
},
},
},
{
name: "egg-info",
dir: "testdata/happy-egg",
includeChecksum: true,
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "distlib-0.3.1.egg-info/PKG-INFO",
Packages: types.Packages{
{
Name: "distlib",
Version: "0.3.1",
Licenses: []string{"Python license"},
FilePath: "distlib-0.3.1.egg-info/PKG-INFO",
Digest: "sha1:d9d89d8ed3b2b683767c96814c9c5d3e57ef2e1b",
},
},
},
},
},
},
{
name: "egg-info license classifiers",
dir: "testdata/classifier-license-egg",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "setuptools-51.3.3.egg-info/PKG-INFO",
Packages: types.Packages{
{
Name: "setuptools",
Version: "51.3.3",
Licenses: []string{"MIT License"},
FilePath: "setuptools-51.3.3.egg-info/PKG-INFO",
},
},
},
},
},
},
{
name: "dist-info license classifiers",
dir: "testdata/classifier-license-dist",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "setuptools-51.3.3.dist-info/METADATA",
Packages: types.Packages{
{
Name: "setuptools",
Version: "51.3.3",
Licenses: []string{"MIT License"},
FilePath: "setuptools-51.3.3.dist-info/METADATA",
},
},
},
},
},
},
{
name: "wheel",
dir: "testdata/happy-dist",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "distlib-0.3.1.dist-info/METADATA",
Packages: types.Packages{
{
Name: "distlib",
Version: "0.3.1",
Licenses: []string{"Python license"},
FilePath: "distlib-0.3.1.dist-info/METADATA",
},
},
},
},
},
},
{
name: "egg zip doesn't contain required files",
dir: "testdata/no-req-files",
want: &analyzer.AnalysisResult{},
},
{
name: "license file in dist.info",
dir: "testdata/license-file-dist",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.PythonPkg,
FilePath: "typing_extensions-4.4.0.dist-info/METADATA",
Packages: []types.Package{
{
Name: "typing_extensions",
Version: "4.4.0",
Licenses: []string{
"BeOpen",
"CNRI-Python-GPL-Compatible",
"LicenseRef-MIT-Lucent",
"Python-2.0",
},
FilePath: "typing_extensions-4.4.0.dist-info/METADATA",
},
},
},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a, err := newPackagingAnalyzer(analyzer.AnalyzerOptions{})
require.NoError(t, err)
got, err := a.PostAnalyze(context.Background(), analyzer.PostAnalysisInput{
FS: os.DirFS(tt.dir),
Options: analyzer.AnalysisOptions{
FileChecksum: tt.includeChecksum,
},
})
if tt.wantErr != "" {
require.Error(t, err)
assert.Contains(t, err.Error(), tt.wantErr)
return
}
require.NoError(t, err)
assert.Equal(t, tt.want, got)
})
}
}
func Test_packagingAnalyzer_Required(t *testing.T) {
tests := []struct {
name string
filePath string
want bool
}{
{
name: "egg",
filePath: "python2.7/site-packages/cssutils-1.0-py2.7.egg/EGG-INFO/PKG-INFO",
want: true,
},
{
name: "egg-info",
filePath: "python3.8/site-packages/wrapt-1.12.1.egg-info",
want: true,
},
{
name: "egg-info PKG-INFO",
filePath: "python3.8/site-packages/wrapt-1.12.1.egg-info/PKG-INFO",
want: true,
},
{
name: "wheel",
filePath: "python3.8/site-packages/wrapt-1.12.1.dist-info/METADATA",
want: true,
},
{
name: "wheel license",
filePath: "python3.8/site-packages/wrapt-1.12.1.dist-info/LICENSE",
want: true,
},
{
name: "sad",
filePath: "random/PKG-INFO",
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a := packagingAnalyzer{}
got := a.Required(tt.filePath, nil)
assert.Equal(t, tt.want, got)
})
}
}