Files
kubevela/pkg/builtin/kind/client_test.go
Shiwen Cheng 2b07ec49d4 [Improvement-1457] Use kind cmd code to load docker image instead of local kind binary (#1458)
* [Improvement-1457] Use kind cmd code to load docker image instead of local kind binary

* [Improvement-1457] Update copyright year and kind repo declaration
2021-04-11 20:59:21 +08:00

43 lines
1.2 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 kind
import (
"testing"
)
func TestLoadDockerImageNotExist(t *testing.T) {
err := LoadDockerImage("test_not_exist")
if err != nil && err.Error() != "image: \"test_not_exist\" not present locally" {
t.Error(err)
}
}
func TestLoadDockerImages(t *testing.T) {
err := LoadDockerImages([]string{"test_not_exist"})
if err != nil && err.Error() != "image: \"test_not_exist\" not present locally" {
t.Error(err)
}
}
func TestLoadDockerImagesWithFlags(t *testing.T) {
err := LoadDockerImagesWithFlags([]string{"vela-core"}, "", nil)
if err != nil && (err.Error() != "image: \"vela-core\" not present locally" && err.Error() != "no nodes found for cluster \"kind\"") {
t.Error(err)
}
}