2022-03-28 20:23:47 +00:00
|
|
|
//go:build !windows
|
2019-05-04 08:34:28 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package archiver
|
|
|
|
|
|
|
|
import (
|
2024-03-28 18:11:56 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/feature"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
2024-03-28 23:24:03 +00:00
|
|
|
rtest "github.com/restic/restic/internal/test"
|
2019-05-04 08:34:28 +00:00
|
|
|
)
|
|
|
|
|
2024-05-19 13:11:32 +00:00
|
|
|
func statAndSnapshot(t *testing.T, repo archiverRepo, name string) (*restic.Node, *restic.Node) {
|
2024-11-02 19:27:38 +00:00
|
|
|
want := nodeFromFile(t, &fs.Local{}, name)
|
|
|
|
_, node := snapshot(t, repo, &fs.Local{}, nil, name)
|
2024-03-28 18:11:56 +00:00
|
|
|
return want, node
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHardlinkMetadata(t *testing.T) {
|
|
|
|
defer feature.TestSetFlag(t, feature.Flag, feature.DeviceIDForHardlinks, true)()
|
|
|
|
|
|
|
|
files := TestDir{
|
|
|
|
"testfile": TestFile{
|
|
|
|
Content: "foo bar test file",
|
|
|
|
},
|
|
|
|
"linktarget": TestFile{
|
|
|
|
Content: "test file",
|
|
|
|
},
|
|
|
|
"testlink": TestHardlink{
|
|
|
|
Target: "./linktarget",
|
|
|
|
},
|
|
|
|
"testdir": TestDir{},
|
|
|
|
}
|
|
|
|
|
|
|
|
tempdir, repo := prepareTempdirRepoSrc(t, files)
|
|
|
|
|
2024-03-28 23:24:03 +00:00
|
|
|
back := rtest.Chdir(t, tempdir)
|
2024-03-28 18:11:56 +00:00
|
|
|
defer back()
|
|
|
|
|
|
|
|
want, node := statAndSnapshot(t, repo, "testlink")
|
2024-03-28 23:24:03 +00:00
|
|
|
rtest.Assert(t, node.DeviceID == want.DeviceID, "device id mismatch expected %v got %v", want.DeviceID, node.DeviceID)
|
|
|
|
rtest.Assert(t, node.Links == want.Links, "link count mismatch expected %v got %v", want.Links, node.Links)
|
|
|
|
rtest.Assert(t, node.Inode == want.Inode, "inode mismatch expected %v got %v", want.Inode, node.Inode)
|
2024-03-28 18:11:56 +00:00
|
|
|
|
|
|
|
_, node = statAndSnapshot(t, repo, "testfile")
|
2024-03-28 23:24:03 +00:00
|
|
|
rtest.Assert(t, node.DeviceID == 0, "device id mismatch for testfile expected %v got %v", 0, node.DeviceID)
|
2024-03-28 18:11:56 +00:00
|
|
|
|
|
|
|
_, node = statAndSnapshot(t, repo, "testdir")
|
2024-03-28 23:24:03 +00:00
|
|
|
rtest.Assert(t, node.DeviceID == 0, "device id mismatch for testdir expected %v got %v", 0, node.DeviceID)
|
2024-03-28 18:11:56 +00:00
|
|
|
}
|