2014-06-06 09:55:53 +00:00
|
|
|
package storage_ng
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/utility/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
type testStorageCloser struct {
|
|
|
|
storage Storage
|
|
|
|
directory test.Closer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testStorageCloser) Close() {
|
|
|
|
t.storage.Close()
|
|
|
|
t.directory.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTestStorage(t testing.TB) (Storage, test.Closer) {
|
|
|
|
directory := test.NewTemporaryDirectory("test_storage", t)
|
|
|
|
persistence, err := NewDiskPersistence(directory.Path(), 1024)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Error opening disk persistence: ", err)
|
|
|
|
}
|
|
|
|
o := &MemorySeriesStorageOptions{
|
2014-08-13 15:13:28 +00:00
|
|
|
Persistence: persistence,
|
|
|
|
MemoryEvictionInterval: time.Minute,
|
|
|
|
MemoryRetentionPeriod: time.Hour,
|
|
|
|
PersistencePurgeInterval: time.Hour,
|
|
|
|
PersistenceRetentionPeriod: 24 * 7 * time.Hour,
|
2014-06-06 09:55:53 +00:00
|
|
|
}
|
|
|
|
storage, err := NewMemorySeriesStorage(o)
|
|
|
|
if err != nil {
|
|
|
|
directory.Close()
|
|
|
|
t.Fatalf("Error creating storage: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
storageStarted := make(chan bool)
|
|
|
|
go storage.Serve(storageStarted)
|
|
|
|
<-storageStarted
|
|
|
|
|
|
|
|
closer := &testStorageCloser{
|
|
|
|
storage: storage,
|
|
|
|
directory: directory,
|
|
|
|
}
|
|
|
|
|
|
|
|
return storage, closer
|
|
|
|
}
|