mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 10:00:06 +00:00
* chore(Makefile): Give the help information of Makefile to make it more readable Signed-off-by: Xinwei Xiong <3293172751nss@gmail.com> fix: Fixed some spelling mistakes Signed-off-by: Xinwei Xiong <3293172751nss@gmail.com> fix: part of the makefile shows a problem Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: makefile targer image-cleanup Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
72 lines
1.6 KiB
Go
72 lines
1.6 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 addon
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"helm.sh/helm/v3/pkg/chart/loader"
|
|
)
|
|
|
|
var files = []*loader.BufferedFile{
|
|
{
|
|
Name: "metadata.yaml",
|
|
Data: []byte(`name: test-helm-addon
|
|
version: 1.0.0
|
|
description: This is a addon for test when install addon from helm repo
|
|
icon: https://www.terraform.io/assets/images/logo-text-8c3ba8a6.svg
|
|
url: https://terraform.io/
|
|
|
|
tags: []
|
|
|
|
deployTo:
|
|
control_plane: true
|
|
runtime_cluster: false
|
|
|
|
dependencies: []
|
|
|
|
invisible: false`),
|
|
},
|
|
{
|
|
Name: "/resources/parameter.cue",
|
|
Data: []byte(`parameter: {
|
|
// test wrong parameter
|
|
example: *"default"
|
|
}`),
|
|
},
|
|
}
|
|
|
|
func TestMemoryReader(t *testing.T) {
|
|
m := MemoryReader{
|
|
Name: "fluxcd",
|
|
Files: files,
|
|
}
|
|
|
|
meta, err := m.ListAddonMeta()
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, len(meta["fluxcd"].Items), 2)
|
|
|
|
metaFile, err := m.ReadFile("metadata.yaml")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, metaFile)
|
|
|
|
parameterData, err := m.ReadFile("/resources/parameter.cue")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, parameterData)
|
|
}
|