mirror of https://github.com/knative/client.git
68 lines
2.2 KiB
Go
68 lines
2.2 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 im
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//go:build e2e && !serving
|
|
// +build e2e,!serving
|
|
|
|
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
"knative.dev/client/lib/test"
|
|
"knative.dev/client/pkg/util"
|
|
)
|
|
|
|
func TestInjectBrokerTrigger(t *testing.T) {
|
|
t.Parallel()
|
|
it, err := test.NewKnTest()
|
|
assert.NilError(t, err)
|
|
defer func() {
|
|
assert.NilError(t, it.Teardown())
|
|
}()
|
|
|
|
r := test.NewKnRunResultCollector(t, it)
|
|
defer r.DumpIfFailed()
|
|
|
|
assert.NilError(t, err)
|
|
|
|
test.ServiceCreate(r, "sinksvc0")
|
|
test.ServiceCreate(r, "sinksvc1")
|
|
|
|
t.Log("create triggers and list them")
|
|
triggerCreateWithInject(r, "trigger1", "sinksvc0", []string{"a=b"})
|
|
triggerCreateWithInject(r, "trigger2", "sinksvc1", []string{"type=knative.dev.bar", "source=ping"})
|
|
verifyTriggerList(r, "trigger1", "trigger2")
|
|
triggerDelete(r, "trigger1")
|
|
triggerDelete(r, "trigger2")
|
|
|
|
t.Log("create trigger with error")
|
|
out := it.Kn().Run("trigger", "create", "errorTrigger", "--broker", "mybroker", "--inject-broker",
|
|
"--sink", "ksvc:sinksvc0", "--filter", "a=b")
|
|
r.AssertError(out)
|
|
assert.Check(t, util.ContainsAllIgnoreCase(out.Stderr, "broker", "name", "'default'", "--inject-broker", "flag"))
|
|
}
|
|
|
|
func triggerCreateWithInject(r *test.KnRunResultCollector, name string, sinksvc string, filters []string) {
|
|
args := []string{"trigger", "create", name, "--broker", "default", "--inject-broker", "--sink", "ksvc:" + sinksvc}
|
|
for _, v := range filters {
|
|
args = append(args, "--filter", v)
|
|
}
|
|
out := r.KnTest().Kn().Run(args...)
|
|
r.AssertNoError(out)
|
|
assert.Check(r.T(), util.ContainsAllIgnoreCase(out.Stdout, "Trigger", name, "created", "namespace", r.KnTest().Kn().Namespace()))
|
|
}
|