mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
137 lines
2.7 KiB
Go
137 lines
2.7 KiB
Go
package file
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/anchore/stereoscope/pkg/file"
|
|
"github.com/anchore/stereoscope/pkg/imagetest"
|
|
"github.com/anchore/syft/syft/source"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var updateImageGoldenFiles = flag.Bool("update-image", false, "update the golden fixture images used for testing")
|
|
|
|
func TestFileMetadataCataloger(t *testing.T) {
|
|
testImage := "image-file-type-mix"
|
|
|
|
if *updateImageGoldenFiles {
|
|
imagetest.UpdateGoldenFixtureImage(t, testImage)
|
|
}
|
|
|
|
img := imagetest.GetGoldenFixtureImage(t, testImage)
|
|
|
|
c := NewMetadataCataloger()
|
|
|
|
src, err := source.NewFromImage(img, "---")
|
|
if err != nil {
|
|
t.Fatalf("could not create source: %+v", err)
|
|
}
|
|
|
|
resolver, err := src.FileResolver(source.SquashedScope)
|
|
if err != nil {
|
|
t.Fatalf("could not create resolver: %+v", err)
|
|
}
|
|
|
|
actual, err := c.Catalog(resolver)
|
|
if err != nil {
|
|
t.Fatalf("could not catalog: %+v", err)
|
|
}
|
|
|
|
tests := []struct {
|
|
path string
|
|
exists bool
|
|
expected source.FileMetadata
|
|
err bool
|
|
}{
|
|
{
|
|
path: "/file-1.txt",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0644,
|
|
Type: "RegularFile",
|
|
UserID: 1,
|
|
GroupID: 2,
|
|
},
|
|
},
|
|
{
|
|
path: "/hardlink-1",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0644,
|
|
Type: "HardLink",
|
|
LinkDestination: "file-1.txt",
|
|
UserID: 1,
|
|
GroupID: 2,
|
|
},
|
|
},
|
|
{
|
|
path: "/symlink-1",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0777 | os.ModeSymlink,
|
|
Type: "SymbolicLink",
|
|
LinkDestination: "file-1.txt",
|
|
UserID: 0,
|
|
GroupID: 0,
|
|
},
|
|
},
|
|
{
|
|
path: "/char-device-1",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0644 | os.ModeDevice | os.ModeCharDevice,
|
|
Type: "CharacterDevice",
|
|
UserID: 0,
|
|
GroupID: 0,
|
|
},
|
|
},
|
|
{
|
|
path: "/block-device-1",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0644 | os.ModeDevice,
|
|
Type: "BlockDevice",
|
|
UserID: 0,
|
|
GroupID: 0,
|
|
},
|
|
},
|
|
{
|
|
path: "/fifo-1",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0644 | os.ModeNamedPipe,
|
|
Type: "FIFONode",
|
|
UserID: 0,
|
|
GroupID: 0,
|
|
},
|
|
},
|
|
{
|
|
path: "/bin",
|
|
exists: true,
|
|
expected: source.FileMetadata{
|
|
Mode: 0755 | os.ModeDir,
|
|
Type: "Directory",
|
|
UserID: 0,
|
|
GroupID: 0,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.path, func(t *testing.T) {
|
|
_, ref, err := img.SquashedTree().File(file.Path(test.path))
|
|
if err != nil {
|
|
t.Fatalf("unable to get file: %+v", err)
|
|
}
|
|
|
|
l := source.NewLocationFromImage(test.path, *ref, img)
|
|
|
|
assert.Equal(t, actual[l], test.expected, "mismatched metadata")
|
|
|
|
})
|
|
}
|
|
|
|
}
|