prometheus/util/testutil/storage.go

60 lines
1.6 KiB
Go
Raw Normal View History

// Copyright 2017 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
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, nil, &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)
}