File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -1853,6 +1853,32 @@ func TestComputeTrafficSegments(t *testing.T) {
1853
1853
},
1854
1854
expectErr : false ,
1855
1855
},
1856
+ {
1857
+ actualTrafficWeights : map [types.UID ]float64 {
1858
+ "v1" : 50.0 ,
1859
+ "v2" : 50.0 ,
1860
+ },
1861
+ ingressSegments : map [types.UID ]string {
1862
+ "v1" : "TrafficSegment(0.0, 0.26)" ,
1863
+ "v2" : "TrafficSegment(0.24, 0.50)" ,
1864
+ "v3" : "TrafficSegment(0.50, 0.75)" ,
1865
+ "v4" : "TrafficSegment(0.75, 1.0)" ,
1866
+ },
1867
+ routeGroupSegments : map [types.UID ]string {
1868
+ "v1" : "" ,
1869
+ "v2" : "" ,
1870
+ },
1871
+ expected : []types.UID {"v1" , "v2" },
1872
+ expectedLowerLimits : map [types.UID ]float64 {
1873
+ "v2" : 0.5 ,
1874
+ "v1" : 0.0 ,
1875
+ },
1876
+ expectedUpperLimits : map [types.UID ]float64 {
1877
+ "v2" : 1.0 ,
1878
+ "v1" : 0.5 ,
1879
+ },
1880
+ expectErr : false ,
1881
+ },
1856
1882
} {
1857
1883
stackContainers := map [types.UID ]* StackContainer {}
1858
1884
for k , v := range tc .actualTrafficWeights {
You can’t perform that action at this time.
0 commit comments