mirror of https://github.com/knative/client.git
94 lines
4.3 KiB
Go
94 lines
4.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 apiserver
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
"time"
|
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
servingv1 "knative.dev/serving/pkg/apis/serving/v1"
|
|
|
|
dynamicfake "knative.dev/client/pkg/dynamic/fake"
|
|
v1 "knative.dev/client/pkg/sources/v1"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestApiServerSourceUpdate(t *testing.T) {
|
|
apiServerClient := v1.NewMockKnAPIServerSourceClient(t)
|
|
dynamicClient := dynamicfake.CreateFakeKnDynamicClient("default", &servingv1.Service{
|
|
TypeMeta: metav1.TypeMeta{Kind: "Service", APIVersion: "serving.knative.dev/v1"},
|
|
ObjectMeta: metav1.ObjectMeta{Name: "svc2", Namespace: "default"},
|
|
})
|
|
|
|
apiServerRecorder := apiServerClient.Recorder()
|
|
|
|
present := createAPIServerSource("testsource", "testsa1", "Reference", []string{"Event"}, []string{"v1"}, map[string]string{"bla": "blub", "foo": "bar"}, createSinkv1("svc1", "default"))
|
|
apiServerRecorder.GetAPIServerSource("testsource", present, nil)
|
|
|
|
updated := createAPIServerSource("testsource", "testsa2", "Reference", []string{"Event", "Pod"}, []string{"v1", "v1"}, map[string]string{"foo": "baz"}, createSinkv1("svc2", "default"))
|
|
apiServerRecorder.UpdateAPIServerSource(updated, nil)
|
|
|
|
output, err := executeAPIServerSourceCommand(apiServerClient, dynamicClient, "update", "testsource", "--service-account", "testsa2", "--sink", "ksvc:svc2", "--ce-override", "bla-", "--ce-override", "foo=baz", "--mode", "Reference", "--resource", "Pod:v1")
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, util.ContainsAll(output, "testsource", "updated", "default"))
|
|
|
|
apiServerRecorder.Validate()
|
|
}
|
|
|
|
func TestApiServerSourceUpdateDeletionTimestampNotNil(t *testing.T) {
|
|
apiServerClient := v1.NewMockKnAPIServerSourceClient(t)
|
|
apiServerRecorder := apiServerClient.Recorder()
|
|
|
|
present := createAPIServerSource("testsource", "testsa1", "Ref", []string{"Event"}, []string{"v1"}, nil, createSinkv1("svc1", "default"))
|
|
present.DeletionTimestamp = &metav1.Time{Time: time.Now()}
|
|
apiServerRecorder.GetAPIServerSource("testsource", present, nil)
|
|
|
|
_, err := executeAPIServerSourceCommand(apiServerClient, nil, "update", "testsource", "--service-account", "testsa2", "--sink", "ksvc:svc2")
|
|
assert.ErrorContains(t, err, present.Name)
|
|
assert.ErrorContains(t, err, "deletion")
|
|
assert.ErrorContains(t, err, "apiserver")
|
|
}
|
|
|
|
func TestApiServerUpdateErrorForNoArgs(t *testing.T) {
|
|
apiServerClient := v1.NewMockKnAPIServerSourceClient(t)
|
|
out, err := executeAPIServerSourceCommand(apiServerClient, nil, "update")
|
|
assert.ErrorContains(t, err, "single argument")
|
|
assert.Assert(t, util.ContainsAll(out, "requires", "single argument"))
|
|
}
|
|
|
|
func TestApiServerUpdateSinkMissingError(t *testing.T) {
|
|
apiServerClient := v1.NewMockKnAPIServerSourceClient(t)
|
|
apiServerRecorder := apiServerClient.Recorder()
|
|
|
|
//check if sink is missing
|
|
dynamicClient := dynamicfake.CreateFakeKnDynamicClient("default", &servingv1.Service{
|
|
TypeMeta: metav1.TypeMeta{Kind: "Service", APIVersion: "serving.knative.dev/v1"},
|
|
ObjectMeta: metav1.ObjectMeta{Name: "svc2", Namespace: "default"},
|
|
})
|
|
|
|
present := createAPIServerSource("testsource", "testsa1", "Reference", []string{"Event"}, []string{"v1"}, map[string]string{"bla": "blub", "foo": "bar"}, createSinkv1("svc1", "default"))
|
|
apiServerRecorder.GetAPIServerSource("testsource", present, nil)
|
|
sinkMissingMsg := "services.serving.knative.dev \"svc3\" not found"
|
|
apiServerRecorder.UpdateAPIServerSource("", errors.New(sinkMissingMsg))
|
|
|
|
out, err := executeAPIServerSourceCommand(apiServerClient, dynamicClient, "update", "testsource", "--service-account", "testsa2", "--sink", "ksvc:svc3", "--ce-override", "bla-", "--ce-override", "foo=baz")
|
|
assert.ErrorContains(t, err, "not found")
|
|
assert.Assert(t, util.ContainsAll(out, "services.serving.knative.dev", "svc3", "not found"))
|
|
}
|