8000 fix(cli): Handle empty ignore files more gracefully by simar7 · Pull Request #7962 · aquasecurity/trivy · GitHub
[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cli): Handle empty ignore files more gracefully #7962

Merged
merged 5 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(cli): Handle empty ignore files more gracefully
Fixes: #7934
  • Loading branch information
simar7 committed Nov 20, 2024
commit 46f11399c2b8305e98b5a68989ed03e6492fc469
2 changes: 1 addition & 1 deletion pkg/flag/report_flags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func TestReportFlagGroup_ToOptions(t *testing.T) {
t.Run("Error on non existing ignore file", func(t *testing.T) {
t.Cleanup(viper.Reset)

setValue(flag.IgnoreFileFlag.ConfigName, string("doesntexist"))
setValue(flag.IgnoreFileFlag.ConfigName, "doesntexist")
f := &flag.ReportFlagGroup{
IgnoreFile: flag.IgnoreFileFlag.Clone(),
}
Expand Down
5 changes: 3 additions & 2 deletions pkg/result/ignore.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,9 @@ func (c *IgnoreConfig) MatchLicense(licenseID, filePath string) *IgnoreFinding {

func ParseIgnoreFile(ctx context.Context, ignoreFile string) (IgnoreConfig, error) {
var conf IgnoreConfig
if _, err := os.Stat(ignoreFile); errors.Is(err, fs.ErrNotExist) {
// .trivyignore doesn't necessarily exist
if fi, err := os.Stat(ignoreFile); errors.Is(err, fs.ErrNotExist) || fi.Size() == 0 {
// .trivyignore doesn't necessarily exist or maybe empty
log.Debug("Specified ignore file does not exist or is empty", log.String("file", ignoreFile), log.Int64("size", fi.Size()))
return IgnoreConfig{}, nil
} else if filepath.Ext(ignoreFile) == ".yml" || filepath.Ext(ignoreFile) == ".yaml" {
conf, err = parseIgnoreYAML(ignoreFile)
Expand Down
77 changes: 77 additions & 0 deletions pkg/result/ignore_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
package result

import (
"context"
"os"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestParseIgnoreFile(t *testing.T) {
t.Run("happy path valid config file", func(t *testing.T) {
got, err := ParseIgnoreFile(context.TODO(), "testdata/.trivyignore")
require.NoError(t, err)
assert.Equal(t, "testdata/.trivyignore", got.FilePath)

// IDs in .trivyignore are treated as IDs for all scanners
// as it is unclear which type of security issue they are
assert.Len(t, got.Vulnerabilities, 6)
assert.Len(t, got.Misconfigurations, 6)
assert.Len(t, got.Secrets, 6)
assert.Len(t, got.Licenses, 6)
})

t.Run("happy path valid YAML config file", func(t *testing.T) {
got, err := ParseIgnoreFile(context.TODO(), "testdata/.trivyignore.yaml")
require.NoError(t, err)
assert.Equal(t, "testdata/.trivyignore.yaml", got.FilePath)
assert.Len(t, got.Vulnerabilities, 5)
assert.Len(t, got.Misconfigurations, 3)
assert.Len(t, got.Secrets, 3)
assert.Len(t, got.Licenses, 1)
})

t.Run("empty YAML file passed", func(t *testing.T) {
f, err := os.CreateTemp("", "TestParseIgnoreFile-*.yaml")
require.NoError(t, err)
defer os.Remove(f.Name())

got, err := ParseIgnoreFile(context.TODO(), f.Name())
require.NoError(t, err)
assert.Empty(t, got)
})

t.Run("invalid YAML file passed", func(t *testing.T) {
f, err := os.CreateTemp("", "TestParseIgnoreFile-*.yaml")
require.NoError(t, err)
defer os.Remove(f.Name())
_, _ = f.WriteString("this file is not a yaml file")

got, err := ParseIgnoreFile(context.TODO(), f.Name())
assert.Contains(t, err.Error(), "yaml decode error")
assert.Empty(t, got)
})

// TODO(simar7): This test currently fails as we don't validate
// the correctness of ignore file when not in YAML format
/*
t.Run("invalid file passed", func(t *testing.T) {
f, err := os.CreateTemp("", "TestParseIgnoreFile-*")
require.NoError(t, err)
defer os.Remove(f.Name())
_, _ = f.WriteString("this file is not a valid trivyignore file")

_, err = ParseIgnoreFile(context.TODO(), f.Name())
require.Error(t, err)
})
*/

t.Run("non existing file passed", func(t *testing.T) {
got, err := ParseIgnoreFile(context.TODO(), "does-not-exist.yaml")
require.NoError(t, err)
assert.Empty(t, got)
})

}
Loading
0