mirror of https://github.com/knative/client.git
131 lines
4.4 KiB
Go
131 lines
4.4 KiB
Go
// Copyright © 2019 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 binding
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
v1alpha2 "knative.dev/eventing/pkg/apis/sources/v1alpha2"
|
|
"knative.dev/pkg/apis"
|
|
duckv1 "knative.dev/pkg/apis/duck/v1"
|
|
"knative.dev/pkg/apis/duck/v1alpha1"
|
|
"knative.dev/pkg/tracker"
|
|
|
|
clientv1alpha2 "knative.dev/client/pkg/sources/v1alpha2"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
var (
|
|
sinkURI = duckv1.Destination{
|
|
URI: &apis.URL{
|
|
Scheme: "https",
|
|
Host: "foo",
|
|
}}
|
|
)
|
|
|
|
func TestSimpleDescribeWitName(t *testing.T) {
|
|
bindingClient := clientv1alpha2.NewMockKnSinkBindingClient(t, "mynamespace")
|
|
|
|
bindingRecorder := bindingClient.Recorder()
|
|
bindingRecorder.GetSinkBinding("mybinding", getSinkBindingSource("myapp", map[string]string{"foo": "bar"}, createServiceSink("mysvc", "myservicenamespace")), nil)
|
|
|
|
out, err := executeSinkBindingCommand(bindingClient, nil, "describe", "mybinding")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(out, "mysinkbinding", "myapp", "Deployment", "apps/v1", "mynamespace", "mysvc", "foo", "bar", "myservicenamespace", "Service (serving.knative.dev/v1)"))
|
|
assert.Assert(t, util.ContainsNone(out, "URI"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func TestSimpleDescribeWithSelector(t *testing.T) {
|
|
bindingClient := clientv1alpha2.NewMockKnSinkBindingClient(t, "mynamespace")
|
|
|
|
bindingRecorder := bindingClient.Recorder()
|
|
bindingRecorder.GetSinkBinding("mybinding", getSinkBindingSource("app=myapp,type=test", nil, createServiceSink("mysvc", "myservicenamespace")), nil)
|
|
|
|
out, err := executeSinkBindingCommand(bindingClient, nil, "describe", "mybinding")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(out, "mysinkbinding", "app:", "myapp", "type:", "test", "Deployment", "apps/v1", "mynamespace", "mysvc", "myservicenamespace", "Service (serving.knative.dev/v1)"))
|
|
assert.Assert(t, util.ContainsNone(out, "URI"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func TestDescribeError(t *testing.T) {
|
|
bindingClient := clientv1alpha2.NewMockKnSinkBindingClient(t, "mynamespace")
|
|
|
|
bindingRecorder := bindingClient.Recorder()
|
|
bindingRecorder.GetSinkBinding("mybinding", nil, errors.New("no sink binding mybinding found"))
|
|
|
|
out, err := executeSinkBindingCommand(bindingClient, nil, "describe", "mybinding")
|
|
assert.ErrorContains(t, err, "mybinding")
|
|
assert.Assert(t, util.ContainsAll(out, "mybinding"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func TestDescribeWithSinkURI(t *testing.T) {
|
|
bindingClient := clientv1alpha2.NewMockKnSinkBindingClient(t, "mynamespace")
|
|
|
|
bindingRecorder := bindingClient.Recorder()
|
|
bindingRecorder.GetSinkBinding("mybinding", getSinkBindingSource("myapp", map[string]string{"foo": "bar"}, sinkURI), nil)
|
|
|
|
out, err := executeSinkBindingCommand(bindingClient, nil, "describe", "mybinding")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(out, "mysinkbinding", "myapp", "Deployment", "apps/v1", "mynamespace", "foo", "bar", "URI", "https", "foo"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func getSinkBindingSource(nameOrSelector string, ceOverrides map[string]string, sink duckv1.Destination) *v1alpha2.SinkBinding {
|
|
binding := &v1alpha2.SinkBinding{
|
|
TypeMeta: v1.TypeMeta{},
|
|
ObjectMeta: v1.ObjectMeta{
|
|
Name: "mysinkbinding",
|
|
},
|
|
Spec: v1alpha2.SinkBindingSpec{
|
|
SourceSpec: duckv1.SourceSpec{
|
|
Sink: sink,
|
|
},
|
|
BindingSpec: v1alpha1.BindingSpec{
|
|
Subject: tracker.Reference{
|
|
APIVersion: "apps/v1",
|
|
Kind: "Deployment",
|
|
Namespace: "mynamespace",
|
|
},
|
|
},
|
|
},
|
|
Status: v1alpha2.SinkBindingStatus{},
|
|
}
|
|
|
|
if strings.Contains(nameOrSelector, "=") {
|
|
selector, _ := parseSelector(nameOrSelector)
|
|
binding.Spec.Subject.Selector = &v1.LabelSelector{
|
|
MatchLabels: selector,
|
|
}
|
|
} else {
|
|
binding.Spec.Subject.Name = nameOrSelector
|
|
}
|
|
|
|
if ceOverrides != nil {
|
|
binding.Spec.CloudEventOverrides = &duckv1.CloudEventOverrides{Extensions: ceOverrides}
|
|
}
|
|
return binding
|
|
}
|