// 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. //go:build e2e && !eventing // +build e2e,!eventing package e2e import ( "testing" "gotest.tools/v3/assert" "knative.dev/client/pkg/util" "knative.dev/client/pkg/util/test" pkgtest "knative.dev/pkg/test" ) func TestServiceApply(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() t.Log("apply hello service (initially)") result := serviceApply(r, "hello-apply") assert.Check(r.T(), util.ContainsAllIgnoreCase(result.Stdout, "creating", "service", "hello-apply", "ready", "http")) t.Log("apply hello service (unchanged)") result = serviceApply(r, "hello-apply", "--annotation-service", "foo=bar") r.AssertNoError(result) result = serviceApply(r, "hello-apply", "--annotation-service", "foo=bar") assert.Check(r.T(), util.ContainsAllIgnoreCase(result.Stdout, "no changes", "service", "hello-apply", "http")) t.Log("apply hello service (update env)") result = serviceApply(r, "hello-apply", "--env", "tik=tok") r.AssertNoError(result) assert.Check(r.T(), util.ContainsAllIgnoreCase(result.Stdout, "applying", "service", "hello-apply", "ready", "http")) } // ServiceApply applies a test service and returns the output func serviceApply(r *test.KnRunResultCollector, serviceName string, args ...string) test.KnRunResult { fullArgs := append([]string{}, "service", "apply", serviceName, "--image", pkgtest.ImagePath("helloworld")) fullArgs = append(fullArgs, args...) return r.KnTest().Kn().Run(fullArgs...) }