2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 09:30:50 +00:00
restic/internal/restic/hardlinks_index_test.go

36 lines
759 B
Go
Raw Normal View History

2017-01-30 23:14:20 +00:00
package restic_test
import (
"testing"
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
2017-10-02 13:06:39 +00:00
rtest "github.com/restic/restic/internal/test"
2017-01-30 23:14:20 +00:00
)
// TestHardLinks contains various tests for HardlinkIndex.
func TestHardLinks(t *testing.T) {
idx := restic.NewHardlinkIndex()
idx.Add(1, 2, "inode1-file1-on-device2")
idx.Add(2, 3, "inode2-file2-on-device3")
var sresult string
sresult = idx.GetFilename(1, 2)
2017-10-02 13:06:39 +00:00
rtest.Equals(t, sresult, "inode1-file1-on-device2")
2017-01-30 23:14:20 +00:00
sresult = idx.GetFilename(2, 3)
2017-10-02 13:06:39 +00:00
rtest.Equals(t, sresult, "inode2-file2-on-device3")
2017-01-30 23:14:20 +00:00
var bresult bool
bresult = idx.Has(1, 2)
2017-10-02 13:06:39 +00:00
rtest.Equals(t, bresult, true)
2017-01-30 23:14:20 +00:00
bresult = idx.Has(1, 3)
2017-10-02 13:06:39 +00:00
rtest.Equals(t, bresult, false)
2017-01-30 23:14:20 +00:00
idx.Remove(1, 2)
bresult = idx.Has(1, 2)
2017-10-02 13:06:39 +00:00
rtest.Equals(t, bresult, false)
2017-01-30 23:14:20 +00:00
}