mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-07 18:07:30 +00:00
Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
103 lines
2.5 KiB
Go
103 lines
2.5 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 template
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/crossplane/crossplane-runtime/pkg/test"
|
|
"gotest.tools/assert"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/yaml"
|
|
|
|
"github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
|
|
"github.com/oam-dev/kubevela/pkg/oam/mock"
|
|
)
|
|
|
|
func TestLoad(t *testing.T) {
|
|
cli := &test.MockClient{
|
|
MockGet: func(ctx context.Context, key client.ObjectKey, obj client.Object) error {
|
|
o, ok := obj.(*v1beta1.WorkflowStepDefinition)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
def := &v1beta1.WorkflowStepDefinition{}
|
|
js, err := yaml.YAMLToJSON([]byte(stepDefYaml))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := json.Unmarshal(js, def); err != nil {
|
|
return err
|
|
}
|
|
*o = *def
|
|
return nil
|
|
},
|
|
}
|
|
tdm := mock.NewMockDiscoveryMapper()
|
|
loader := NewWorkflowStepTemplateLoader(cli, tdm)
|
|
|
|
tmpl, err := loader.LoadTemplate(context.Background(), "builtin-apply-component")
|
|
assert.NilError(t, err)
|
|
expected, err := os.ReadFile("./static/builtin-apply-component.cue")
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, tmpl, string(expected))
|
|
|
|
tmpl, err = loader.LoadTemplate(context.Background(), "apply-oam-component")
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, tmpl, `import (
|
|
"vela/op"
|
|
)
|
|
|
|
// apply components and traits
|
|
apply: op.#ApplyComponent & {
|
|
component: parameter.component
|
|
}
|
|
parameter: {
|
|
// +usage=Declare the name of the component
|
|
component: string
|
|
}`)
|
|
}
|
|
|
|
var (
|
|
stepDefYaml = `apiVersion: core.oam.dev/v1beta1
|
|
kind: WorkflowStepDefinition
|
|
metadata:
|
|
annotations:
|
|
definition.oam.dev/description: Apply components and traits for your workflow steps
|
|
name: apply-oam-component
|
|
namespace: vela-system
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
import (
|
|
"vela/op"
|
|
)
|
|
|
|
// apply components and traits
|
|
apply: op.#ApplyComponent & {
|
|
component: parameter.component
|
|
}
|
|
parameter: {
|
|
// +usage=Declare the name of the component
|
|
component: string
|
|
}`
|
|
)
|