Files
kubevela/references/cli/top/utils/metrics_test.go
Siege Lion 5a241078b7 Feat: add new system info to system info board and optimize code (#4640)
newly added system info including:
1. Cluster num
2. App running num
3. cpu and mem usage condition of vela-core
4. cpu and mem usage condition of vela-core cluster gateway

Signed-off-by: HanMengnan <1448189829@qq.com>

Signed-off-by: HanMengnan <1448189829@qq.com>
2022-08-22 18:00:49 +08:00

75 lines
2.1 KiB
Go

/*
Copyright 2022 The KubeVela 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 utils
import (
"testing"
"github.com/stretchr/testify/assert"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"k8s.io/metrics/pkg/apis/metrics/v1beta1"
)
func TestToPercentageStr(t *testing.T) {
var v1, v2 int64
v1, v2 = 10, 100
assert.Equal(t, ToPercentageStr(v1, v2), "10%")
v1, v2 = 10, 0
assert.Equal(t, ToPercentageStr(v1, v2), NA)
}
func TestGatherPodMX(t *testing.T) {
quantityLimitsCPU, _ := resource.ParseQuantity("10m")
quantityLimitsMemory, _ := resource.ParseQuantity("10Mi")
quantityRequestsCPU, _ := resource.ParseQuantity("100m")
quantityRequestsMemory, _ := resource.ParseQuantity("50Mi")
quantityUsageCPU, _ := resource.ParseQuantity("8m")
quantityUsageMemory, _ := resource.ParseQuantity("20Mi")
pod := &v1.Pod{
Spec: v1.PodSpec{
Containers: []v1.Container{
{
Resources: v1.ResourceRequirements{
Requests: map[v1.ResourceName]resource.Quantity{"memory": quantityRequestsMemory, "cpu": quantityRequestsCPU},
Limits: map[v1.ResourceName]resource.Quantity{"memory": quantityLimitsMemory, "cpu": quantityLimitsCPU},
},
},
},
},
}
podMetric := &v1beta1.PodMetrics{
Containers: []v1beta1.ContainerMetrics{
{
Name: "",
Usage: map[v1.ResourceName]resource.Quantity{
"memory": quantityUsageMemory, "cpu": quantityUsageCPU,
},
},
},
}
c, r := GatherPodMX(pod, podMetric)
assert.Equal(t, c.CPU, int64(8))
assert.Equal(t, c.Mem, int64(20971520))
assert.Equal(t, r.Lcpu, int64(10))
assert.Equal(t, r.Lmem, int64(10485760))
assert.Equal(t, r.CPU, int64(100))
assert.Equal(t, r.Mem, int64(52428800))
}