| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*
- 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 (
- "testing"
- "github.com/prometheus/client_golang/prometheus"
- "github.com/prometheus/client_golang/prometheus/testutil"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
- "github.com/external-secrets/external-secrets/pkg/controllers/metrics"
- )
- func TestUpdateStatusCondition(t *testing.T) {
- // Evacuate the original condition metric labels
- tmpConditionMetricLabels := metrics.ConditionMetricLabels
- defer func() {
- metrics.ConditionMetricLabels = tmpConditionMetricLabels
- }()
- metrics.ConditionMetricLabels = map[string]string{"name": "", "namespace": "", "condition": "", "status": ""}
- name := "test"
- namespace := "test-namespace"
- tests := []struct {
- desc string
- condition esapi.SecretStoreStatusCondition
- expectedCount int
- expectedValues []struct {
- labels prometheus.Labels
- expectedValue float64
- }
- }{
- {
- desc: "ConditionTrue",
- condition: esapi.SecretStoreStatusCondition{
- Type: esapi.SecretStoreReady,
- Status: v1.ConditionTrue,
- },
- expectedValues: []struct {
- labels prometheus.Labels
- expectedValue float64
- }{
- {
- labels: prometheus.Labels{
- "namespace": namespace,
- "name": name,
- "condition": "Ready",
- "status": "True",
- },
- expectedValue: 1,
- },
- {
- labels: prometheus.Labels{
- "namespace": namespace,
- "name": name,
- "condition": "Ready",
- "status": "False",
- },
- expectedValue: 0,
- },
- },
- },
- {
- desc: "ConditionFalse",
- condition: esapi.SecretStoreStatusCondition{
- Type: esapi.SecretStoreReady,
- Status: v1.ConditionFalse,
- },
- expectedValues: []struct {
- labels prometheus.Labels
- expectedValue float64
- }{
- {
- labels: prometheus.Labels{
- "namespace": namespace,
- "name": name,
- "condition": "Ready",
- "status": "True",
- },
- expectedValue: 0,
- },
- {
- labels: prometheus.Labels{
- "namespace": namespace,
- "name": name,
- "condition": "Ready",
- "status": "False",
- },
- expectedValue: 1,
- },
- },
- },
- }
- for _, test := range tests {
- t.Run(test.desc, func(t *testing.T) {
- ss := &esapi.SecretStore{
- ObjectMeta: metav1.ObjectMeta{
- Name: name,
- Namespace: namespace,
- },
- }
- gaugeVec := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Subsystem: "metrics",
- Name: "TestUpdateStatusCondition",
- }, []string{"name", "namespace", "condition", "status"})
- getter := func(key string) *prometheus.GaugeVec {
- if key == StatusConditionKey {
- return gaugeVec
- }
- return nil
- }
- UpdateStatusCondition(ss, test.condition, getter)
- if got := testutil.CollectAndCount(gaugeVec); got != len(test.expectedValues) {
- t.Fatalf("unexpected number of calls: got: %d, expected: %d", got, len(test.expectedValues))
- }
- for i, expected := range test.expectedValues {
- if got := testutil.ToFloat64(gaugeVec.With(expected.labels)); got != expected.expectedValue {
- t.Fatalf("#%d received unexpected gauge value: got: %v, expected: %v", i, got, expected.expectedValue)
- }
- }
- })
- }
- }
|