Files
trivy/pkg/fanal/utils/utils_test.go
Owen Rumney 5190f9566b feat: Adding support for Windows testing (#3037)
Signed-off-by: Owen Rumney <owen.rumney@aquasec.com>
Signed-off-by: knqyf263 <knqyf263@gmail.com>
Co-authored-by: knqyf263 <knqyf263@gmail.com>
2022-12-22 22:54:18 +02:00

35 lines
694 B
Go

package utils
import (
"bufio"
"os"
"path/filepath"
"testing"
)
func TestIsGzip(t *testing.T) {
var tests = []struct {
in string
want bool
}{
{filepath.Join("testdata", "test.txt.gz"), true},
{filepath.Join("testdata", "test.tar.gz"), true},
{filepath.Join("testdata", "test.txt"), false},
{filepath.Join("testdata", "test.txt.zst"), false},
{filepath.Join("testdata", "aqua.png"), false},
}
for _, tt := range tests {
t.Run(tt.in, func(t *testing.T) {
f, err := os.Open(tt.in)
if err != nil {
t.Fatalf("unknown error: %s", err)
}
got := IsGzip(bufio.NewReader(f))
if got != tt.want {
t.Errorf("got %t, want %t", got, tt.want)
}
})
}
}