mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add regression test
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
parent
9e1f34dae3
commit
a280169427
|
@ -1027,6 +1027,22 @@ func TestSeriesIterator(t *testing.T) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Regression for: https://github.com/prometheus/tsdb/pull/97
|
||||||
|
func TestCSIteratorDoubleSeek(t *testing.T) {
|
||||||
|
chkMetas := []*ChunkMeta{
|
||||||
|
chunkFromSamples([]sample{}),
|
||||||
|
chunkFromSamples([]sample{{1, 1}, {2, 2}, {3, 3}}),
|
||||||
|
chunkFromSamples([]sample{{4, 4}, {5, 5}}),
|
||||||
|
}
|
||||||
|
|
||||||
|
res := newChunkSeriesIterator(chkMetas, nil, 2, 8)
|
||||||
|
require.True(t, res.Seek(1))
|
||||||
|
require.True(t, res.Seek(2))
|
||||||
|
ts, v := res.At()
|
||||||
|
require.Equal(t, int64(2), ts)
|
||||||
|
require.Equal(t, float64(2), v)
|
||||||
|
}
|
||||||
|
|
||||||
func TestPopulatedCSReturnsValidChunkSlice(t *testing.T) {
|
func TestPopulatedCSReturnsValidChunkSlice(t *testing.T) {
|
||||||
lbls := []labels.Labels{labels.New(labels.Label{"a", "b"})}
|
lbls := []labels.Labels{labels.New(labels.Label{"a", "b"})}
|
||||||
chunkMetas := [][]*ChunkMeta{
|
chunkMetas := [][]*ChunkMeta{
|
||||||
|
|
Loading…
Reference in a new issue