123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738 |
- /*
- Copyright 2016 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 top
- import (
- "bytes"
- "io/ioutil"
- "net/http"
- "net/url"
- "strings"
- "testing"
- "time"
- "github.com/googleapis/gnostic/OpenAPIv2"
- "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/api/resource"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- apiversion "k8s.io/apimachinery/pkg/version"
- "k8s.io/cli-runtime/pkg/genericclioptions"
- restclient "k8s.io/client-go/rest"
- "k8s.io/client-go/rest/fake"
- core "k8s.io/client-go/testing"
- cmdtesting "k8s.io/kubernetes/pkg/kubectl/cmd/testing"
- cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
- "k8s.io/kubernetes/pkg/kubectl/scheme"
- metricsv1alpha1api "k8s.io/metrics/pkg/apis/metrics/v1alpha1"
- metricsv1beta1api "k8s.io/metrics/pkg/apis/metrics/v1beta1"
- metricsfake "k8s.io/metrics/pkg/client/clientset/versioned/fake"
- )
- const (
- topPathPrefix = baseMetricsAddress + "/" + metricsAPIVersion
- topMetricsAPIPathPrefix = "/apis/metrics.k8s.io/v1beta1"
- apibody = `{
- "kind": "APIVersions",
- "versions": [
- "v1"
- ],
- "serverAddressByClientCIDRs": [
- {
- "clientCIDR": "0.0.0.0/0",
- "serverAddress": "10.0.2.15:8443"
- }
- ]
- }`
- // This is not the full output one would usually get, just a trimmed down version.
- apisbody = `{
- "kind": "APIGroupList",
- "apiVersion": "v1",
- "groups": [{}]
- }`
- apisbodyWithMetrics = `{
- "kind": "APIGroupList",
- "apiVersion": "v1",
- "groups": [
- {
- "name":"metrics.k8s.io",
- "versions":[
- {
- "groupVersion":"metrics.k8s.io/v1beta1",
- "version":"v1beta1"
- }
- ],
- "preferredVersion":{
- "groupVersion":"metrics.k8s.io/v1beta1",
- "version":"v1beta1"
- },
- "serverAddressByClientCIDRs":null
- }
- ]
- }`
- )
- func TestTopPod(t *testing.T) {
- testNS := "testns"
- testCases := []struct {
- name string
- flags map[string]string
- args []string
- expectedPath string
- expectedQuery string
- namespaces []string
- containers bool
- listsNamespaces bool
- }{
- {
- name: "all namespaces",
- flags: map[string]string{"all-namespaces": "true"},
- expectedPath: topPathPrefix + "/pods",
- namespaces: []string{testNS, "secondtestns", "thirdtestns"},
- listsNamespaces: true,
- },
- {
- name: "all in namespace",
- expectedPath: topPathPrefix + "/namespaces/" + testNS + "/pods",
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with name",
- args: []string{"pod1"},
- expectedPath: topPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- },
- {
- name: "pod with label selector",
- flags: map[string]string{"selector": "key=value"},
- expectedPath: topPathPrefix + "/namespaces/" + testNS + "/pods",
- expectedQuery: "labelSelector=" + url.QueryEscape("key=value"),
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with container metrics",
- flags: map[string]string{"containers": "true"},
- args: []string{"pod1"},
- expectedPath: topPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- containers: true,
- },
- {
- name: "no-headers set",
- flags: map[string]string{"containers": "true", "no-headers": "true"},
- args: []string{"pod1"},
- expectedPath: topPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- containers: true,
- },
- }
- cmdtesting.InitTestErrorHandler(t)
- for _, testCase := range testCases {
- t.Run(testCase.name, func(t *testing.T) {
- t.Logf("Running test case: %s", testCase.name)
- metricsList := testPodMetricsData()
- var expectedMetrics []metricsv1alpha1api.PodMetrics
- var expectedContainerNames, nonExpectedMetricsNames []string
- for n, m := range metricsList {
- if n < len(testCase.namespaces) {
- m.Namespace = testCase.namespaces[n]
- expectedMetrics = append(expectedMetrics, m)
- for _, c := range m.Containers {
- expectedContainerNames = append(expectedContainerNames, c.Name)
- }
- } else {
- nonExpectedMetricsNames = append(nonExpectedMetricsNames, m.Name)
- }
- }
- var response interface{}
- if len(expectedMetrics) == 1 {
- response = expectedMetrics[0]
- } else {
- response = metricsv1alpha1api.PodMetricsList{
- ListMeta: metav1.ListMeta{
- ResourceVersion: "2",
- },
- Items: expectedMetrics,
- }
- }
- tf := cmdtesting.NewTestFactory().WithNamespace(testNS)
- defer tf.Cleanup()
- ns := scheme.Codecs
- tf.Client = &fake.RESTClient{
- NegotiatedSerializer: ns,
- Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
- switch p, m, q := req.URL.Path, req.Method, req.URL.RawQuery; {
- case p == "/api":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apibody)))}, nil
- case p == "/apis":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apisbody)))}, nil
- case p == testCase.expectedPath && m == "GET" && (testCase.expectedQuery == "" || q == testCase.expectedQuery):
- body, err := marshallBody(response)
- if err != nil {
- t.Errorf("%s: unexpected error: %v", testCase.name, err)
- }
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: body}, nil
- default:
- t.Fatalf("%s: unexpected request: %#v\nGot URL: %#v\nExpected path: %#v\nExpected query: %#v",
- testCase.name, req, req.URL, testCase.expectedPath, testCase.expectedQuery)
- return nil, nil
- }
- }),
- }
- tf.ClientConfigVal = cmdtesting.DefaultClientConfig()
- streams, _, buf, _ := genericclioptions.NewTestIOStreams()
- cmd := NewCmdTopPod(tf, nil, streams)
- for name, value := range testCase.flags {
- cmd.Flags().Set(name, value)
- }
- cmd.Run(cmd, testCase.args)
- // Check the presence of pod names&namespaces/container names in the output.
- result := buf.String()
- if testCase.containers {
- for _, containerName := range expectedContainerNames {
- if !strings.Contains(result, containerName) {
- t.Errorf("%s: missing metrics for container %s: \n%s", testCase.name, containerName, result)
- }
- }
- }
- for _, m := range expectedMetrics {
- if !strings.Contains(result, m.Name) {
- t.Errorf("%s: missing metrics for %s: \n%s", testCase.name, m.Name, result)
- }
- if testCase.listsNamespaces && !strings.Contains(result, m.Namespace) {
- t.Errorf("%s: missing metrics for %s/%s: \n%s", testCase.name, m.Namespace, m.Name, result)
- }
- }
- for _, name := range nonExpectedMetricsNames {
- if strings.Contains(result, name) {
- t.Errorf("%s: unexpected metrics for %s: \n%s", testCase.name, name, result)
- }
- }
- if cmdutil.GetFlagBool(cmd, "no-headers") && strings.Contains(result, "MEMORY") {
- t.Errorf("%s: unexpected headers with no-headers option set: \n%s", testCase.name, result)
- }
- })
- }
- }
- func TestTopPodWithMetricsServer(t *testing.T) {
- testNS := "testns"
- testCases := []struct {
- name string
- namespace string
- options *TopPodOptions
- args []string
- expectedPath string
- expectedQuery string
- namespaces []string
- containers bool
- listsNamespaces bool
- }{
- {
- name: "all namespaces",
- options: &TopPodOptions{AllNamespaces: true},
- expectedPath: topMetricsAPIPathPrefix + "/pods",
- namespaces: []string{testNS, "secondtestns", "thirdtestns"},
- listsNamespaces: true,
- },
- {
- name: "all in namespace",
- expectedPath: topMetricsAPIPathPrefix + "/namespaces/" + testNS + "/pods",
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with name",
- args: []string{"pod1"},
- expectedPath: topMetricsAPIPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- },
- {
- name: "pod with label selector",
- options: &TopPodOptions{Selector: "key=value"},
- expectedPath: topMetricsAPIPathPrefix + "/namespaces/" + testNS + "/pods",
- expectedQuery: "labelSelector=" + url.QueryEscape("key=value"),
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with container metrics",
- options: &TopPodOptions{PrintContainers: true},
- args: []string{"pod1"},
- expectedPath: topMetricsAPIPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- containers: true,
- },
- }
- cmdtesting.InitTestErrorHandler(t)
- for _, testCase := range testCases {
- t.Run(testCase.name, func(t *testing.T) {
- metricsList := testV1beta1PodMetricsData()
- var expectedMetrics []metricsv1beta1api.PodMetrics
- var expectedContainerNames, nonExpectedMetricsNames []string
- for n, m := range metricsList {
- if n < len(testCase.namespaces) {
- m.Namespace = testCase.namespaces[n]
- expectedMetrics = append(expectedMetrics, m)
- for _, c := range m.Containers {
- expectedContainerNames = append(expectedContainerNames, c.Name)
- }
- } else {
- nonExpectedMetricsNames = append(nonExpectedMetricsNames, m.Name)
- }
- }
- fakemetricsClientset := &metricsfake.Clientset{}
- if len(expectedMetrics) == 1 {
- fakemetricsClientset.AddReactor("get", "pods", func(action core.Action) (handled bool, ret runtime.Object, err error) {
- return true, &expectedMetrics[0], nil
- })
- } else {
- fakemetricsClientset.AddReactor("list", "pods", func(action core.Action) (handled bool, ret runtime.Object, err error) {
- res := &metricsv1beta1api.PodMetricsList{
- ListMeta: metav1.ListMeta{
- ResourceVersion: "2",
- },
- Items: expectedMetrics,
- }
- return true, res, nil
- })
- }
- tf := cmdtesting.NewTestFactory().WithNamespace(testNS)
- defer tf.Cleanup()
- ns := scheme.Codecs
- tf.Client = &fake.RESTClient{
- NegotiatedSerializer: ns,
- Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
- switch p := req.URL.Path; {
- case p == "/api":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apibody)))}, nil
- case p == "/apis":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apisbodyWithMetrics)))}, nil
- default:
- t.Fatalf("%s: unexpected request: %#v\nGot URL: %#v",
- testCase.name, req, req.URL)
- return nil, nil
- }
- }),
- }
- tf.ClientConfigVal = cmdtesting.DefaultClientConfig()
- streams, _, buf, _ := genericclioptions.NewTestIOStreams()
- cmd := NewCmdTopPod(tf, nil, streams)
- var cmdOptions *TopPodOptions
- if testCase.options != nil {
- cmdOptions = testCase.options
- } else {
- cmdOptions = &TopPodOptions{}
- }
- cmdOptions.IOStreams = streams
- // TODO in the long run, we want to test most of our commands like this. Wire the options struct with specific mocks
- // TODO then check the particular Run functionality and harvest results from fake clients. We probably end up skipping the factory altogether.
- if err := cmdOptions.Complete(tf, cmd, testCase.args); err != nil {
- t.Fatal(err)
- }
- cmdOptions.MetricsClient = fakemetricsClientset
- if err := cmdOptions.Validate(); err != nil {
- t.Fatal(err)
- }
- if err := cmdOptions.RunTopPod(); err != nil {
- t.Fatal(err)
- }
- // Check the presence of pod names&namespaces/container names in the output.
- result := buf.String()
- if testCase.containers {
- for _, containerName := range expectedContainerNames {
- if !strings.Contains(result, containerName) {
- t.Errorf("missing metrics for container %s: \n%s", containerName, result)
- }
- }
- }
- for _, m := range expectedMetrics {
- if !strings.Contains(result, m.Name) {
- t.Errorf("missing metrics for %s: \n%s", m.Name, result)
- }
- if testCase.listsNamespaces && !strings.Contains(result, m.Namespace) {
- t.Errorf("missing metrics for %s/%s: \n%s", m.Namespace, m.Name, result)
- }
- }
- for _, name := range nonExpectedMetricsNames {
- if strings.Contains(result, name) {
- t.Errorf("unexpected metrics for %s: \n%s", name, result)
- }
- }
- })
- }
- }
- type fakeDiscovery struct{}
- // ServerGroups returns the supported groups, with information like supported versions and the
- // preferred version.
- func (d *fakeDiscovery) ServerGroups() (*metav1.APIGroupList, error) {
- return nil, nil
- }
- // ServerResourcesForGroupVersion returns the supported resources for a group and version.
- func (d *fakeDiscovery) ServerResourcesForGroupVersion(groupVersion string) (*metav1.APIResourceList, error) {
- return nil, nil
- }
- // ServerResources returns the supported resources for all groups and versions.
- // Deprecated: use ServerGroupsAndResources instead.
- func (d *fakeDiscovery) ServerResources() ([]*metav1.APIResourceList, error) {
- return nil, nil
- }
- // ServerGroupsAndResources returns the supported groups and resources for all groups and versions.
- func (d *fakeDiscovery) ServerGroupsAndResources() ([]*metav1.APIGroup, []*metav1.APIResourceList, error) {
- return nil, nil, nil
- }
- // ServerPreferredResources returns the supported resources with the version preferred by the
- // server.
- func (d *fakeDiscovery) ServerPreferredResources() ([]*metav1.APIResourceList, error) {
- return nil, nil
- }
- // ServerPreferredNamespacedResources returns the supported namespaced resources with the
- // version preferred by the server.
- func (d *fakeDiscovery) ServerPreferredNamespacedResources() ([]*metav1.APIResourceList, error) {
- return nil, nil
- }
- // ServerVersion retrieves and parses the server's version (git version).
- func (d *fakeDiscovery) ServerVersion() (*apiversion.Info, error) {
- return nil, nil
- }
- // OpenAPISchema retrieves and parses the swagger API schema the server supports.
- func (d *fakeDiscovery) OpenAPISchema() (*openapi_v2.Document, error) {
- return nil, nil
- }
- // RESTClient returns a RESTClient that is used to communicate
- // with API server by this client implementation.
- func (d *fakeDiscovery) RESTClient() restclient.Interface {
- return nil
- }
- func TestTopPodCustomDefaults(t *testing.T) {
- customBaseHeapsterServiceAddress := "/api/v1/namespaces/custom-namespace/services/https:custom-heapster-service:/proxy"
- customBaseMetricsAddress := customBaseHeapsterServiceAddress + "/apis/metrics"
- customTopPathPrefix := customBaseMetricsAddress + "/" + metricsAPIVersion
- testNS := "custom-namespace"
- testCases := []struct {
- name string
- flags map[string]string
- args []string
- expectedPath string
- expectedQuery string
- namespaces []string
- containers bool
- listsNamespaces bool
- }{
- {
- name: "all namespaces",
- flags: map[string]string{"all-namespaces": "true"},
- expectedPath: customTopPathPrefix + "/pods",
- namespaces: []string{testNS, "secondtestns", "thirdtestns"},
- listsNamespaces: true,
- },
- {
- name: "all in namespace",
- expectedPath: customTopPathPrefix + "/namespaces/" + testNS + "/pods",
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with name",
- args: []string{"pod1"},
- expectedPath: customTopPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- },
- {
- name: "pod with label selector",
- flags: map[string]string{"selector": "key=value"},
- expectedPath: customTopPathPrefix + "/namespaces/" + testNS + "/pods",
- expectedQuery: "labelSelector=" + url.QueryEscape("key=value"),
- namespaces: []string{testNS, testNS},
- },
- {
- name: "pod with container metrics",
- flags: map[string]string{"containers": "true"},
- args: []string{"pod1"},
- expectedPath: customTopPathPrefix + "/namespaces/" + testNS + "/pods/pod1",
- namespaces: []string{testNS},
- containers: true,
- },
- }
- cmdtesting.InitTestErrorHandler(t)
- for _, testCase := range testCases {
- t.Run(testCase.name, func(t *testing.T) {
- t.Logf("Running test case: %s", testCase.name)
- metricsList := testPodMetricsData()
- var expectedMetrics []metricsv1alpha1api.PodMetrics
- var expectedContainerNames, nonExpectedMetricsNames []string
- for n, m := range metricsList {
- if n < len(testCase.namespaces) {
- m.Namespace = testCase.namespaces[n]
- expectedMetrics = append(expectedMetrics, m)
- for _, c := range m.Containers {
- expectedContainerNames = append(expectedContainerNames, c.Name)
- }
- } else {
- nonExpectedMetricsNames = append(nonExpectedMetricsNames, m.Name)
- }
- }
- var response interface{}
- if len(expectedMetrics) == 1 {
- response = expectedMetrics[0]
- } else {
- response = metricsv1alpha1api.PodMetricsList{
- ListMeta: metav1.ListMeta{
- ResourceVersion: "2",
- },
- Items: expectedMetrics,
- }
- }
- tf := cmdtesting.NewTestFactory().WithNamespace(testNS)
- defer tf.Cleanup()
- ns := scheme.Codecs
- tf.Client = &fake.RESTClient{
- NegotiatedSerializer: ns,
- Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
- switch p, m, q := req.URL.Path, req.Method, req.URL.RawQuery; {
- case p == "/api":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apibody)))}, nil
- case p == "/apis":
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: ioutil.NopCloser(bytes.NewReader([]byte(apisbody)))}, nil
- case p == testCase.expectedPath && m == "GET" && (testCase.expectedQuery == "" || q == testCase.expectedQuery):
- body, err := marshallBody(response)
- if err != nil {
- t.Errorf("%s: unexpected error: %v", testCase.name, err)
- }
- return &http.Response{StatusCode: 200, Header: cmdtesting.DefaultHeader(), Body: body}, nil
- default:
- t.Fatalf("%s: unexpected request: %#v\nGot URL: %#v\nExpected path: %#v\nExpected query: %#v",
- testCase.name, req, req.URL, testCase.expectedPath, testCase.expectedQuery)
- return nil, nil
- }
- }),
- }
- tf.ClientConfigVal = cmdtesting.DefaultClientConfig()
- streams, _, buf, _ := genericclioptions.NewTestIOStreams()
- opts := &TopPodOptions{
- HeapsterOptions: HeapsterTopOptions{
- Namespace: "custom-namespace",
- Scheme: "https",
- Service: "custom-heapster-service",
- },
- DiscoveryClient: &fakeDiscovery{},
- IOStreams: streams,
- }
- cmd := NewCmdTopPod(tf, opts, streams)
- for name, value := range testCase.flags {
- cmd.Flags().Set(name, value)
- }
- cmd.Run(cmd, testCase.args)
- // Check the presence of pod names&namespaces/container names in the output.
- result := buf.String()
- if testCase.containers {
- for _, containerName := range expectedContainerNames {
- if !strings.Contains(result, containerName) {
- t.Errorf("%s: missing metrics for container %s: \n%s", testCase.name, containerName, result)
- }
- }
- }
- for _, m := range expectedMetrics {
- if !strings.Contains(result, m.Name) {
- t.Errorf("%s: missing metrics for %s: \n%s", testCase.name, m.Name, result)
- }
- if testCase.listsNamespaces && !strings.Contains(result, m.Namespace) {
- t.Errorf("%s: missing metrics for %s/%s: \n%s", testCase.name, m.Namespace, m.Name, result)
- }
- }
- for _, name := range nonExpectedMetricsNames {
- if strings.Contains(result, name) {
- t.Errorf("%s: unexpected metrics for %s: \n%s", testCase.name, name, result)
- }
- }
- })
- }
- }
- func testV1beta1PodMetricsData() []metricsv1beta1api.PodMetrics {
- return []metricsv1beta1api.PodMetrics{
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod1", Namespace: "test", ResourceVersion: "10", Labels: map[string]string{"key": "value"}},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1beta1api.ContainerMetrics{
- {
- Name: "container1-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(1, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(2*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(3*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container1-2",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(4, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(5*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(6*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod2", Namespace: "test", ResourceVersion: "11", Labels: map[string]string{"key": "value"}},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1beta1api.ContainerMetrics{
- {
- Name: "container2-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(7, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(8*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(9*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container2-2",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(10, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(11*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(12*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container2-3",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(13, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(14*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(15*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod3", Namespace: "test", ResourceVersion: "12"},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1beta1api.ContainerMetrics{
- {
- Name: "container3-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(7, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(8*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(9*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- }
- }
- func testPodMetricsData() []metricsv1alpha1api.PodMetrics {
- return []metricsv1alpha1api.PodMetrics{
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod1", Namespace: "test", ResourceVersion: "10"},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1alpha1api.ContainerMetrics{
- {
- Name: "container1-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(1, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(2*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(3*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container1-2",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(4, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(5*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(6*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod2", Namespace: "test", ResourceVersion: "11"},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1alpha1api.ContainerMetrics{
- {
- Name: "container2-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(7, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(8*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(9*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container2-2",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(10, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(11*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(12*(1024*1024), resource.DecimalSI),
- },
- },
- {
- Name: "container2-3",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(13, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(14*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(15*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- {
- ObjectMeta: metav1.ObjectMeta{Name: "pod3", Namespace: "test", ResourceVersion: "12"},
- Window: metav1.Duration{Duration: time.Minute},
- Containers: []metricsv1alpha1api.ContainerMetrics{
- {
- Name: "container3-1",
- Usage: v1.ResourceList{
- v1.ResourceCPU: *resource.NewMilliQuantity(7, resource.DecimalSI),
- v1.ResourceMemory: *resource.NewQuantity(8*(1024*1024), resource.DecimalSI),
- v1.ResourceStorage: *resource.NewQuantity(9*(1024*1024), resource.DecimalSI),
- },
- },
- },
- },
- }
- }
|