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.
|
|
|
|
|
2019-09-19 02:15:41 -07:00
|
|
|
package tombstones
|
2017-05-16 20:06:56 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
2020-06-29 09:00:22 -07:00
|
|
|
"math"
|
2017-05-16 20:06:56 -07:00
|
|
|
"math/rand"
|
|
|
|
"os"
|
2018-06-08 04:52:01 -07:00
|
|
|
"sync"
|
2017-05-16 20:06:56 -07:00
|
|
|
"testing"
|
|
|
|
"time"
|
2017-12-06 17:06:14 -08:00
|
|
|
|
2019-04-26 01:27:36 -07:00
|
|
|
"github.com/go-kit/kit/log"
|
2019-08-14 02:07:02 -07:00
|
|
|
"github.com/prometheus/prometheus/util/testutil"
|
2020-07-21 01:08:06 -07:00
|
|
|
"go.uber.org/goleak"
|
2017-05-16 20:06:56 -07:00
|
|
|
)
|
|
|
|
|
2020-07-21 01:08:06 -07:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
goleak.VerifyTestMain(m)
|
|
|
|
}
|
|
|
|
|
2020-06-29 09:00:22 -07:00
|
|
|
func TestWriteAndReadbackTombstones(t *testing.T) {
|
2017-05-16 20:06:56 -07:00
|
|
|
tmpdir, _ := ioutil.TempDir("", "test")
|
2019-03-19 06:31:57 -07:00
|
|
|
defer func() {
|
|
|
|
testutil.Ok(t, os.RemoveAll(tmpdir))
|
|
|
|
}()
|
2017-05-16 20:06:56 -07:00
|
|
|
|
2017-09-04 07:08:38 -07:00
|
|
|
ref := uint64(0)
|
2017-05-16 20:06:56 -07:00
|
|
|
|
2019-09-19 02:15:41 -07:00
|
|
|
stones := NewMemTombstones()
|
2017-05-16 20:06:56 -07:00
|
|
|
// Generate the tombstones.
|
|
|
|
for i := 0; i < 100; i++ {
|
2017-09-04 07:08:38 -07:00
|
|
|
ref += uint64(rand.Int31n(10)) + 1
|
2017-05-24 01:12:56 -07:00
|
|
|
numRanges := rand.Intn(5) + 1
|
2017-08-25 01:11:46 -07:00
|
|
|
dranges := make(Intervals, 0, numRanges)
|
2017-05-16 20:06:56 -07:00
|
|
|
mint := rand.Int63n(time.Now().UnixNano())
|
|
|
|
for j := 0; j < numRanges; j++ {
|
2019-09-19 02:15:41 -07:00
|
|
|
dranges = dranges.Add(Interval{mint, mint + rand.Int63n(1000)})
|
2017-05-16 20:06:56 -07:00
|
|
|
mint += rand.Int63n(1000) + 1
|
|
|
|
}
|
2019-09-19 02:15:41 -07:00
|
|
|
stones.AddInterval(ref, dranges...)
|
2017-05-16 20:06:56 -07:00
|
|
|
}
|
|
|
|
|
2019-09-19 02:15:41 -07:00
|
|
|
_, err := WriteFile(log.NewNopLogger(), tmpdir, stones)
|
2019-06-24 08:42:29 -07:00
|
|
|
testutil.Ok(t, err)
|
2017-05-16 20:06:56 -07:00
|
|
|
|
2019-09-19 02:15:41 -07:00
|
|
|
restr, _, err := ReadTombstones(tmpdir)
|
2017-12-06 17:06:14 -08:00
|
|
|
testutil.Ok(t, err)
|
2017-11-13 04:32:24 -08:00
|
|
|
|
2017-05-16 20:06:56 -07:00
|
|
|
// Compare the two readers.
|
2017-12-06 17:06:14 -08:00
|
|
|
testutil.Equals(t, stones, restr)
|
2017-05-16 20:06:56 -07:00
|
|
|
}
|
2017-05-17 02:19:42 -07:00
|
|
|
|
|
|
|
func TestAddingNewIntervals(t *testing.T) {
|
|
|
|
cases := []struct {
|
2017-08-25 01:11:46 -07:00
|
|
|
exist Intervals
|
|
|
|
new Interval
|
2017-05-17 02:19:42 -07:00
|
|
|
|
2017-08-25 01:11:46 -07:00
|
|
|
exp Intervals
|
2017-05-17 02:19:42 -07:00
|
|
|
}{
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
new: Interval{1, 2},
|
|
|
|
exp: Intervals{{1, 2}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 2}},
|
|
|
|
new: Interval{1, 2},
|
|
|
|
exp: Intervals{{1, 2}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
2017-05-21 22:01:50 -07:00
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 4}, {6, 6}},
|
|
|
|
new: Interval{5, 6},
|
|
|
|
exp: Intervals{{1, 6}},
|
2017-05-21 22:01:50 -07:00
|
|
|
},
|
2017-05-17 02:19:42 -07:00
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
2020-06-29 09:00:22 -07:00
|
|
|
new: Interval{21, 25},
|
|
|
|
exp: Intervals{{1, 10}, {12, 30}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
exist: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{22, 23},
|
|
|
|
exp: Intervals{{1, 10}, {12, 20}, {22, 23}, {25, 30}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 2}, {3, 5}, {7, 7}},
|
|
|
|
new: Interval{6, 7},
|
|
|
|
exp: Intervals{{1, 2}, {3, 7}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{18, 23},
|
|
|
|
exp: Intervals{{1, 10}, {12, 23}, {25, 30}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{9, 23},
|
|
|
|
exp: Intervals{{1, 23}, {25, 30}},
|
2017-05-22 04:12:36 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{9, 230},
|
|
|
|
exp: Intervals{{1, 230}},
|
2017-05-22 04:12:36 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{1, 4},
|
|
|
|
exp: Intervals{{1, 10}, {12, 20}, {25, 30}},
|
2017-05-22 04:12:36 -07:00
|
|
|
},
|
|
|
|
{
|
2017-08-25 01:11:46 -07:00
|
|
|
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{11, 14},
|
|
|
|
exp: Intervals{{5, 20}, {25, 30}},
|
2017-05-17 02:19:42 -07:00
|
|
|
},
|
2020-01-05 16:32:29 -08:00
|
|
|
{
|
|
|
|
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{1, 3},
|
|
|
|
exp: Intervals{{1, 3}, {5, 10}, {12, 20}, {25, 30}},
|
|
|
|
},
|
2020-06-29 09:00:22 -07:00
|
|
|
{
|
|
|
|
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
|
|
|
|
new: Interval{35, 40},
|
|
|
|
exp: Intervals{{5, 10}, {12, 20}, {25, 30}, {35, 40}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
new: Interval{math.MinInt64, 2},
|
|
|
|
exp: Intervals{{math.MinInt64, 2}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
exist: Intervals{{math.MinInt64, 2}},
|
|
|
|
new: Interval{9, math.MaxInt64},
|
|
|
|
exp: Intervals{{math.MinInt64, 2}, {9, math.MaxInt64}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
exist: Intervals{{9, math.MaxInt64}},
|
|
|
|
new: Interval{math.MinInt64, 2},
|
|
|
|
exp: Intervals{{math.MinInt64, 2}, {9, math.MaxInt64}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
exist: Intervals{{9, math.MaxInt64}},
|
|
|
|
new: Interval{math.MinInt64, 10},
|
|
|
|
exp: Intervals{{math.MinInt64, math.MaxInt64}},
|
|
|
|
},
|
2017-05-17 02:19:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range cases {
|
2020-06-29 09:00:22 -07:00
|
|
|
t.Run("", func(t *testing.T) {
|
|
|
|
testutil.Equals(t, c.exp, c.exist.Add(c.new))
|
|
|
|
})
|
2017-05-17 02:19:42 -07:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 04:52:01 -07:00
|
|
|
|
|
|
|
// TestMemTombstonesConcurrency to make sure they are safe to access from different goroutines.
|
|
|
|
func TestMemTombstonesConcurrency(t *testing.T) {
|
2019-09-19 02:15:41 -07:00
|
|
|
tomb := NewMemTombstones()
|
2018-06-08 04:52:01 -07:00
|
|
|
totalRuns := 100
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(2)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
for x := 0; x < totalRuns; x++ {
|
2019-09-19 02:15:41 -07:00
|
|
|
tomb.AddInterval(uint64(x), Interval{int64(x), int64(x)})
|
2018-06-08 04:52:01 -07:00
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
for x := 0; x < totalRuns; x++ {
|
2019-04-25 03:07:04 -07:00
|
|
|
_, err := tomb.Get(uint64(x))
|
|
|
|
testutil.Ok(t, err)
|
2018-06-08 04:52:01 -07:00
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
wg.Wait()
|
|
|
|
}
|