2017-05-26 08:56:31 -07:00
|
|
|
// 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.
|
|
|
|
|
2017-05-16 00:13:33 -07:00
|
|
|
package tsdb
|
2017-11-21 03:15:02 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSetCompactionFailed(t *testing.T) {
|
|
|
|
tmpdir, err := ioutil.TempDir("", "test-tsdb")
|
|
|
|
Ok(t, err)
|
|
|
|
|
|
|
|
b := createEmptyBlock(t, tmpdir)
|
|
|
|
|
|
|
|
Equals(t, false, b.meta.Compaction.Failed)
|
|
|
|
Ok(t, b.setCompactionFailed())
|
|
|
|
Equals(t, true, b.meta.Compaction.Failed)
|
|
|
|
Ok(t, b.Close())
|
|
|
|
|
|
|
|
b, err = OpenBlock(tmpdir, nil)
|
|
|
|
Ok(t, err)
|
|
|
|
Equals(t, true, b.meta.Compaction.Failed)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createEmptyBlock(t *testing.T, dir string) *Block {
|
|
|
|
Ok(t, os.MkdirAll(dir, 0777))
|
|
|
|
|
|
|
|
Ok(t, writeMetaFile(dir, &BlockMeta{}))
|
|
|
|
|
|
|
|
ir, err := newIndexWriter(dir)
|
|
|
|
Ok(t, err)
|
|
|
|
Ok(t, ir.Close())
|
|
|
|
|
|
|
|
Ok(t, os.MkdirAll(chunkDir(dir), 0777))
|
|
|
|
|
2017-11-29 23:58:52 -08:00
|
|
|
Ok(t, writeTombstoneFile(dir, EmptyTombstoneReader()))
|
2017-11-21 03:15:02 -08:00
|
|
|
|
|
|
|
b, err := OpenBlock(dir, nil)
|
|
|
|
Ok(t, err)
|
|
|
|
return b
|
|
|
|
}
|