Commit f899afb8 authored by Eric Tune's avatar Eric Tune

Merge pull request #14414 from socaa/unit

Unit tests for metrics_client.go
parents 72992ae8 1c74b330
...@@ -161,9 +161,9 @@ func calculateSumFromLatestSample(metrics heapster.MetricResultList) (uint64, in ...@@ -161,9 +161,9 @@ func calculateSumFromLatestSample(metrics heapster.MetricResultList) (uint64, in
for _, metrics := range metrics.Items { for _, metrics := range metrics.Items {
var newest *heapster.MetricPoint var newest *heapster.MetricPoint
newest = nil newest = nil
for _, metricPoint := range metrics.Metrics { for i, metricPoint := range metrics.Metrics {
if newest == nil || newest.Timestamp.Before(metricPoint.Timestamp) { if newest == nil || newest.Timestamp.Before(metricPoint.Timestamp) {
newest = &metricPoint newest = &metrics.Metrics[i]
} }
} }
if newest != nil { if newest != nil {
......
...@@ -19,136 +19,350 @@ package metrics ...@@ -19,136 +19,350 @@ package metrics
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"net/http" "io"
"net/http/httptest"
"testing" "testing"
"time" "time"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
_ "k8s.io/kubernetes/pkg/api/latest" _ "k8s.io/kubernetes/pkg/api/latest"
"k8s.io/kubernetes/pkg/api/testapi" "k8s.io/kubernetes/pkg/apis/experimental"
client "k8s.io/kubernetes/pkg/client/unversioned" client "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/client/unversioned/testclient"
"k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/util"
heapster "k8s.io/heapster/api/v1/types" heapster "k8s.io/heapster/api/v1/types"
"github.com/golang/glog"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )
const ( func (w fakeResponseWrapper) DoRaw() ([]byte, error) {
namespace = "test-namespace" return w.raw, nil
podName = "pod1" }
podListHandler = "podlisthandler"
heapsterCpuHandler = "heapstercpuhandler" func (w fakeResponseWrapper) Stream() (io.ReadCloser, error) {
heapsterMemHandler = "heapstermemhandler" return nil, nil
cpu = 650 }
memory = 20000000
) func newFakeResponseWrapper(raw []byte) fakeResponseWrapper {
return fakeResponseWrapper{raw: raw}
}
type serverResponse struct { type fakeResponseWrapper struct {
statusCode int raw []byte
obj interface{}
} }
func makeTestServer(t *testing.T, responses map[string]*serverResponse) (*httptest.Server, map[string]*util.FakeHandler) { // timestamp is used for establishing order on metricPoints
handlers := map[string]*util.FakeHandler{} type metricPoint struct {
mux := http.NewServeMux() level uint64
timestamp int
}
type testCase struct {
replicas int
desiredValue int64
desiredError error
targetResource api.ResourceName
reportedMetricsPoints [][]metricPoint
namespace string
selector map[string]string
}
func (tc *testCase) prepareTestClient(t *testing.T) *testclient.Fake {
namespace := "test-namespace"
tc.namespace = namespace
podNamePrefix := "test-pod"
selector := map[string]string{"name": podNamePrefix}
tc.selector = selector
fakeClient := &testclient.Fake{}
mkHandler := func(url string, response serverResponse) *util.FakeHandler { fakeClient.AddReactor("list", "pods", func(action testclient.Action) (handled bool, ret runtime.Object, err error) {
handler := util.FakeHandler{ obj := &api.PodList{}
StatusCode: response.statusCode, for i := 0; i < tc.replicas; i++ {
ResponseBody: runtime.EncodeOrDie(testapi.Experimental.Codec(), response.obj.(runtime.Object)), podName := fmt.Sprintf("%s-%d", podNamePrefix, i)
pod := api.Pod{
Status: api.PodStatus{
Phase: api.PodRunning,
},
ObjectMeta: api.ObjectMeta{
Name: podName,
Namespace: namespace,
Labels: selector,
},
} }
mux.Handle(url, &handler) obj.Items = append(obj.Items, pod)
glog.Infof("Will handle %s", url)
return &handler
} }
return true, obj, nil
})
mkRawHandler := func(url string, response serverResponse) *util.FakeHandler { fakeClient.AddProxyReactor("services", func(action testclient.Action) (handled bool, ret client.ResponseWrapper, err error) {
handler := util.FakeHandler{ metrics := heapster.MetricResultList{}
StatusCode: response.statusCode, firstTimestamp := time.Now()
ResponseBody: *response.obj.(*string), var latestTimestamp time.Time
for _, reportedMetricPoints := range tc.reportedMetricsPoints {
var heapsterMetricPoints []heapster.MetricPoint
for _, reportedMetricPoint := range reportedMetricPoints {
timestamp := firstTimestamp.Add(time.Duration(reportedMetricPoint.timestamp) * time.Minute)
if latestTimestamp.Before(timestamp) {
latestTimestamp = timestamp
}
heapsterMetricPoint := heapster.MetricPoint{timestamp, reportedMetricPoint.level}
heapsterMetricPoints = append(heapsterMetricPoints, heapsterMetricPoint)
}
metric := heapster.MetricResult{
Metrics: heapsterMetricPoints,
LatestTimestamp: latestTimestamp,
} }
mux.Handle(url, &handler) metrics.Items = append(metrics.Items, metric)
glog.Infof("Will handle %s", url)
return &handler
} }
heapsterRawMemResponse, _ := json.Marshal(&metrics)
return true, newFakeResponseWrapper(heapsterRawMemResponse), nil
})
if responses[podListHandler] != nil { return fakeClient
handlers[podListHandler] = mkHandler(fmt.Sprintf("/api/v1/namespaces/%s/pods", namespace), *responses[podListHandler]) }
func (tc *testCase) verifyResults(t *testing.T, val *experimental.ResourceConsumption, err error) {
assert.Equal(t, tc.desiredError, err)
if tc.desiredError != nil {
return
}
if tc.targetResource == api.ResourceCPU {
assert.Equal(t, tc.desiredValue, val.Quantity.MilliValue())
}
if tc.targetResource == api.ResourceMemory {
assert.Equal(t, tc.desiredValue, val.Quantity.Value())
} }
}
func (tc *testCase) runTest(t *testing.T) {
testClient := tc.prepareTestClient(t)
metricsClient := NewHeapsterMetricsClient(testClient)
val, err := metricsClient.ResourceConsumption(tc.namespace).Get(tc.targetResource, tc.selector)
tc.verifyResults(t, val, err)
}
if responses[heapsterCpuHandler] != nil { func TestCPU(t *testing.T) {
handlers[heapsterCpuHandler] = mkRawHandler( tc := testCase{
fmt.Sprintf("/api/v1/proxy/namespaces/kube-system/services/monitoring-heapster/api/v1/model/namespaces/%s/pod-list/%s/metrics/cpu-usage", replicas: 3,
namespace, podName), *responses[heapsterCpuHandler]) desiredValue: 5000,
targetResource: api.ResourceCPU,
reportedMetricsPoints: [][]metricPoint{{{5000, 1}}, {{5000, 1}}, {{5000, 1}}},
} }
tc.runTest(t)
}
if responses[heapsterMemHandler] != nil { func TestMemory(t *testing.T) {
handlers[heapsterMemHandler] = mkRawHandler( tc := testCase{
fmt.Sprintf("/api/v1/proxy/namespaces/kube-system/services/monitoring-heapster/api/v1/model/namespaces/%s/pod-list/%s/metrics/memory-usage", replicas: 3,
namespace, podName), *responses[heapsterMemHandler]) desiredValue: 5000,
targetResource: api.ResourceMemory,
reportedMetricsPoints: [][]metricPoint{{{5000, 1}}, {{5000, 2}}, {{5000, 4}}},
} }
tc.runTest(t)
}
mux.HandleFunc("/", func(res http.ResponseWriter, req *http.Request) { func TestCPUSumEqualZero(t *testing.T) {
t.Errorf("unexpected request: %v", req.RequestURI) tc := testCase{
res.WriteHeader(http.StatusNotFound) replicas: 3,
}) desiredValue: 0,
return httptest.NewServer(mux), handlers targetResource: api.ResourceCPU,
reportedMetricsPoints: [][]metricPoint{{{0, 0}}, {{0, 0}}, {{0, 0}}},
}
tc.runTest(t)
} }
func TestHeapsterResourceConsumptionGet(t *testing.T) { func TestMemorySumEqualZero(t *testing.T) {
podListResponse := serverResponse{http.StatusOK, &api.PodList{ tc := testCase{
Items: []api.Pod{ replicas: 3,
{ desiredValue: 0,
ObjectMeta: api.ObjectMeta{ targetResource: api.ResourceMemory,
Name: podName, reportedMetricsPoints: [][]metricPoint{{{0, 0}}, {{0, 0}}, {{0, 0}}},
Namespace: namespace, }
}, tc.runTest(t)
}}}} }
timestamp := time.Now() func TestCPUMoreMetrics(t *testing.T) {
metricsCpu := heapster.MetricResultList{ tc := testCase{
Items: []heapster.MetricResult{{ replicas: 5,
Metrics: []heapster.MetricPoint{{timestamp, cpu}}, desiredValue: 5000,
LatestTimestamp: timestamp, targetResource: api.ResourceCPU,
}}} reportedMetricsPoints: [][]metricPoint{
heapsterRawCpuResponse, _ := json.Marshal(&metricsCpu) {{0, 3}, {0, 6}, {5, 4}, {9000, 10}},
heapsterStrCpuResponse := string(heapsterRawCpuResponse) {{5000, 2}, {10, 5}, {66, 1}, {0, 10}},
heapsterCpuResponse := serverResponse{http.StatusOK, &heapsterStrCpuResponse} {{5000, 3}, {80, 5}, {6000, 10}},
{{5000, 3}, {40, 3}, {0, 9}, {200, 2}, {8000, 10}},
metricsMem := heapster.MetricResultList{ {{5000, 2}, {20, 2}, {2000, 10}}},
Items: []heapster.MetricResult{{ }
Metrics: []heapster.MetricPoint{{timestamp, memory}}, tc.runTest(t)
LatestTimestamp: timestamp, }
}}}
heapsterRawMemResponse, _ := json.Marshal(&metricsMem)
heapsterStrMemResponse := string(heapsterRawMemResponse)
heapsterMemResponse := serverResponse{http.StatusOK, &heapsterStrMemResponse}
testServer, _ := makeTestServer(t,
map[string]*serverResponse{
heapsterCpuHandler: &heapsterCpuResponse,
heapsterMemHandler: &heapsterMemResponse,
podListHandler: &podListResponse,
})
defer testServer.Close() func TestMemoryMoreMetrics(t *testing.T) {
kubeClient := client.NewOrDie(&client.Config{Host: testServer.URL, Version: testapi.Experimental.Version()}) tc := testCase{
replicas: 5,
desiredValue: 5000,
targetResource: api.ResourceMemory,
reportedMetricsPoints: [][]metricPoint{
{{0, 3}, {0, 6}, {5, 4}, {9000, 10}},
{{5000, 2}, {10, 5}, {66, 1}, {0, 10}},
{{5000, 3}, {80, 5}, {6000, 10}},
{{5000, 3}, {40, 3}, {0, 9}, {200, 2}, {8000, 10}},
{{5000, 2}, {20, 2}, {2000, 10}}},
}
tc.runTest(t)
}
metricsClient := NewHeapsterMetricsClient(kubeClient) func TestCPUResultIsFloat(t *testing.T) {
tc := testCase{
replicas: 6,
desiredValue: 4783,
targetResource: api.ResourceCPU,
reportedMetricsPoints: [][]metricPoint{{{4000, 4}}, {{9500, 4}}, {{3000, 4}}, {{7000, 4}}, {{3200, 4}}, {{2000, 4}}},
}
tc.runTest(t)
}
val, err := metricsClient.ResourceConsumption(namespace).Get(api.ResourceCPU, map[string]string{"app": "test"}) func TestMemoryResultIsFloat(t *testing.T) {
if err != nil { tc := testCase{
t.Fatalf("Error while getting consumption: %v", err) replicas: 6,
desiredValue: 4783,
targetResource: api.ResourceMemory,
reportedMetricsPoints: [][]metricPoint{{{4000, 4}}, {{9500, 4}}, {{3000, 4}}, {{7000, 4}}, {{3200, 4}}, {{2000, 4}}},
} }
assert.Equal(t, int64(cpu), val.Quantity.MilliValue()) tc.runTest(t)
}
func TestCPUSamplesWithRandomTimestamps(t *testing.T) {
tc := testCase{
replicas: 3,
desiredValue: 3000,
targetResource: api.ResourceCPU,
reportedMetricsPoints: [][]metricPoint{
{{1, 1}, {3000, 3}, {2, 2}},
{{2, 2}, {1, 1}, {3000, 3}},
{{3000, 3}, {1, 1}, {2, 2}}},
}
tc.runTest(t)
}
func TestMemorySamplesWithRandomTimestamps(t *testing.T) {
tc := testCase{
replicas: 3,
desiredValue: 3000,
targetResource: api.ResourceMemory,
reportedMetricsPoints: [][]metricPoint{
{{1, 1}, {3000, 3}, {2, 2}},
{{2, 2}, {1, 1}, {3000, 3}},
{{3000, 3}, {1, 1}, {2, 2}}},
}
tc.runTest(t)
}
func TestErrorMetricNotDefined(t *testing.T) {
tc := testCase{
replicas: 1,
desiredError: fmt.Errorf("heapster metric not defined for "),
reportedMetricsPoints: [][]metricPoint{{{4000, 4}}},
}
tc.runTest(t)
}
func TestCPUMissingMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceCPU,
desiredError: fmt.Errorf("metrics obtained for 1/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{{4000, 4}}},
}
tc.runTest(t)
}
func TestMemoryMissingMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceMemory,
desiredError: fmt.Errorf("metrics obtained for 1/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{{4000, 4}}},
}
tc.runTest(t)
}
func TestCPUSuperfluousMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceCPU,
desiredError: fmt.Errorf("metrics obtained for 6/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{{1000, 1}}, {{2000, 4}}, {{2000, 1}}, {{4000, 5}}, {{2000, 1}}, {{4000, 4}}},
}
tc.runTest(t)
}
func TestMemorySuperfluousMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceMemory,
desiredError: fmt.Errorf("metrics obtained for 6/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{{1000, 1}}, {{2000, 4}}, {{2000, 1}}, {{4000, 5}}, {{2000, 1}}, {{4000, 4}}},
}
tc.runTest(t)
}
func TestCPUEmptyMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceCPU,
desiredError: fmt.Errorf("metrics obtained for 0/3 of pods"),
reportedMetricsPoints: [][]metricPoint{},
}
tc.runTest(t)
}
func TestMemoryEmptyMetrics(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceMemory,
desiredError: fmt.Errorf("metrics obtained for 0/3 of pods"),
reportedMetricsPoints: [][]metricPoint{},
}
tc.runTest(t)
}
func TestCPUZeroReplicas(t *testing.T) {
tc := testCase{
replicas: 0,
targetResource: api.ResourceCPU,
desiredValue: 0,
reportedMetricsPoints: [][]metricPoint{},
}
tc.runTest(t)
}
func TestMemoryZeroReplicas(t *testing.T) {
tc := testCase{
replicas: 0,
targetResource: api.ResourceMemory,
desiredValue: 0,
reportedMetricsPoints: [][]metricPoint{},
}
tc.runTest(t)
}
func TestCPUEmptyMetricsForOnePod(t *testing.T) {
tc := testCase{
replicas: 3,
targetResource: api.ResourceCPU,
desiredError: fmt.Errorf("metrics obtained for 2/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{}, {{100, 1}}, {{400, 2}, {300, 3}}},
}
tc.runTest(t)
}
val, err = metricsClient.ResourceConsumption(namespace).Get(api.ResourceMemory, map[string]string{"app": "test"}) func TestMemoryEmptyMetricsForOnePod(t *testing.T) {
if err != nil { tc := testCase{
t.Fatalf("Error while getting consumption: %v", err) replicas: 3,
targetResource: api.ResourceMemory,
desiredError: fmt.Errorf("metrics obtained for 2/3 of pods"),
reportedMetricsPoints: [][]metricPoint{{}, {{100, 1}}, {{400, 2}, {300, 3}}},
} }
assert.Equal(t, int64(memory), val.Quantity.Value()) tc.runTest(t)
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment