Files
kubevela/pkg/appfile/helm/helm_test.go

102 lines
2.9 KiB
Go

/*
Copyright 2021 The KubeVela 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 helm
import (
"fmt"
"testing"
"github.com/google/go-cmp/cmp"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"sigs.k8s.io/yaml"
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
helmapi "github.com/oam-dev/kubevela/pkg/appfile/helm/flux2apis"
)
func TestRenderHelmReleaseAndHelmRepo(t *testing.T) {
h := testData("podinfo", "1.0.0", "test.com", "testSecret")
chartValues := map[string]interface{}{
"image": map[string]interface{}{
"tag": "1.0.1",
},
}
rls, repo, err := RenderHelmReleaseAndHelmRepo(h, "test-comp", "test-app", "test-ns", chartValues)
if err != nil {
t.Fatalf("want: nil, got: %v", err)
}
expectRls := &unstructured.Unstructured{}
expectRls.SetGroupVersionKind(helmapi.HelmReleaseGVK)
expectRls.SetName("test-app-test-comp")
expectRls.SetNamespace("test-ns")
unstructured.SetNestedMap(expectRls.Object, map[string]interface{}{
"chart": map[string]interface{}{
"spec": map[string]interface{}{
"chart": "podinfo",
"version": "1.0.0",
"sourceRef": map[string]interface{}{
"kind": "HelmRepository",
"name": "test-app-test-comp",
"namespace": "test-ns",
},
},
},
"interval": "5m0s",
"values": map[string]interface{}{"image": map[string]interface{}{"tag": "1.0.1"}},
}, "spec")
if diff := cmp.Diff(expectRls, rls); diff != "" {
t.Errorf("\n%s\nApply(...): -want , +got \n%s\n", "render HelmRelease", diff)
}
expectRepo := &unstructured.Unstructured{}
expectRepo.SetGroupVersionKind(helmapi.HelmRepositoryGVK)
expectRepo.SetName("test-app-test-comp")
expectRepo.SetNamespace("test-ns")
unstructured.SetNestedMap(expectRepo.Object, map[string]interface{}{
"url": "test.com",
"secretRef": map[string]interface{}{
"name": "testSecret",
},
"interval": "5m0s",
}, "spec")
if diff := cmp.Diff(expectRepo, repo); diff != "" {
t.Errorf("\n%s\nApply(...): -want , +got \n%s\n", "render HelmRepository", diff)
}
}
func testData(chart, version, repoURL, secretName string) *common.Helm {
rlsStr := fmt.Sprintf(
`chart:
spec:
chart: "%s"
version: "%s"`, chart, version)
repoStr := fmt.Sprintf(
`url: "%s"
secretRef:
name: "%s"`, repoURL, secretName)
rlsJson, _ := yaml.YAMLToJSON([]byte(rlsStr))
repoJson, _ := yaml.YAMLToJSON([]byte(repoStr))
h := &common.Helm{}
h.Release.Raw = rlsJson
h.Repository.Raw = repoJson
return h
}