prometheus/util/testutil/storage.go

47 lines
1,002 B
Go
Raw Normal View History

package testutil
import (
"io/ioutil"
"os"
"time"
2016-12-28 00:16:48 -08:00
"github.com/prometheus/common/log"
"github.com/prometheus/prometheus/storage"
2016-12-25 02:34:22 -08:00
"github.com/prometheus/prometheus/storage/tsdb"
)
2016-12-25 02:34:22 -08:00
// NewStorage returns a new storage for testing purposes
// that removes all associated files on closing.
2016-12-25 02:34:22 -08:00
func NewStorage(t T) storage.Storage {
dir, err := ioutil.TempDir("", "test_storage")
if err != nil {
2016-12-25 02:34:22 -08:00
t.Fatalf("Opening test dir failed: %s", err)
}
2016-12-28 00:16:48 -08:00
log.With("dir", dir).Debugln("opening test storage")
db, err := tsdb.Open(dir, &tsdb.Options{
MinBlockDuration: 2 * time.Hour,
MaxBlockDuration: 24 * time.Hour,
AppendableBlocks: 10,
})
if err != nil {
t.Fatalf("Opening test storage failed: %s", err)
}
2016-12-25 02:34:22 -08:00
return testStorage{Storage: db, dir: dir}
}
type testStorage struct {
2016-12-25 02:34:22 -08:00
storage.Storage
dir string
}
func (s testStorage) Close() error {
2016-12-28 00:16:48 -08:00
log.With("dir", s.dir).Debugln("closing test storage")
2016-12-25 02:34:22 -08:00
if err := s.Storage.Close(); err != nil {
return err
}
return os.RemoveAll(s.dir)
}