2014-09-19 16:18:44 +00:00
|
|
|
// Copyright 2014 Prometheus Team
|
|
|
|
// 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.
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
package local
|
2014-06-06 09:55:53 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/utility/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
type testStorageCloser struct {
|
|
|
|
storage Storage
|
|
|
|
directory test.Closer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testStorageCloser) Close() {
|
2014-10-24 18:27:27 +00:00
|
|
|
t.storage.Stop()
|
2014-06-06 09:55:53 +00:00
|
|
|
t.directory.Close()
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// NewTestStorage creates a storage instance backed by files in a temporary
|
|
|
|
// directory. The returned storage is already in serving state. Upon closing the
|
|
|
|
// returned test.Closer, the temporary directory is cleaned up.
|
2014-06-06 09:55:53 +00:00
|
|
|
func NewTestStorage(t testing.TB) (Storage, test.Closer) {
|
|
|
|
directory := test.NewTemporaryDirectory("test_storage", t)
|
|
|
|
o := &MemorySeriesStorageOptions{
|
2014-11-13 19:50:25 +00:00
|
|
|
MemoryChunks: 1000000,
|
2014-08-13 15:13:28 +00:00
|
|
|
PersistenceRetentionPeriod: 24 * 7 * time.Hour,
|
2014-10-07 17:11:24 +00:00
|
|
|
PersistenceStoragePath: directory.Path(),
|
2014-10-24 18:27:27 +00:00
|
|
|
CheckpointInterval: 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)
|
|
|
|
}
|
|
|
|
|
2014-10-24 18:27:27 +00:00
|
|
|
storage.Start()
|
2014-06-06 09:55:53 +00:00
|
|
|
|
|
|
|
closer := &testStorageCloser{
|
|
|
|
storage: storage,
|
|
|
|
directory: directory,
|
|
|
|
}
|
|
|
|
|
|
|
|
return storage, closer
|
|
|
|
}
|