mirror of
https://github.com/anchore/syft.git
synced 2026-08-22 01:53:35 +02:00
* chore(deps): pin stereoscope to the hardlink-inode-adoption branch temporary pin to anchore/stereoscope#670 so the hardlink changes can be exercised end to end. needs re-pinning to a release tag before merge. pulls transitive bumps along with it: docker/cli, docker/go-connections and gabriel-vasile/mimetype. Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix: drop the image resolver hardlink workaround stereoscope now adopts a hardlink's target at index time, so a hardlinked name arrives already described as a regular file with the target's size, mime type and content. the resolver-side fix from #5029 sat on top of that doing the same job a second time, gated on a file type that no longer shows up, so both `resolveHardLinkTarget` implementations and the extra tree walk they cost on every `FilesByPath` are gone. `file.NewVirtualLocationFromImage` stays as-is. it is exported and syft is v1, so it keeps working for anyone using it, it just has no callers in syft now. this picks up `FilesByMIMEType`, which #5029 explicitly could not fix, so hardlinked names now reach mime-driven catalogers. on images built around multi-call binaries (busybox and friends) that is a lot more file and executable entries than before; distro and toolchain images move by about one entry. one shape regresses: a hardlink stereoscope could not adopt (a link name that is absent, empty, names a directory, names another un-adopted link, or points into a lower layer) keeps `TypeHardLink`, and syft goes back to collapsing it onto its target's path. no mainstream builder emits the cross-layer case. Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * bump stereoscope to main Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
680 lines
20 KiB
Go
680 lines
20 KiB
Go
package fileresolver
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"slices"
|
|
"sort"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
"github.com/scylladb/go-set/strset"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
stereoscopeFile "github.com/anchore/stereoscope/pkg/file"
|
|
"github.com/anchore/stereoscope/pkg/imagetest"
|
|
"github.com/anchore/syft/syft/file"
|
|
)
|
|
|
|
func TestImageSquashResolver_FilesByPath(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
linkPath string
|
|
resolveLayer uint
|
|
resolvePath string
|
|
forcePositiveHasPath bool
|
|
}{
|
|
{
|
|
name: "link with previous data",
|
|
linkPath: "/link-1",
|
|
resolveLayer: 1,
|
|
resolvePath: "/file-1.txt",
|
|
},
|
|
{
|
|
name: "link with in layer data",
|
|
linkPath: "/link-within",
|
|
resolveLayer: 5,
|
|
resolvePath: "/file-3.txt",
|
|
},
|
|
{
|
|
name: "link with overridden data",
|
|
linkPath: "/link-2",
|
|
resolveLayer: 7,
|
|
resolvePath: "/file-2.txt",
|
|
},
|
|
{
|
|
name: "indirect link (with overridden data)",
|
|
linkPath: "/link-indirect",
|
|
resolveLayer: 7,
|
|
resolvePath: "/file-2.txt",
|
|
},
|
|
{
|
|
name: "dead link",
|
|
linkPath: "/link-dead",
|
|
resolveLayer: 8,
|
|
resolvePath: "",
|
|
// the path should exist, even if the link is dead
|
|
forcePositiveHasPath: true,
|
|
},
|
|
{
|
|
name: "ignore directories",
|
|
linkPath: "/bin",
|
|
resolvePath: "",
|
|
// the path should exist, even if we ignore it
|
|
forcePositiveHasPath: true,
|
|
},
|
|
{
|
|
name: "parent is a link (with overridden data)",
|
|
linkPath: "/parent-link/file-4.txt",
|
|
resolveLayer: 11,
|
|
resolvePath: "/parent/file-4.txt",
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
t.Run(c.name, func(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-symlinks")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
require.NoError(t, err)
|
|
|
|
hasPath := resolver.HasPath(c.linkPath)
|
|
if !c.forcePositiveHasPath {
|
|
if c.resolvePath != "" && !hasPath {
|
|
t.Errorf("expected HasPath() to indicate existance, but did not")
|
|
} else if c.resolvePath == "" && hasPath {
|
|
t.Errorf("expeced HasPath() to NOT indicate existance, but does")
|
|
}
|
|
} else if !hasPath {
|
|
t.Errorf("expected HasPath() to indicate existance, but did not (force path)")
|
|
}
|
|
|
|
refs, err := resolver.FilesByPath(c.linkPath)
|
|
require.NoError(t, err)
|
|
|
|
expectedRefs := 1
|
|
if c.resolvePath == "" {
|
|
expectedRefs = 0
|
|
}
|
|
|
|
if len(refs) != expectedRefs {
|
|
t.Fatalf("unexpected number of resolutions: %d", len(refs))
|
|
}
|
|
|
|
if expectedRefs == 0 {
|
|
// nothing else to assert
|
|
return
|
|
}
|
|
|
|
actual := refs[0]
|
|
|
|
if string(actual.Reference().RealPath) != c.resolvePath {
|
|
t.Errorf("bad resolve path: '%s'!='%s'", string(actual.Reference().RealPath), c.resolvePath)
|
|
}
|
|
|
|
if c.resolvePath != "" && string(actual.Reference().RealPath) != actual.RealPath {
|
|
t.Errorf("we should always prefer real paths over ones with links")
|
|
}
|
|
|
|
layer := img.FileCatalog.Layer(actual.Reference())
|
|
|
|
if layer.Metadata.Index != c.resolveLayer {
|
|
t.Errorf("bad resolve layer: '%d'!='%d'", layer.Metadata.Index, c.resolveLayer)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestImageSquashResolver_FilesByGlob(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
glob string
|
|
resolveLayer uint
|
|
resolvePath string
|
|
}{
|
|
{
|
|
name: "link with previous data",
|
|
glob: "**/link-1",
|
|
resolveLayer: 1,
|
|
resolvePath: "/file-1.txt",
|
|
},
|
|
{
|
|
name: "link with in layer data",
|
|
glob: "**/link-within",
|
|
resolveLayer: 5,
|
|
resolvePath: "/file-3.txt",
|
|
},
|
|
{
|
|
name: "link with overridden data",
|
|
glob: "**/link-2",
|
|
resolveLayer: 7,
|
|
resolvePath: "/file-2.txt",
|
|
},
|
|
{
|
|
name: "indirect link (with overridden data)",
|
|
glob: "**/link-indirect",
|
|
resolveLayer: 7,
|
|
resolvePath: "/file-2.txt",
|
|
},
|
|
{
|
|
name: "dead link",
|
|
glob: "**/link-dead",
|
|
// dead links are dead! they shouldn't match on globs
|
|
resolvePath: "",
|
|
},
|
|
{
|
|
name: "ignore directories",
|
|
glob: "**/bin",
|
|
resolvePath: "",
|
|
},
|
|
{
|
|
name: "parent without link",
|
|
glob: "**/parent/*.txt",
|
|
resolveLayer: 11,
|
|
resolvePath: "/parent/file-4.txt",
|
|
},
|
|
{
|
|
name: "parent is a link (override)",
|
|
glob: "**/parent-link/file-4.txt",
|
|
resolveLayer: 11,
|
|
resolvePath: "/parent/file-4.txt",
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
t.Run(c.name, func(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-symlinks")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
require.NoError(t, err)
|
|
|
|
refs, err := resolver.FilesByGlob(c.glob)
|
|
require.NoError(t, err)
|
|
|
|
expectedRefs := 1
|
|
if c.resolvePath == "" {
|
|
expectedRefs = 0
|
|
}
|
|
|
|
if len(refs) != expectedRefs {
|
|
t.Fatalf("unexpected number of resolutions: %d", len(refs))
|
|
}
|
|
|
|
if expectedRefs == 0 {
|
|
// nothing else to assert
|
|
return
|
|
}
|
|
|
|
actual := refs[0]
|
|
|
|
if string(actual.Reference().RealPath) != c.resolvePath {
|
|
t.Errorf("bad resolve path: '%s'!='%s'", string(actual.Reference().RealPath), c.resolvePath)
|
|
}
|
|
|
|
if c.resolvePath != "" && string(actual.Reference().RealPath) != actual.RealPath {
|
|
t.Errorf("we should always prefer real paths over ones with links")
|
|
}
|
|
|
|
layer := img.FileCatalog.Layer(actual.Reference())
|
|
|
|
if layer.Metadata.Index != c.resolveLayer {
|
|
t.Errorf("bad resolve layer: '%d'!='%d'", layer.Metadata.Index, c.resolveLayer)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_imageSquashResolver_FilesByMIMEType(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
fixtureName string
|
|
mimeType string
|
|
expectedPaths *strset.Set
|
|
}{
|
|
{
|
|
fixtureName: "image-simple",
|
|
mimeType: "text/plain",
|
|
expectedPaths: strset.New("/somefile-1.txt", "/somefile-2.txt", "/really/nested/file-3.txt"),
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.fixtureName, func(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", test.fixtureName)
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
locations, err := resolver.FilesByMIMEType(test.mimeType)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, locations, test.expectedPaths.Size())
|
|
for _, l := range locations {
|
|
assert.True(t, test.expectedPaths.Has(l.RealPath), "does not have path %q", l.RealPath)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_imageSquashResolver_hasFilesystemIDInLocation(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-duplicate-path")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
locations, err := resolver.FilesByMIMEType("text/plain")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, locations)
|
|
for _, location := range locations {
|
|
assert.NotEmpty(t, location.FileSystemID)
|
|
}
|
|
|
|
locations, err = resolver.FilesByGlob("*.txt")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, locations)
|
|
for _, location := range locations {
|
|
assert.NotEmpty(t, location.FileSystemID)
|
|
}
|
|
|
|
locations, err = resolver.FilesByPath("/somefile-1.txt")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, locations)
|
|
for _, location := range locations {
|
|
assert.NotEmpty(t, location.FileSystemID)
|
|
}
|
|
|
|
}
|
|
|
|
func TestSquashImageResolver_FilesContents(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
name string
|
|
path string
|
|
contents []string
|
|
}{
|
|
{
|
|
name: "one degree",
|
|
path: "link-2",
|
|
contents: []string{
|
|
"NEW file override!", // always from the squashed perspective
|
|
},
|
|
},
|
|
{
|
|
name: "two degrees",
|
|
path: "link-indirect",
|
|
contents: []string{
|
|
"NEW file override!", // always from the squashed perspective
|
|
},
|
|
},
|
|
{
|
|
name: "dead link",
|
|
path: "link-dead",
|
|
contents: []string{},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-symlinks")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
refs, err := resolver.FilesByPath(test.path)
|
|
require.NoError(t, err)
|
|
assert.Len(t, refs, len(test.contents))
|
|
|
|
for idx, loc := range refs {
|
|
|
|
reader, err := resolver.FileContentsByLocation(loc)
|
|
require.NoError(t, err)
|
|
|
|
actual, err := io.ReadAll(reader)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, test.contents[idx], string(actual))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSquashImageResolver_FilesContents_errorOnDirRequest(t *testing.T) {
|
|
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-symlinks")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
var dirLoc *file.Location
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
for loc := range resolver.AllLocations(ctx) {
|
|
entry, err := resolver.img.FileCatalog.Get(loc.Reference())
|
|
require.NoError(t, err)
|
|
if entry.Metadata.IsDir() {
|
|
dirLoc = &loc
|
|
break
|
|
}
|
|
}
|
|
|
|
require.NotNil(t, dirLoc)
|
|
|
|
reader, err := resolver.FileContentsByLocation(*dirLoc)
|
|
require.Error(t, err)
|
|
require.Nil(t, reader)
|
|
}
|
|
|
|
func Test_imageSquashResolver_resolvesLinks(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
runner func(file.Resolver) []file.Location
|
|
expected []file.Location
|
|
}{
|
|
{
|
|
name: "by mimetype",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links should not show up when searching mimetype
|
|
actualLocations, err := resolver.FilesByMIMEType("text/plain")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
file.NewVirtualLocation("/etc/group", "/etc/group"),
|
|
file.NewVirtualLocation("/etc/passwd", "/etc/passwd"),
|
|
file.NewVirtualLocation("/etc/shadow", "/etc/shadow"),
|
|
file.NewVirtualLocation("/file-1.txt", "/file-1.txt"),
|
|
file.NewVirtualLocation("/file-3.txt", "/file-3.txt"),
|
|
file.NewVirtualLocation("/file-2.txt", "/file-2.txt"),
|
|
file.NewVirtualLocation("/parent/file-4.txt", "/parent/file-4.txt"),
|
|
},
|
|
},
|
|
{
|
|
name: "by glob to links",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links are searched, but resolve to the real files
|
|
actualLocations, err := resolver.FilesByGlob("*ink-*")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
file.NewVirtualLocation("/file-1.txt", "/link-1"),
|
|
file.NewVirtualLocation("/file-2.txt", "/link-2"),
|
|
|
|
// though this is a link, and it matches to the file, the resolver de-duplicates files
|
|
// by the real path, so it is not included in the results
|
|
//file.NewVirtualLocation("/file-2.txt", "/link-indirect"),
|
|
|
|
file.NewVirtualLocation("/file-3.txt", "/link-within"),
|
|
},
|
|
},
|
|
{
|
|
name: "by basename",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links are searched, but resolve to the real files
|
|
actualLocations, err := resolver.FilesByGlob("**/file-2.txt")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
// this has two copies in the base image, which overwrites the same location
|
|
file.NewVirtualLocation("/file-2.txt", "/file-2.txt"),
|
|
},
|
|
},
|
|
{
|
|
name: "by basename glob",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links are searched, but resolve to the real files
|
|
actualLocations, err := resolver.FilesByGlob("**/file-?.txt")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
file.NewVirtualLocation("/file-1.txt", "/file-1.txt"),
|
|
file.NewVirtualLocation("/file-2.txt", "/file-2.txt"),
|
|
file.NewVirtualLocation("/file-3.txt", "/file-3.txt"),
|
|
file.NewVirtualLocation("/parent/file-4.txt", "/parent/file-4.txt"),
|
|
},
|
|
},
|
|
{
|
|
name: "by basename glob to links",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
actualLocations, err := resolver.FilesByGlob("**/link-*")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
file.NewVirtualLocation("/file-1.txt", "/link-1"),
|
|
file.NewVirtualLocation("/file-2.txt", "/link-2"),
|
|
|
|
// we already have this real file path via another link, so only one is returned
|
|
// file.NewVirtualLocation("/file-2.txt", "/link-indirect"),
|
|
|
|
file.NewVirtualLocation("/file-3.txt", "/link-within"),
|
|
},
|
|
},
|
|
{
|
|
name: "by extension",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links are searched, but resolve to the real files
|
|
actualLocations, err := resolver.FilesByGlob("**/*.txt")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
file.NewVirtualLocation("/file-1.txt", "/file-1.txt"),
|
|
file.NewVirtualLocation("/file-2.txt", "/file-2.txt"),
|
|
file.NewVirtualLocation("/file-3.txt", "/file-3.txt"),
|
|
file.NewVirtualLocation("/parent/file-4.txt", "/parent/file-4.txt"),
|
|
},
|
|
},
|
|
{
|
|
name: "by path to degree 1 link",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// links resolve to the final file
|
|
actualLocations, err := resolver.FilesByPath("/link-2")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
// we have multiple copies across layers
|
|
file.NewVirtualLocation("/file-2.txt", "/link-2"),
|
|
},
|
|
},
|
|
{
|
|
name: "by path to degree 2 link",
|
|
runner: func(resolver file.Resolver) []file.Location {
|
|
// multiple links resolves to the final file
|
|
actualLocations, err := resolver.FilesByPath("/link-indirect")
|
|
assert.NoError(t, err)
|
|
return actualLocations
|
|
},
|
|
expected: []file.Location{
|
|
// we have multiple copies across layers
|
|
file.NewVirtualLocation("/file-2.txt", "/link-indirect"),
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-symlinks")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
actual := test.runner(resolver)
|
|
|
|
compareLocations(t, test.expected, actual)
|
|
})
|
|
}
|
|
|
|
}
|
|
|
|
func compareLocations(t *testing.T, expected, actual []file.Location) {
|
|
t.Helper()
|
|
ignoreUnexported := cmpopts.IgnoreUnexported(file.LocationData{})
|
|
ignoreUnexportedCoord := cmpopts.IgnoreUnexported(file.Coordinates{})
|
|
ignoreMetadata := cmpopts.IgnoreFields(file.LocationMetadata{}, "Annotations")
|
|
ignoreFS := cmpopts.IgnoreFields(file.Coordinates{}, "FileSystemID")
|
|
|
|
slices.SortFunc(expected, locationSorter)
|
|
slices.SortFunc(actual, locationSorter)
|
|
|
|
if d := cmp.Diff(expected, actual,
|
|
ignoreUnexported,
|
|
ignoreUnexportedCoord,
|
|
ignoreFS,
|
|
ignoreMetadata,
|
|
); d != "" {
|
|
|
|
t.Errorf("unexpected locations (-want +got):\n%s", d)
|
|
}
|
|
|
|
}
|
|
|
|
// locationSorter always sorts only by path information since test fixtures here only have filesystem IDs
|
|
// for one side of the comparison (expected) and not the other (actual).
|
|
func locationSorter(a, b file.Location) int {
|
|
if a.AccessPath != b.AccessPath {
|
|
return strings.Compare(a.AccessPath, b.AccessPath)
|
|
}
|
|
|
|
return strings.Compare(a.RealPath, b.RealPath)
|
|
}
|
|
|
|
func TestSquashResolver_AllLocations(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-files-deleted")
|
|
|
|
resolver, err := NewFromContainerImageSquash(img)
|
|
assert.NoError(t, err)
|
|
|
|
paths := strset.New()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
for loc := range resolver.AllLocations(ctx) {
|
|
paths.Add(loc.RealPath)
|
|
}
|
|
expected := []string{
|
|
"/Dockerfile",
|
|
"/file-3.txt",
|
|
"/target",
|
|
"/target/file-2.txt",
|
|
}
|
|
|
|
// depending on how the image is built (either from linux or mac), sys and proc might accidentally be added to the image.
|
|
// this isn't important for the test, so we remove them.
|
|
paths.Remove("/proc", "/sys", "/dev", "/etc")
|
|
|
|
// Remove cache created by Mac Rosetta when emulating different arches
|
|
paths.Remove("/.cache/rosetta", "/.cache")
|
|
|
|
pathsList := paths.List()
|
|
sort.Strings(pathsList)
|
|
|
|
assert.ElementsMatchf(t, expected, pathsList, "expected all paths to be indexed, but found different paths: \n%s", cmp.Diff(expected, paths.List()))
|
|
}
|
|
|
|
// a hardlink should be surfaced at its own path as the underlying type it points to (a regular file with the target's
|
|
// content and metadata), so that image results are in parity with directory results (which cannot distinguish a
|
|
// hardlink from a regular file). this must hold for both the squashed and all-layers resolvers.
|
|
func TestImageResolvers_Hardlinks(t *testing.T) {
|
|
img := imagetest.GetFixtureImage(t, "docker-archive", "image-hardlinks")
|
|
|
|
resolvers := map[string]file.Resolver{}
|
|
squash, err := NewFromContainerImageSquash(img)
|
|
require.NoError(t, err)
|
|
resolvers["squashed"] = squash
|
|
|
|
allLayers, err := NewFromContainerImageAllLayers(img)
|
|
require.NoError(t, err)
|
|
resolvers["all-layers"] = allLayers
|
|
|
|
const wantContents = "hardlinked contents\n"
|
|
|
|
// asserts a location surfaces the hardlink at its own path as a regular file with the target's content, and is
|
|
// not marked hidden (all-layers annotates visibility; squash leaves the annotation unset, which must not read as
|
|
// hidden either).
|
|
assertHardlink := func(t *testing.T, resolver file.Resolver, wantPath string, loc file.Location) {
|
|
t.Helper()
|
|
assert.Equal(t, wantPath, loc.RealPath, "expected the hardlink's own path, not the target's")
|
|
assert.NotEqual(t, file.HiddenAnnotation, loc.Annotations[file.VisibleAnnotationKey], "path=%s should not be hidden", wantPath)
|
|
|
|
meta, err := resolver.FileMetadataByLocation(loc)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, stereoscopeFile.TypeRegular, meta.Type, "path=%s", wantPath)
|
|
|
|
reader, err := resolver.FileContentsByLocation(loc)
|
|
require.NoError(t, err)
|
|
actual, err := io.ReadAll(reader)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, wantContents, string(actual), "path=%s", wantPath)
|
|
}
|
|
|
|
for name, resolver := range resolvers {
|
|
t.Run(name, func(t *testing.T) {
|
|
t.Run("FilesByPath surfaces a hardlink at its own path with the target's content", func(t *testing.T) {
|
|
for _, path := range []string{"/hardlink-a", "/hardlink-b", "/file.txt"} {
|
|
locs, err := resolver.FilesByPath(path)
|
|
require.NoError(t, err)
|
|
require.Len(t, locs, 1, "path=%s", path)
|
|
assertHardlink(t, resolver, path, locs[0])
|
|
}
|
|
})
|
|
|
|
t.Run("FilesByGlob surfaces every hardlink in a matched set, not just one", func(t *testing.T) {
|
|
// the whole point of #5019: a glob that matches multiple hardlinks to the same target must return
|
|
// all of them (each at its own path), not collapse them onto a single entry.
|
|
locs, err := resolver.FilesByGlob("**/hardlink-*")
|
|
require.NoError(t, err)
|
|
|
|
byPath := map[string]file.Location{}
|
|
for _, loc := range locs {
|
|
_, dup := byPath[loc.RealPath]
|
|
assert.Falsef(t, dup, "path %s emitted more than once", loc.RealPath)
|
|
byPath[loc.RealPath] = loc
|
|
}
|
|
for _, path := range []string{"/hardlink-a", "/hardlink-b"} {
|
|
loc, ok := byPath[path]
|
|
require.Truef(t, ok, "expected glob to surface %s", path)
|
|
assertHardlink(t, resolver, path, loc)
|
|
}
|
|
})
|
|
|
|
t.Run("FilesByMIMEType surfaces every hardlink name", func(t *testing.T) {
|
|
// this is the surface #5029 could not fix and stereoscope's index-time adoption does: MIME-driven
|
|
// catalogers see each name. it also pins that the names are separately addressable (distinct
|
|
// references), since this resolver dedups on reference and would return one entry if they shared it.
|
|
locs, err := resolver.FilesByMIMEType("text/plain")
|
|
require.NoError(t, err)
|
|
|
|
byPath := map[string]file.Location{}
|
|
for _, loc := range locs {
|
|
byPath[loc.RealPath] = loc
|
|
}
|
|
for _, path := range []string{"/file.txt", "/hardlink-a", "/hardlink-b"} {
|
|
loc, ok := byPath[path]
|
|
require.Truef(t, ok, "expected MIME search to surface %s (got %v)", path, byPath)
|
|
assertHardlink(t, resolver, path, loc)
|
|
}
|
|
})
|
|
|
|
t.Run("AllLocations includes every hardlink path as a regular file exactly once", func(t *testing.T) {
|
|
counts := map[string]int{}
|
|
locsByPath := map[string]file.Location{}
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
for loc := range resolver.AllLocations(ctx) {
|
|
counts[loc.RealPath]++
|
|
locsByPath[loc.RealPath] = loc
|
|
}
|
|
for _, path := range []string{"/file.txt", "/hardlink-a", "/hardlink-b"} {
|
|
require.Equalf(t, 1, counts[path], "expected %s to be reported exactly once by AllLocations", path)
|
|
assertHardlink(t, resolver, path, locsByPath[path])
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|