76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
// 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 tsdb
 | 
						|
 | 
						|
import (
 | 
						|
	"io/ioutil"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/prometheus/tsdb/index"
 | 
						|
	"github.com/prometheus/tsdb/testutil"
 | 
						|
)
 | 
						|
 | 
						|
// In Prometheus 2.1.0 we had a bug where the meta.json version was falsely bumped
 | 
						|
// to 2. We had a migration in place resetting it to 1 but we should move immediately to
 | 
						|
// version 3 next time to avoid confusion and issues.
 | 
						|
func TestBlockMetaMustNeverBeVersion2(t *testing.T) {
 | 
						|
	dir, err := ioutil.TempDir("", "metaversion")
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	defer os.RemoveAll(dir)
 | 
						|
 | 
						|
	testutil.Ok(t, writeMetaFile(dir, &BlockMeta{}))
 | 
						|
 | 
						|
	meta, err := readMetaFile(dir)
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	testutil.Assert(t, meta.Version != 2, "meta.json version must never be 2")
 | 
						|
}
 | 
						|
 | 
						|
func TestSetCompactionFailed(t *testing.T) {
 | 
						|
	tmpdir, err := ioutil.TempDir("", "test")
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	defer os.RemoveAll(tmpdir)
 | 
						|
 | 
						|
	b := createEmptyBlock(t, tmpdir, &BlockMeta{Version: 2})
 | 
						|
 | 
						|
	testutil.Equals(t, false, b.meta.Compaction.Failed)
 | 
						|
	testutil.Ok(t, b.setCompactionFailed())
 | 
						|
	testutil.Equals(t, true, b.meta.Compaction.Failed)
 | 
						|
	testutil.Ok(t, b.Close())
 | 
						|
 | 
						|
	b, err = OpenBlock(tmpdir, nil)
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	testutil.Equals(t, true, b.meta.Compaction.Failed)
 | 
						|
}
 | 
						|
 | 
						|
// createEmpty block creates a block with the given meta but without any data.
 | 
						|
func createEmptyBlock(t *testing.T, dir string, meta *BlockMeta) *Block {
 | 
						|
	testutil.Ok(t, os.MkdirAll(dir, 0777))
 | 
						|
 | 
						|
	testutil.Ok(t, writeMetaFile(dir, meta))
 | 
						|
 | 
						|
	ir, err := index.NewWriter(filepath.Join(dir, indexFilename))
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	testutil.Ok(t, ir.Close())
 | 
						|
 | 
						|
	testutil.Ok(t, os.MkdirAll(chunkDir(dir), 0777))
 | 
						|
 | 
						|
	testutil.Ok(t, writeTombstoneFile(dir, NewMemTombstones()))
 | 
						|
 | 
						|
	b, err := OpenBlock(dir, nil)
 | 
						|
	testutil.Ok(t, err)
 | 
						|
	return b
 | 
						|
}
 |