kubernetes gce_loadbalancer_metrics_test 源码
kubernetes gce_loadbalancer_metrics_test 代码
文件路径:/staging/src/k8s.io/legacy-cloud-providers/gce/gce_loadbalancer_metrics_test.go
//go:build !providerless
// +build !providerless
/*
Copyright 2020 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package gce
import (
"strconv"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestComputeL4ILBMetrics(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
desc string
serviceStates []L4ILBServiceState
expectL4ILBCount map[feature]int
}{
{
desc: "empty input",
serviceStates: []L4ILBServiceState{},
expectL4ILBCount: map[feature]int{
l4ILBService: 0,
l4ILBGlobalAccess: 0,
l4ILBCustomSubnet: 0,
l4ILBInSuccess: 0,
l4ILBInError: 0,
},
},
{
desc: "one l4 ilb service",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(false, false, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 1,
l4ILBGlobalAccess: 0,
l4ILBCustomSubnet: 0,
l4ILBInSuccess: 1,
l4ILBInError: 0,
},
},
{
desc: "l4 ilb service in error state",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(false, true, false),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 1,
l4ILBGlobalAccess: 0,
l4ILBCustomSubnet: 0,
l4ILBInSuccess: 0,
l4ILBInError: 1,
},
},
{
desc: "global access for l4 ilb service enabled",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(true, false, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 1,
l4ILBGlobalAccess: 1,
l4ILBCustomSubnet: 0,
l4ILBInSuccess: 1,
l4ILBInError: 0,
},
},
{
desc: "custom subnet for l4 ilb service enabled",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(false, true, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 1,
l4ILBGlobalAccess: 0,
l4ILBCustomSubnet: 1,
l4ILBInSuccess: 1,
l4ILBInError: 0,
},
},
{
desc: "both global access and custom subnet for l4 ilb service enabled",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(true, true, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 1,
l4ILBGlobalAccess: 1,
l4ILBCustomSubnet: 1,
l4ILBInSuccess: 1,
l4ILBInError: 0,
},
},
{
desc: "many l4 ilb services",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(false, false, true),
newL4ILBServiceState(false, true, true),
newL4ILBServiceState(true, false, true),
newL4ILBServiceState(true, true, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 4,
l4ILBGlobalAccess: 2,
l4ILBCustomSubnet: 2,
l4ILBInSuccess: 4,
l4ILBInError: 0,
},
},
{
desc: "many l4 ilb services with some in error state",
serviceStates: []L4ILBServiceState{
newL4ILBServiceState(false, false, true),
newL4ILBServiceState(false, true, false),
newL4ILBServiceState(false, true, true),
newL4ILBServiceState(true, false, true),
newL4ILBServiceState(true, false, false),
newL4ILBServiceState(true, true, true),
},
expectL4ILBCount: map[feature]int{
l4ILBService: 6,
l4ILBGlobalAccess: 2,
l4ILBCustomSubnet: 2,
l4ILBInSuccess: 4,
l4ILBInError: 2,
},
},
} {
tc := tc
t.Run(tc.desc, func(t *testing.T) {
t.Parallel()
newMetrics := LoadBalancerMetrics{
l4ILBServiceMap: make(map[string]L4ILBServiceState),
}
for i, serviceState := range tc.serviceStates {
newMetrics.SetL4ILBService(strconv.Itoa(i), serviceState)
}
got := newMetrics.computeL4ILBMetrics()
if diff := cmp.Diff(tc.expectL4ILBCount, got); diff != "" {
t.Fatalf("Got diff for L4 ILB service counts (-want +got):\n%s", diff)
}
})
}
}
func newL4ILBServiceState(globalAccess, customSubnet, inSuccess bool) L4ILBServiceState {
return L4ILBServiceState{
EnabledGlobalAccess: globalAccess,
EnabledCustomSubnet: customSubnet,
InSuccess: inSuccess,
}
}
相关信息
相关文章
kubernetes gce_address_manager 源码
kubernetes gce_address_manager_test 源码
kubernetes gce_annotations_test 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony