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 0aa37b401e0d326356da7edd42be57f9979ac02a
Author: mmajerni <mmajerni@localhost.localdomain>
AuthorDate: Fri Mar 26 10:57:49 2021 +0100

    Kamel CLI describe test was added
---
 e2e/common/cli/describe_test.go | 80 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

diff --git a/e2e/common/cli/describe_test.go b/e2e/common/cli/describe_test.go
new file mode 100644
index 0000000..dfd43c6
--- /dev/null
+++ b/e2e/common/cli/describe_test.go
@@ -0,0 +1,80 @@
+// +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 (
+       "regexp"
+       "testing"
+
+       . "github.com/apache/camel-k/e2e/support"
+       "github.com/apache/camel-k/pkg/util/defaults"
+       . "github.com/onsi/gomega"
+       v1 "k8s.io/api/core/v1"
+)
+
+func TestKamelCliDescribe(t *testing.T) {
+       WithNewTestNamespace(t, func(ns string) {
+               Expect(Kamel("install", "-n", ns).Execute()).To(Succeed())
+               Expect(Kamel("run", "-n", ns, 
"files/yaml.yaml").Execute()).To(Succeed())
+               Eventually(IntegrationPodPhase(ns, "yaml"), 
TestTimeoutLong).Should(Equal(v1.PodRunning))
+
+               t.Run("Test kamel describe integration", func(t *testing.T) {
+                       integration := GetOutputString(Kamel("describe", 
"integration", "yaml", "-n", ns))
+                       r, _ := regexp.Compile("(?sm).*Name:\\s+yaml.*")
+                       Expect(integration).To(MatchRegexp(r.String()))
+
+                       r, _ = regexp.Compile("(?sm).*Phase:\\s+Running.*")
+                       Expect(integration).To(MatchRegexp(r.String()))
+
+                       
Expect(integration).To(ContainSubstring("Dependencies:"))
+                       Expect(integration).To(ContainSubstring("Conditions:"))
+               })
+
+               t.Run("Test kamel describe integration kit", func(t *testing.T) 
{
+                       kitName := Integration(ns, 
"yaml")().Status.IntegrationKit.Name
+                       kit := GetOutputString(Kamel("describe", "kit", 
kitName, "-n", ns))
+
+                       r, _ := regexp.Compile("(?sm).*Namespace:\\s+" + ns + 
".*")
+                       Expect(kit).To(MatchRegexp(r.String()))
+
+                       r, _ = regexp.Compile("(?sm).*Runtime Version:\\s+" + 
defaults.DefaultRuntimeVersion + ".*")
+                       Expect(kit).To(MatchRegexp(r.String()))
+
+                       Expect(kit).To(ContainSubstring("camel-quarkus-core"))
+
+                       Expect(kit).To(ContainSubstring("Artifacts:"))
+                       Expect(kit).To(ContainSubstring("Dependencies:"))
+               })
+
+               t.Run("Test kamel describe integration platform", func(t 
*testing.T) {
+                       platform := GetOutputString(Kamel("describe", 
"platform", "camel-k", "-n", ns))
+                       r, _ := regexp.Compile("(?sm).*Name:\\s+camel-k.*")
+                       Expect(platform).To(MatchRegexp(r.String()))
+
+                       r, _ = regexp.Compile("(?sm).*Namespace:\\s+" + ns + 
".*")
+                       Expect(platform).To(MatchRegexp(r.String()))
+
+                       r, _ = regexp.Compile("(?sm).*Runtime Version:\\s+" + 
defaults.DefaultRuntimeVersion + ".*")
+                       Expect(platform).To(MatchRegexp(r.String()))
+               })
+       })
+}

Reply via email to