This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 086f6995d09aec26631927b8a8e497cda28fb755 Author: Vladislav Sokolovskii <[email protected]> AuthorDate: Mon Mar 15 14:19:04 2021 +0100 Kamel CLI delete test was added --- e2e/common/cli/delete_test.go | 85 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/e2e/common/cli/delete_test.go b/e2e/common/cli/delete_test.go new file mode 100644 index 0000000..a68fde5 --- /dev/null +++ b/e2e/common/cli/delete_test.go @@ -0,0 +1,85 @@ +// +build integration + +// To enable compilation of this file in Goland, go to "Settings -> Go -> Vendoring & Build Tags -> Custom Tags" and add "integration" + +/* +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You 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 common + +import ( + v1 "k8s.io/api/core/v1" + "testing" + + . "github.com/onsi/gomega" + + . "github.com/apache/camel-k/e2e/support" +) + +func TestKamelCLIDelete(t *testing.T) { + WithNewTestNamespace(t, func(ns string) { + Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) + + t.Run("delete running integration", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "../files/yaml.yaml").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Expect(Kamel("delete", "yaml", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "yaml")).Should(BeNil()) + Eventually(IntegrationPod(ns, "yaml")).Should(BeNil()) + }) + + t.Run("delete building integration", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "../files/yaml.yaml").Execute()).To(Succeed()) + Expect(Kamel("delete", "yaml", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "yaml")).Should(BeNil()) + Eventually(IntegrationPod(ns, "yaml")).Should(BeNil()) + }) + + t.Run("delete integration from csv", func(t *testing.T) { + Expect(Kamel("run", "github:apache/camel-k/e2e/common/files/yaml.yaml", "-n", ns).Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Expect(Kamel("delete", "yaml", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "yaml")).Should(BeNil()) + Eventually(IntegrationPod(ns, "yaml")).Should(BeNil()) + }) + + t.Run("delete several integrations", func(t *testing.T) { + Expect(Kamel("run", "../files/yaml.yaml", "-n", ns).Execute()).To(Succeed()) + Expect(Kamel("run", "../files/Java.java", "-n", ns).Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationPodPhase(ns, "java"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Expect(Kamel("delete", "yaml", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "yaml")).Should(BeNil()) + Eventually(IntegrationPod(ns, "yaml")).Should(BeNil()) + Expect(Kamel("delete", "java", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "java")).Should(BeNil()) + Eventually(IntegrationPod(ns, "java")).Should(BeNil()) + }) + + t.Run("delete all integrations", func(t *testing.T) { + Expect(Kamel("run", "../files/yaml.yaml", "-n", ns).Execute()).To(Succeed()) + Expect(Kamel("run", "../files/Java.java", "-n", ns).Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationPodPhase(ns, "java"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + Eventually(Integration(ns, "yaml")).Should(BeNil()) + Eventually(IntegrationPod(ns, "yaml")).Should(BeNil()) + Eventually(Integration(ns, "java")).Should(BeNil()) + Eventually(IntegrationPod(ns, "java")).Should(BeNil()) + }) + }) +}
