/* Copyright 2020 The Flux 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 util import ( "reflect" "testing" "helm.sh/helm/v3/pkg/chartutil" "helm.sh/helm/v3/pkg/release" ) func TestMergeMaps(t *testing.T) { nestedMap := map[string]interface{}{ "foo": "bar", "baz": map[string]string{ "cool": "stuff", }, } anotherNestedMap := map[string]interface{}{ "foo": "bar", "baz": map[string]string{ "cool": "things", "awesome": "stuff", }, } flatMap := map[string]interface{}{ "foo": "bar", "baz": "stuff", } anotherFlatMap := map[string]interface{}{ "testing": "fun", } testMap := MergeMaps(flatMap, nestedMap) equal := reflect.DeepEqual(testMap, nestedMap) if !equal { t.Errorf("Expected a nested map to overwrite a flat value. Expected: %v, got %v", nestedMap, testMap) } testMap = MergeMaps(nestedMap, flatMap) equal = reflect.DeepEqual(testMap, flatMap) if !equal { t.Errorf("Expected a flat value to overwrite a map. Expected: %v, got %v", flatMap, testMap) } testMap = MergeMaps(nestedMap, anotherNestedMap) equal = reflect.DeepEqual(testMap, anotherNestedMap) if !equal { t.Errorf("Expected a nested map to overwrite another nested map. Expected: %v, got %v", anotherNestedMap, testMap) } testMap = MergeMaps(anotherFlatMap, anotherNestedMap) expectedMap := map[string]interface{}{ "testing": "fun", "foo": "bar", "baz": map[string]string{ "cool": "things", "awesome": "stuff", }, } equal = reflect.DeepEqual(testMap, expectedMap) if !equal { t.Errorf("Expected a map with different keys to merge properly with another map. Expected: %v, got %v", expectedMap, testMap) } } func TestValuesChecksum(t *testing.T) { tests := []struct { name string values chartutil.Values want string }{ { name: "empty", values: chartutil.Values{}, want: "da39a3ee5e6b4b0d3255bfef95601890afd80709", }, { name: "value map", values: chartutil.Values{ "foo": "bar", "baz": map[string]string{ "cool": "stuff", }, }, want: "7d487b668ca37fe68c42adfc06fa4d0e74443afd", }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := ValuesChecksum(tt.values); got != tt.want { t.Errorf("ValuesChecksum() = %v, want %v", got, tt.want) } }) } } func TestReleaseRevision(t *testing.T) { var rel *release.Release if rev := ReleaseRevision(rel); rev != 0 { t.Fatalf("ReleaseRevision() = %v, want %v", rev, 0) } rel = &release.Release{Version: 1} if rev := ReleaseRevision(rel); rev != 1 { t.Fatalf("ReleaseRevision() = %v, want %v", rev, 1) } }