-
Notifications
You must be signed in to change notification settings - Fork 82
/
storage_test.go
113 lines (109 loc) · 2.78 KB
/
storage_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package tstorage
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_storage_Select(t *testing.T) {
tests := []struct {
name string
storage storage
metric string
labels []Label
start int64
end int64
want []*DataPoint
wantErr bool
}{
{
name: "select from single partition",
metric: "metric1",
start: 1,
end: 4,
storage: func() storage {
part1 := newMemoryPartition(nil, 1*time.Hour, Seconds)
_, err := part1.insertRows([]Row{
{DataPoint: DataPoint{Timestamp: 1}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 2}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 3}, Metric: "metric1"},
})
if err != nil {
panic(err)
}
list := newPartitionList()
list.insert(part1)
return storage{
partitionList: list,
workersLimitCh: make(chan struct{}, defaultWorkersLimit),
}
}(),
want: []*DataPoint{
{Timestamp: 1},
{Timestamp: 2},
{Timestamp: 3},
},
},
{
name: "select from three partitions",
metric: "metric1",
start: 1,
end: 10,
storage: func() storage {
part1 := newMemoryPartition(nil, 1*time.Hour, Seconds)
_, err := part1.insertRows([]Row{
{DataPoint: DataPoint{Timestamp: 1}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 2}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 3}, Metric: "metric1"},
})
if err != nil {
panic(err)
}
part2 := newMemoryPartition(nil, 1*time.Hour, Seconds)
_, err = part2.insertRows([]Row{
{DataPoint: DataPoint{Timestamp: 4}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 5}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 6}, Metric: "metric1"},
})
if err != nil {
panic(err)
}
part3 := newMemoryPartition(nil, 1*time.Hour, Seconds)
_, err = part3.insertRows([]Row{
{DataPoint: DataPoint{Timestamp: 7}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 8}, Metric: "metric1"},
{DataPoint: DataPoint{Timestamp: 9}, Metric: "metric1"},
})
if err != nil {
panic(err)
}
list := newPartitionList()
list.insert(part1)
list.insert(part2)
list.insert(part3)
return storage{
partitionList: list,
workersLimitCh: make(chan struct{}, defaultWorkersLimit),
}
}(),
want: []*DataPoint{
{Timestamp: 1},
{Timestamp: 2},
{Timestamp: 3},
{Timestamp: 4},
{Timestamp: 5},
{Timestamp: 6},
{Timestamp: 7},
{Timestamp: 8},
{Timestamp: 9},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.storage.Select(tt.metric, tt.labels, tt.start, tt.end)
assert.Equal(t, tt.wantErr, err != nil)
assert.Equal(t, tt.want, got)
assert.Equal(t, tt.want, got)
})
}
}