@@ -9,18 +9,52 @@ import (
9
9
"github.com/stretchr/testify/require"
10
10
11
11
"github.com/grafana/loki/v3/pkg/logproto"
12
+ "github.com/grafana/loki/v3/pkg/logqlmodel/stats"
13
+ "github.com/grafana/loki/v3/pkg/storage/chunk"
12
14
)
13
15
14
- type fakeClient struct {
16
+ type mockClient struct {
15
17
GatewayClient
16
18
}
17
19
18
- func (fakeClient ) GetSeries (_ context.Context , _ * logproto.GetSeriesRequest ) (* logproto.GetSeriesResponse , error ) {
20
+ func (mockClient ) GetSeries (_ context.Context , _ * logproto.GetSeriesRequest ) (* logproto.GetSeriesResponse , error ) {
19
21
return & logproto.GetSeriesResponse {}, nil
20
22
}
21
23
22
- func Test_IndexGatewayClient (t * testing.T ) {
23
- idx := NewIndexGatewayClientStore (fakeClient {}, log .NewNopLogger ())
24
- _ , err := idx .GetSeries (context .Background (), "foo" , model .Earliest , model .Latest )
24
+ func (mockClient ) GetChunkRef (_ context.Context , _ * logproto.GetChunkRefRequest ) (* logproto.GetChunkRefResponse , error ) {
25
+ return & logproto.GetChunkRefResponse {
26
+ Refs : []* logproto.ChunkRef {},
27
+ Stats : stats.Index {
28
+ TotalChunks : 1000 ,
29
+ PostFilterChunks : 10 ,
30
+ ShardsDuration : 0 ,
31
+ UsedBloomFilters : true ,
32
+ },
33
+ }, nil
34
+ }
35
+
36
+ func Test_IndexGatewayClientStore_GetSeries (t * testing.T ) {
37
+ idx := NewIndexGatewayClientStore (& mockClient {}, log .NewNopLogger ())
38
+ _ , err := idx .GetSeries (context .Background (), "tenant" , model .Earliest , model .Latest )
25
39
require .NoError (t , err )
26
40
}
41
+
42
+ func Test_IndexGatewayClientStore_GetChunkRefs (t * testing.T ) {
43
+ idx := NewIndexGatewayClientStore (& mockClient {}, log .NewNopLogger ())
44
+
45
+ t .Run ("stats context is merged correctly" , func (t * testing.T ) {
46
+ ctx := context .Background ()
47
+ _ , ctx = stats .NewContext (ctx )
48
+
49
+ _ , err := idx .GetChunkRefs (ctx , "tenant" , model .Earliest , model .Latest , chunk .NewPredicate (nil , nil ))
50
+ require .NoError (t , err )
51
+
52
+ _ , err = idx .GetChunkRefs (ctx , "tenant" , model .Earliest , model .Latest , chunk .NewPredicate (nil , nil ))
53
+ require .NoError (t , err )
54
+
55
+ statsCtx := stats .FromContext (ctx )
56
+ require .True (t , statsCtx .Index ().UsedBloomFilters )
57
+ require .Equal (t , int64 (2000 ), statsCtx .Index ().TotalChunks )
58
+ require .Equal (t , int64 (20 ), statsCtx .Index ().PostFilterChunks )
59
+ })
60
+ }
0 commit comments