mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-12 07:40:48 -08:00
* Fix subcommands help * refactor: call ShowAppHelpAndExit * refactor: remove an unused error * test: remove exit cases Co-authored-by: knqyf263 <knqyf263@gmail.com>
311 lines
8.8 KiB
Go
311 lines
8.8 KiB
Go
package config
|
|
|
|
import (
|
|
"flag"
|
|
"net/http"
|
|
"os"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/urfave/cli/v2"
|
|
"go.uber.org/zap"
|
|
"go.uber.org/zap/zaptest/observer"
|
|
|
|
dbTypes "github.com/aquasecurity/trivy-db/pkg/types"
|
|
"github.com/aquasecurity/trivy/internal/config"
|
|
)
|
|
|
|
func TestConfig_Init(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
globalConfig config.GlobalConfig
|
|
imageConfig config.ImageConfig
|
|
reportConfig config.ReportConfig
|
|
args []string
|
|
logs []string
|
|
want Config
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
reportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
VulnType: []string{"os"},
|
|
},
|
|
args: []string{"--severity", "CRITICAL", "--vuln-type", "os", "--quiet", "alpine:3.10"},
|
|
want: Config{
|
|
GlobalConfig: config.GlobalConfig{
|
|
Quiet: true,
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "alpine:3.10",
|
|
},
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
VulnType: []string{"os"},
|
|
Output: os.Stdout,
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path with token and token header",
|
|
args: []string{"--token", "secret", "--token-header", "X-Trivy-Token", "alpine:3.11"},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "alpine:3.11",
|
|
},
|
|
token: "secret",
|
|
tokenHeader: "X-Trivy-Token",
|
|
CustomHeaders: http.Header{
|
|
"X-Trivy-Token": []string{"secret"},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path with good custom headers",
|
|
args: []string{"--custom-headers", "foo:bar", "alpine:3.11"},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "alpine:3.11",
|
|
},
|
|
customHeaders: []string{"foo:bar"},
|
|
CustomHeaders: http.Header{
|
|
"Foo": []string{"bar"},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path with bad custom headers",
|
|
args: []string{"--custom-headers", "foobaz", "alpine:3.11"},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "alpine:3.11",
|
|
},
|
|
customHeaders: []string{"foobaz"},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path with an unknown severity",
|
|
args: []string{"--severity", "CRITICAL,INVALID", "centos:7"},
|
|
logs: []string{
|
|
"unknown severity option: unknown severity: INVALID",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical, dbTypes.SeverityUnknown},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "centos:7",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "invalid option combination: --template enabled without --format",
|
|
args: []string{"--template", "@contrib/gitlab.tpl", "gitlab/gitlab-ce:12.7.2-ce.0"},
|
|
logs: []string{
|
|
"--template is ignored because --format template is not specified. Use --template option with --format template option.",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
Template: "@contrib/gitlab.tpl",
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "gitlab/gitlab-ce:12.7.2-ce.0",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "invalid option combination: --template and --format json",
|
|
args: []string{"--format", "json", "--template", "@contrib/gitlab.tpl", "gitlab/gitlab-ce:12.7.2-ce.0"},
|
|
logs: []string{
|
|
"--template is ignored because --format json is specified. Use --template option with --format template option.",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
Template: "@contrib/gitlab.tpl",
|
|
Format: "json",
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "gitlab/gitlab-ce:12.7.2-ce.0",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "invalid option combination: --format template without --template",
|
|
args: []string{"--format", "template", "--severity", "MEDIUM", "gitlab/gitlab-ce:12.7.2-ce.0"},
|
|
logs: []string{
|
|
"--format template is ignored because --template not is specified. Specify --template option when you use --format template.",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityMedium},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
Format: "template",
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "gitlab/gitlab-ce:12.7.2-ce.0",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "invalid option combination: --format template without --template",
|
|
args: []string{"--format", "template", "--severity", "MEDIUM", "gitlab/gitlab-ce:12.7.2-ce.0"},
|
|
logs: []string{
|
|
"--format template is ignored because --template not is specified. Specify --template option when you use --format template.",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityMedium},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
Format: "template",
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "gitlab/gitlab-ce:12.7.2-ce.0",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "with latest tag",
|
|
args: []string{"gcr.io/distroless/base"},
|
|
logs: []string{
|
|
"You should avoid using the :latest tag as it is cached. You need to specify '--clear-cache' option when :latest image is changed",
|
|
},
|
|
want: Config{
|
|
ReportConfig: config.ReportConfig{
|
|
Severities: []dbTypes.Severity{dbTypes.SeverityCritical},
|
|
Output: os.Stdout,
|
|
VulnType: []string{"os", "library"},
|
|
},
|
|
ArtifactConfig: config.ArtifactConfig{
|
|
Target: "gcr.io/distroless/base",
|
|
},
|
|
CustomHeaders: http.Header{},
|
|
},
|
|
},
|
|
{
|
|
name: "sad: multiple image names",
|
|
args: []string{"centos:7", "alpine:3.10"},
|
|
logs: []string{
|
|
"multiple targets cannot be specified",
|
|
},
|
|
wantErr: "arguments error",
|
|
},
|
|
{
|
|
name: "sad: invalid image name",
|
|
args: []string{`!"#$%&'()`},
|
|
wantErr: "could not parse reference",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
core, obs := observer.New(zap.InfoLevel)
|
|
logger := zap.New(core)
|
|
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
set.Bool("quiet", false, "")
|
|
set.Bool("no-progress", false, "")
|
|
set.Bool("clear-cache", false, "")
|
|
set.String("severity", "CRITICAL", "")
|
|
set.String("vuln-type", "os,library", "")
|
|
set.String("template", "", "")
|
|
set.String("format", "", "")
|
|
set.String("token", "", "")
|
|
set.String("token-header", "", "")
|
|
set.Var(&cli.StringSlice{}, "custom-headers", "")
|
|
|
|
ctx := cli.NewContext(app, set, nil)
|
|
_ = set.Parse(tt.args)
|
|
|
|
c, err := New(ctx)
|
|
require.NoError(t, err, err)
|
|
|
|
c.GlobalConfig.Logger = logger.Sugar()
|
|
err = c.Init()
|
|
|
|
// tests log messages
|
|
var gotMessages []string
|
|
for _, entry := range obs.AllUntimed() {
|
|
gotMessages = append(gotMessages, entry.Message)
|
|
}
|
|
assert.Equal(t, tt.logs, gotMessages, tt.name)
|
|
|
|
// test the error
|
|
switch {
|
|
case tt.wantErr != "":
|
|
assert.Contains(t, err.Error(), tt.wantErr, tt.name)
|
|
return
|
|
default:
|
|
assert.NoError(t, err, tt.name)
|
|
}
|
|
|
|
tt.want.GlobalConfig.Context = ctx
|
|
tt.want.GlobalConfig.Logger = logger.Sugar()
|
|
assert.Equal(t, tt.want, c, tt.name)
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_splitCustomHeaders(t *testing.T) {
|
|
type args struct {
|
|
headers []string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want http.Header
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
args: args{
|
|
headers: []string{"x-api-token:foo bar", "Authorization:user:password"},
|
|
},
|
|
want: http.Header{
|
|
"X-Api-Token": []string{"foo bar"},
|
|
"Authorization": []string{"user:password"},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := splitCustomHeaders(tt.args.headers); !reflect.DeepEqual(got, tt.want) {
|
|
t.Errorf("splitCustomHeaders() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|