mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 13:17:42 +00:00
restic: remove backend usage from lock test
This commit is contained in:
parent
67e2ba0d40
commit
e40943a75d
@ -190,13 +190,16 @@ func TestLockStale(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func lockExists(repo restic.Repository, t testing.TB, id restic.ID) bool {
|
||||
h := backend.Handle{Type: restic.LockFile, Name: id.String()}
|
||||
_, err := repo.Backend().Stat(context.TODO(), h)
|
||||
if err != nil && !repo.Backend().IsNotExist(err) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
return err == nil
|
||||
func lockExists(repo restic.Repository, t testing.TB, lockID restic.ID) bool {
|
||||
var exists bool
|
||||
rtest.OK(t, repo.List(context.TODO(), restic.LockFile, func(id restic.ID, size int64) error {
|
||||
if id == lockID {
|
||||
exists = true
|
||||
}
|
||||
return nil
|
||||
}))
|
||||
|
||||
return exists
|
||||
}
|
||||
|
||||
func TestLockWithStaleLock(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user