mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 07:29:00 -08:00
107 lines
2.5 KiB
Go
107 lines
2.5 KiB
Go
package amazonlinux
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
|
|
fos "github.com/aquasecurity/trivy/pkg/fanal/analyzer/os"
|
|
"github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
)
|
|
|
|
func Test_amazonlinuxOSAnalyzer_Analyze(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input analyzer.AnalysisInput
|
|
want *analyzer.AnalysisResult
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "happy path amazon linux 1",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "etc/system-release",
|
|
Content: strings.NewReader(`Amazon Linux AMI release 2018.03`),
|
|
},
|
|
want: &analyzer.AnalysisResult{
|
|
OS: types.OS{
|
|
Family: types.Amazon,
|
|
Name: "AMI release 2018.03",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path amazon linux 2",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "etc/system-release",
|
|
Content: strings.NewReader(`Amazon Linux release 2 (Karoo)`),
|
|
},
|
|
want: &analyzer.AnalysisResult{
|
|
OS: types.OS{
|
|
Family: types.Amazon,
|
|
Name: "2 (Karoo)",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path amazon linux 2022",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "usr/lib/system-release",
|
|
Content: strings.NewReader(`Amazon Linux release 2022 (Amazon Linux)`),
|
|
},
|
|
want: &analyzer.AnalysisResult{
|
|
OS: types.OS{
|
|
Family: types.Amazon,
|
|
Name: "2022 (Amazon Linux)",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path amazon linux 2023",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "usr/lib/system-release",
|
|
Content: strings.NewReader(`Amazon Linux release 2023 (Amazon Linux)`),
|
|
},
|
|
want: &analyzer.AnalysisResult{
|
|
OS: types.OS{
|
|
Family: types.Amazon,
|
|
Name: "2023 (Amazon Linux)",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "sad path amazon linux 2 without code name",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "etc/system-release",
|
|
Content: strings.NewReader(`Amazon Linux release 2`),
|
|
},
|
|
wantErr: fos.AnalyzeOSError.Error(),
|
|
},
|
|
{
|
|
name: "sad path",
|
|
input: analyzer.AnalysisInput{
|
|
FilePath: "etc/system-release",
|
|
Content: strings.NewReader(`foo bar`),
|
|
},
|
|
wantErr: fos.AnalyzeOSError.Error(),
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
a := amazonlinuxOSAnalyzer{}
|
|
ctx := t.Context()
|
|
got, err := a.Analyze(ctx, tt.input)
|
|
if tt.wantErr != "" {
|
|
require.ErrorContains(t, err, tt.wantErr)
|
|
return
|
|
} else {
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
assert.Equal(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|