mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 01:14:22 +00:00
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
/*
|
|
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 target_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"sigs.k8s.io/kustomize/pkg/pgmconfig"
|
|
"sigs.k8s.io/kustomize/pkg/types"
|
|
)
|
|
|
|
func writeGenerator(th *KustTestHarness, path string) {
|
|
th.writeF(path, `
|
|
apiVersion: strings.microwoosh.com/v1
|
|
kind: ServiceGenerator
|
|
metadata:
|
|
name: myServiceGenerator
|
|
service: my-service
|
|
port: "12345"
|
|
`)
|
|
}
|
|
|
|
func TestGeneratorPlugin(t *testing.T) {
|
|
dir, err := filepath.Abs("../../..")
|
|
if err != nil {
|
|
t.Errorf("unexpected error %v", err)
|
|
}
|
|
os.Setenv(pgmconfig.XDG_CONFIG_HOME, dir)
|
|
defer os.Unsetenv(pgmconfig.XDG_CONFIG_HOME)
|
|
|
|
err = buildGoPlugins(dir, "ServiceGenerator")
|
|
if err != nil {
|
|
t.Errorf("unexpected error %v", err)
|
|
}
|
|
|
|
th := NewKustTestHarnessWithPluginConfig(
|
|
t, "/app", types.PluginConfig{GoEnabled: true})
|
|
th.writeK("/app", `
|
|
generators:
|
|
- serviceGenerator.yaml
|
|
`)
|
|
writeGenerator(th, "/app/serviceGenerator.yaml")
|
|
m, err := th.makeKustTarget().MakeCustomizedResMap()
|
|
if err != nil {
|
|
t.Fatalf("Err: %v", err)
|
|
}
|
|
th.assertActualEqualsExpected(m, `
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: dev
|
|
name: my-service
|
|
spec:
|
|
ports:
|
|
- port: 12345
|
|
selector:
|
|
app: dev
|
|
`)
|
|
}
|