-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
086f699
commit 2ad064a
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// +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 ( | ||
"fmt" | ||
v1 "k8s.io/api/core/v1" | ||
"testing" | ||
|
||
. "github.com/onsi/gomega" | ||
|
||
. "github.com/apache/camel-k/e2e/support" | ||
) | ||
|
||
func TestKamelCLIGet(t *testing.T) { | ||
WithNewTestNamespace(t, func(ns string) { | ||
Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) | ||
|
||
t.Run("get integration", func(t *testing.T) { | ||
Expect(Kamel("run", "../files/yaml.yaml", "-n", ns).Execute()).To(Succeed()) | ||
Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) | ||
// regex is used for the compatibility of tests between OC and vanilla K8 | ||
// kamel get may have different output depending og the platform | ||
kitName := Integration(ns, "yaml")().Status.Kit | ||
regex := fmt.Sprintf("^NAME\tPHASE\tKIT\n\\s*yaml\tRunning\t(%s/%s|%s)", ns, kitName, kitName) | ||
Expect(GetOutputString(Kamel("get", "-n", ns))).To(MatchRegexp(regex)) | ||
|
||
Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) | ||
}) | ||
|
||
t.Run("get 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)) | ||
|
||
kitName1 := Integration(ns, "java")().Status.IntegrationKit.Name | ||
kitName2 := Integration(ns, "yaml")().Status.IntegrationKit.Name | ||
regex := fmt.Sprintf("^NAME\tPHASE\tKIT\n\\s*java\tRunning\t" + | ||
"(%s/%s|%s)\n\\s*yaml\tRunning\t(%s/%s|%s)\n", ns, kitName1, kitName1, ns, kitName2, kitName2) | ||
Expect(GetOutputString(Kamel("get", "-n", ns))).To(MatchRegexp(regex)) | ||
|
||
Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) | ||
}) | ||
|
||
t.Run("get no integrations" , func(t *testing.T) { | ||
Expect(GetOutputString(Kamel("get", "-n", ns))).NotTo(ContainSubstring("Running")) | ||
Expect(GetOutputString(Kamel("get", "-n", ns))).NotTo(ContainSubstring("Building Kit")) | ||
}) | ||
}) | ||
} |