@@ -21,19 +21,20 @@ func Test_parseLimitDistribution(t *testing.T) {
21
21
wantErr bool
22
22
}{
23
23
{
24
- name : "empty_cfg " ,
24
+ name : "empty " ,
25
25
cfg : limitDistributionCfg {},
26
26
want : limitDistributions {},
27
27
},
28
28
{
29
- name : "valid_cfg " ,
29
+ name : "valid_enabled " ,
30
30
cfg : limitDistributionCfg {
31
31
Field : field ,
32
32
Ratios : []limitDistributionRatio {
33
33
{Ratio : 0.5 , Values : []string {"error" }},
34
34
{Ratio : 0.35 , Values : []string {"warn" , "info" }},
35
35
{Ratio : 0.15 , Values : []string {"debug" }},
36
36
},
37
+ Enabled : true ,
37
38
},
38
39
totalLimit : 100 ,
39
40
want : limitDistributions {
@@ -48,10 +49,38 @@ func Test_parseLimitDistribution(t *testing.T) {
48
49
"warn" : 1 , "info" : 1 ,
49
50
"debug" : 2 ,
50
51
},
52
+ enabled : true ,
51
53
},
52
54
},
53
55
{
54
- name : "valid_cfg_with_def" ,
56
+ name : "valid_disabled" ,
57
+ cfg : limitDistributionCfg {
58
+ Field : field ,
59
+ Ratios : []limitDistributionRatio {
60
+ {Ratio : 0.5 , Values : []string {"error" }},
61
+ {Ratio : 0.35 , Values : []string {"warn" , "info" }},
62
+ {Ratio : 0.15 , Values : []string {"debug" }},
63
+ },
64
+ Enabled : false ,
65
+ },
66
+ totalLimit : 100 ,
67
+ want : limitDistributions {
68
+ field : fieldSlice ,
69
+ distributions : []complexDistribution {
70
+ {ratio : 0.5 , limit : 50 },
71
+ {ratio : 0.35 , limit : 35 },
72
+ {ratio : 0.15 , limit : 15 },
73
+ },
74
+ idxByKey : map [string ]int {
75
+ "error" : 0 ,
76
+ "warn" : 1 , "info" : 1 ,
77
+ "debug" : 2 ,
78
+ },
79
+ enabled : false ,
80
+ },
81
+ },
82
+ {
83
+ name : "valid_with_def" ,
55
84
cfg : limitDistributionCfg {
56
85
Field : field ,
57
86
Ratios : []limitDistributionRatio {
@@ -80,11 +109,16 @@ func Test_parseLimitDistribution(t *testing.T) {
80
109
},
81
110
},
82
111
{
83
- name : "err_empty_ratios " ,
112
+ name : "valid_empty_ratios " ,
84
113
cfg : limitDistributionCfg {
85
- Field : field ,
114
+ Field : field ,
115
+ Enabled : true ,
116
+ },
117
+ totalLimit : 100 ,
118
+ want : limitDistributions {
119
+ field : fieldSlice ,
120
+ enabled : true ,
86
121
},
87
- wantErr : true ,
88
122
},
89
123
{
90
124
name : "err_invalid_ratio1" ,
@@ -152,8 +186,9 @@ func Test_parseLimitDistribution(t *testing.T) {
152
186
}
153
187
154
188
require .Equal (t , tt .want .field , ld .field , "wrong field" )
155
- require .Equal (t , tt .want .defDistribution , ld .defDistribution , "wrong defPriority" )
156
- require .Equal (t , true , slices .Equal (tt .want .distributions , ld .distributions ), "wrong priorities" )
189
+ require .Equal (t , tt .want .defDistribution , ld .defDistribution , "wrong defDistribution" )
190
+ require .Equal (t , tt .want .enabled , ld .enabled , "wrong enabled" )
191
+ require .True (t , slices .Equal (tt .want .distributions , ld .distributions ), "wrong distributions size" )
157
192
require .Equal (t , len (tt .want .idxByKey ), len (ld .idxByKey ), "wrong idxByKey size" )
158
193
for k , v := range ld .idxByKey {
159
194
require .Equal (t , tt .want .idxByKey [k ], v , fmt .Sprintf ("wrong value in idxByKey with key %q" , k ))
0 commit comments