2017-06-10 11:10:08 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
|
|
"github.com/restic/restic/internal/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestNewCache returns a cache in a temporary directory which is removed when
|
|
|
|
// cleanup is called.
|
2022-12-09 12:42:33 +00:00
|
|
|
func TestNewCache(t testing.TB) *Cache {
|
|
|
|
dir := test.TempDir(t)
|
2017-06-10 11:10:08 +00:00
|
|
|
t.Logf("created new cache at %v", dir)
|
|
|
|
cache, err := New(restic.NewRandomID().String(), dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2022-12-09 12:42:33 +00:00
|
|
|
return cache
|
2017-06-10 11:10:08 +00:00
|
|
|
}
|