Files
kubevela/pkg/addon/error_test.go
Siege Lion cdafc03e7d Feat: search useful addon version automatically (#4232)
* Feat: search useful addon version automatically

Verify whether the current addon version meets the system version requirements according to the obtained specified version. There are two system version requirements: Vela core version, K8s version.

If meet the requirements and continue to perform the next task.

If the requirements are not met, obtain the highest version that meets the requirements

Refs #4181

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: Optimize function implementation and code order, and modify test cases

add more comments of function

optimize package import sequence

optimize user interaction logic and error information extraction logic

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: change template string of regular expression to const type string

Signed-off-by: HanMengnan <1448189829@qq.com>
2022-06-29 17:46:56 +08:00

44 lines
1.3 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 (
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestError(t *testing.T) {
err := &VersionUnMatchError{}
assert.False(t, strings.Contains(err.Error(), "which is the latest version that suits current version requirements"))
err = &VersionUnMatchError{availableVersion: "1.0.0"}
assert.Contains(t, err.Error(), "which is the latest version that suits current version requirements")
}
func TestGetAvailableVersion(t *testing.T) {
unMatchErr := &VersionUnMatchError{availableVersion: "1.0.0"}
version, err := unMatchErr.GetAvailableVersion()
assert.Empty(t, err)
assert.Equal(t, version, "1.0.0")
unMatchErr = &VersionUnMatchError{}
version, err = unMatchErr.GetAvailableVersion()
assert.NotEmpty(t, err)
assert.Equal(t, version, "")
}