You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/06/13 15:47:33 UTC

[camel-k] branch main updated: [TEST] Add kamel reset test

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new 8498eba71 [TEST] Add kamel reset test
8498eba71 is described below

commit 8498eba71f6a55ce5d267dbed31cada368fe9b71
Author: Jan Bouska <jb...@redhat.com>
AuthorDate: Mon Jun 13 11:22:33 2022 +0200

    [TEST] Add kamel reset test
---
 e2e/common/cli/reset_test.go | 92 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 92 insertions(+)

diff --git a/e2e/common/cli/reset_test.go b/e2e/common/cli/reset_test.go
new file mode 100644
index 000000000..43cdcf2dd
--- /dev/null
+++ b/e2e/common/cli/reset_test.go
@@ -0,0 +1,92 @@
+//go:build integration
+// +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 (
+	"testing"
+
+	. "github.com/onsi/gomega"
+	corev1 "k8s.io/api/core/v1"
+
+	. "github.com/apache/camel-k/e2e/support"
+)
+
+func TestKamelReset(t *testing.T) {
+	WithNewTestNamespace(t, func(ns string) {
+		Expect(Kamel("install", "-n", ns).Execute()).To(Succeed())
+
+		t.Run("Reset the whole platform", func(t *testing.T) {
+
+			name := "yaml1"
+			Expect(Kamel("run", "-n", ns, "files/yaml.yaml", "--name", name).Execute()).To(Succeed())
+			Eventually(IntegrationPodPhase(ns, name), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
+			Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Magicstring!"))
+
+			Eventually(Kit(ns, IntegrationKit(ns, name)())).Should(Not(BeNil()))
+			Eventually(Integration(ns, name)).Should(Not(BeNil()))
+
+			Expect(Kamel("reset", "-n", ns).Execute()).To(Succeed())
+
+			Expect(Integration(ns, name)()).To(BeNil())
+			Expect(Kits(ns)()).To(HaveLen(0))
+
+		})
+
+		t.Run("Reset skip-integrations", func(t *testing.T) {
+
+			name := "yaml2"
+			Expect(Kamel("run", "-n", ns, "files/yaml.yaml", "--name", name).Execute()).To(Succeed())
+			Eventually(IntegrationPodPhase(ns, name), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
+			Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Magicstring!"))
+
+			Eventually(Kit(ns, IntegrationKit(ns, name)())).Should(Not(BeNil()))
+			Eventually(Integration(ns, name)).Should(Not(BeNil()))
+
+			Expect(Kamel("reset", "-n", ns, "--skip-integrations").Execute()).To(Succeed())
+
+			Expect(Integration(ns, name)()).To(Not(BeNil()))
+			Expect(Kits(ns)()).To(HaveLen(0))
+
+		})
+
+		t.Run("Reset skip-kits", func(t *testing.T) {
+
+			name := "yaml3"
+			Expect(Kamel("run", "-n", ns, "files/yaml.yaml", "--name", name).Execute()).To(Succeed())
+			Eventually(IntegrationPodPhase(ns, name), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
+			Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Magicstring!"))
+
+			kitName := IntegrationKit(ns, name)()
+			Eventually(Kit(ns, kitName)).Should(Not(BeNil()))
+			Eventually(Integration(ns, name)).Should(Not(BeNil()))
+
+			Expect(Kamel("reset", "-n", ns, "--skip-kits").Execute()).To(Succeed())
+
+			Expect(Integration(ns, name)()).To(BeNil())
+			Expect(Kit(ns, kitName)()).To(Not(BeNil()))
+
+		})
+		// Clean up
+		Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed())
+	})
+}