Files
kubevela/references/cli/install_test.go
qiaozp dabaf03e73 Chore: swtich between old and new registry in vela install (#6173)
* Chore: swtich between old and new registry in vela install

Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com>

* add comments

Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com>

* minor fix

Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com>

---------

Signed-off-by: Qiaozp <qiaozhongpei.qzp@alibaba-inc.com>
2023-07-04 12:15:30 +08:00

62 lines
1.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 cli
import (
"testing"
"github.com/hashicorp/go-version"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/stretchr/testify/assert"
)
func TestGetKubeVelaHelmChartRepoURL(t *testing.T) {
cases := []struct {
ver string
url string
}{
{
ver: "v1.2.2",
url: "https://charts.kubevela.net/core/vela-core-1.2.2.tgz",
},
{
ver: "1.1.11",
url: "https://charts.kubevela.net/core/vela-core-1.1.11.tgz",
},
{
ver: "1.9.2",
// new helm repo
url: "https://kubevela.github.io/charts/vela-core-1.9.2.tgz",
},
}
for _, c := range cases {
v, err := version.NewVersion(c.ver)
assert.Nil(t, err)
assert.Equal(t, getKubeVelaHelmChartRepoURL(v), c.url)
}
}
var _ = Describe("Test Install Command", func() {
It("Test checkKubeServerVersion", func() {
new, _, err := checkKubeServerVersion(cfg)
Expect(err).Should(BeNil())
Expect(new).Should(BeFalse())
})
})