/* Copyright 2019 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 metrics import ( "fmt" "testing" "k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache" ) func TestMetricCollection(t *testing.T) { dsw := cache.NewDesiredStateOfWorld() asw := cache.NewActualStateOfWorld() fakePlugin := cache.PluginInfo{ SocketPath: fmt.Sprintf("fake/path/plugin.sock"), } // Add one plugin to DesiredStateOfWorld err := dsw.AddOrUpdatePlugin(fakePlugin.SocketPath) if err != nil { t.Fatalf("AddOrUpdatePlugin failed. Expected: Actual: <%v>", err) } // Add one plugin to ActualStateOfWorld err = asw.AddPlugin(fakePlugin) if err != nil { t.Fatalf("AddOrUpdatePlugin failed. Expected: Actual: <%v>", err) } metricCollector := &totalPluginsCollector{asw: asw, dsw: dsw} // Check if getPluginCount returns correct data count := metricCollector.getPluginCount() if len(count) != 2 { t.Errorf("getPluginCount failed. Expected <2> states, got <%d>", len(count)) } dswCount, ok := count["desired_state_of_world"] if !ok { t.Errorf("getPluginCount failed. Expected , got nothing") } fakePluginCount := dswCount["fake/path/plugin.sock"] if fakePluginCount != 1 { t.Errorf("getPluginCount failed. Expected <1> fake/path/plugin.sock in DesiredStateOfWorld, got <%d>", fakePluginCount) } aswCount, ok := count["actual_state_of_world"] if !ok { t.Errorf("getPluginCount failed. Expected , got nothing") } fakePluginCount = aswCount["fake/path/plugin.sock"] if fakePluginCount != 1 { t.Errorf("getPluginCount failed. Expected <1> fake/path/plugin.sock in ActualStateOfWorld, got <%d>", fakePluginCount) } }