Files
trivy/pkg/fanal/analyzer/language/php/composer/composer_test.go
DmitriyLewen 67236f6aac fix(sbom): add checksum to files (#3888)
Co-authored-by: knqyf263 <knqyf263@gmail.com>
2023-03-30 09:24:27 +03:00

128 lines
2.8 KiB
Go

package composer
import (
"context"
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
"github.com/aquasecurity/trivy/pkg/fanal/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"os"
"testing"
)
func Test_composerAnalyzer_PostAnalyze(t *testing.T) {
tests := []struct {
name string
dir string
want *analyzer.AnalysisResult
wantErr string
}{
{
name: "happy path",
dir: "testdata/happy",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.Composer,
FilePath: "composer.lock",
Libraries: []types.Package{
{
ID: "pear/log@1.13.3",
Name: "pear/log",
Version: "1.13.3",
Indirect: false,
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 9,
EndLine: 68,
},
},
DependsOn: []string{"pear/pear_exception@v1.0.2"},
},
{
ID: "pear/pear_exception@v1.0.2",
Name: "pear/pear_exception",
Version: "v1.0.2",
Indirect: true,
Licenses: []string{"BSD-2-Clause"},
Locations: []types.Location{
{
StartLine: 69,
EndLine: 127,
},
},
},
},
},
},
},
},
{
name: "no composer.json",
dir: "testdata/no-composer-json",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.Composer,
FilePath: "composer.lock",
Libraries: []types.Package{
{
ID: "pear/log@1.13.3",
Name: "pear/log",
Version: "1.13.3",
Indirect: false,
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 9,
EndLine: 68,
},
},
DependsOn: []string{"pear/pear_exception@v1.0.2"},
},
{
ID: "pear/pear_exception@v1.0.2",
Name: "pear/pear_exception",
Version: "v1.0.2",
Indirect: false,
Licenses: []string{"BSD-2-Clause"},
Locations: []types.Location{
{
StartLine: 69,
EndLine: 127,
},
},
},
},
},
},
},
},
{
name: "broken composer.lock",
dir: "testdata/sad",
wantErr: "failed to parse composer.lock",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a, err := newComposerAnalyzer(analyzer.AnalyzerOptions{})
require.NoError(t, err)
got, err := a.PostAnalyze(context.Background(), analyzer.PostAnalysisInput{
FS: os.DirFS(tt.dir),
})
if tt.wantErr != "" {
assert.ErrorContains(t, err, tt.wantErr)
return
}
assert.NoError(t, err)
assert.Equal(t, tt.want, got)
})
}
}