mirror of https://github.com/knative/client.git
84 lines
3.3 KiB
Go
84 lines
3.3 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"
|
|
"testing"
|
|
"time"
|
|
|
|
"gotest.tools/assert"
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
servingv1 "knative.dev/serving/pkg/apis/serving/v1"
|
|
|
|
dynamicfake "knative.dev/client/pkg/dynamic/fake"
|
|
clientsourcesv1alpha1 "knative.dev/client/pkg/sources/v1alpha2"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestSimpleBindingUpdate(t *testing.T) {
|
|
sinkBindingClient := clientsourcesv1alpha1.NewMockKnSinkBindingClient(t)
|
|
|
|
mysvc := createService("myscv")
|
|
othersvc := createService("othersvc")
|
|
|
|
dynamicClient := dynamicfake.CreateFakeKnDynamicClient("default", mysvc, othersvc)
|
|
|
|
bindingRecorder := sinkBindingClient.Recorder()
|
|
ceOverrideMap := map[string]string{"bla": "blub", "foo": "bar"}
|
|
ceOverrideMapUpdated := map[string]string{"foo": "baz", "new": "ceoverride"}
|
|
bindingRecorder.GetSinkBinding("testbinding", createSinkBinding("testbinding", "mysvc", deploymentGvk, "mydeploy", "default", ceOverrideMap), nil)
|
|
bindingRecorder.UpdateSinkBinding(createSinkBinding("testbinding", "othersvc", deploymentGvk, "mydeploy", "default", ceOverrideMapUpdated), nil)
|
|
|
|
out, err := executeSinkBindingCommand(sinkBindingClient, dynamicClient, "update", "testbinding", "--sink", "ksvc:othersvc", "--ce-override", "bla-", "--ce-override", "foo=baz", "--ce-override", "new=ceoverride")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(out, "updated", "default", "testbinding"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func createService(name string) *servingv1.Service {
|
|
mysvc := &servingv1.Service{
|
|
TypeMeta: v1.TypeMeta{Kind: "Service", APIVersion: "serving.knative.dev/v1"},
|
|
ObjectMeta: v1.ObjectMeta{Name: name, Namespace: "default"},
|
|
}
|
|
return mysvc
|
|
}
|
|
|
|
func TestUpdateError(t *testing.T) {
|
|
sinkBindingClient := clientsourcesv1alpha1.NewMockKnSinkBindingClient(t)
|
|
bindingRecorder := sinkBindingClient.Recorder()
|
|
bindingRecorder.GetSinkBinding("testbinding", nil, errors.New("no such binding testbinding"))
|
|
|
|
out, err := executeSinkBindingCommand(sinkBindingClient, nil, "update", "testbinding")
|
|
assert.ErrorContains(t, err, "testbinding")
|
|
assert.Assert(t, util.ContainsAll(out, "Error:", "testbinding", "no", "binding"))
|
|
|
|
bindingRecorder.Validate()
|
|
}
|
|
|
|
func TestBindingUpdateDeletionTimestampNotNil(t *testing.T) {
|
|
sinkBindingClient := clientsourcesv1alpha1.NewMockKnSinkBindingClient(t)
|
|
bindingRecorder := sinkBindingClient.Recorder()
|
|
present := createSinkBinding("testbinding", "", deploymentGvk, "", "default", nil)
|
|
present.DeletionTimestamp = &v1.Time{Time: time.Now()}
|
|
bindingRecorder.GetSinkBinding("testbinding", present, nil)
|
|
|
|
_, err := executeSinkBindingCommand(sinkBindingClient, nil, "update", "testbinding")
|
|
assert.ErrorContains(t, err, present.Name)
|
|
assert.ErrorContains(t, err, "deletion")
|
|
assert.ErrorContains(t, err, "binding")
|
|
}
|