mirror of https://github.com/knative/client.git
69 lines
2.3 KiB
Go
69 lines
2.3 KiB
Go
/*
|
|
Copyright 2020 The Knative 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 container
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
v1 "knative.dev/client/pkg/sources/v1"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestDescribeError(t *testing.T) {
|
|
containerClient := v1.NewMockKnContainerSourceClient(t, "mynamespace")
|
|
|
|
containerRecorder := containerClient.Recorder()
|
|
containerRecorder.GetContainerSource("testsource", nil, errors.New("no container source testsource"))
|
|
|
|
out, err := executeContainerSourceCommand(containerClient, nil, "describe", "testsource")
|
|
assert.ErrorContains(t, err, "testsource")
|
|
assert.Assert(t, util.ContainsAll(out, "Usage", "testsource"))
|
|
|
|
containerRecorder.Validate()
|
|
}
|
|
|
|
func TestSimpleDescribe(t *testing.T) {
|
|
containerClient := v1.NewMockKnContainerSourceClient(t, "mynamespace")
|
|
|
|
containerRecorder := containerClient.Recorder()
|
|
sampleSource := createContainerSource(
|
|
"testsource", "docker.io/test/testimg",
|
|
createSinkv1("testsvc", "default"),
|
|
map[string]string{"bla": "blub", "foo": "bar"},
|
|
[]string{"env1=evalue1"},
|
|
[]string{"baz"},
|
|
)
|
|
sampleSource.Namespace = "mynamespace"
|
|
containerRecorder.GetContainerSource("testsource", sampleSource, nil)
|
|
|
|
out, err := executeContainerSourceCommand(containerClient, nil, "describe", "testsource")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(out, "testsource", "docker.io/test/testimg", "testsvc", "bla", "foo", "env1", "baz"))
|
|
assert.Assert(t, util.ContainsNone(out, "URI"))
|
|
|
|
containerRecorder.Validate()
|
|
}
|
|
|
|
func TestContainerDescribeErrorForNoArgs(t *testing.T) {
|
|
containerClient := v1.NewMockKnContainerSourceClient(t, "mynamespace")
|
|
out, err := executeContainerSourceCommand(containerClient, nil, "describe")
|
|
assert.ErrorContains(t, err, "single argument")
|
|
assert.Assert(t, util.ContainsAll(out, "requires", "single argument"))
|
|
}
|