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
The following commit(s) were added to refs/heads/main by this push: new f5a6bbb chore(e2e): Remove obsolete operator upgrade e2e test f5a6bbb is described below commit f5a6bbb959e79c902d75be7c7cb205c20c42531a Author: Antonin Stefanutti <anto...@stefanutti.fr> AuthorDate: Tue May 11 18:43:23 2021 +0200 chore(e2e): Remove obsolete operator upgrade e2e test --- e2e/common/upgrade_test.go | 55 ---------------------------------------------- 1 file changed, 55 deletions(-) diff --git a/e2e/common/upgrade_test.go b/e2e/common/upgrade_test.go deleted file mode 100644 index ede3a0c..0000000 --- a/e2e/common/upgrade_test.go +++ /dev/null @@ -1,55 +0,0 @@ -// +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" - "time" - - . "github.com/onsi/gomega" - - . "github.com/apache/camel-k/e2e/support" - "github.com/apache/camel-k/pkg/util/defaults" -) - -func TestPlatformUpgrade(t *testing.T) { - WithNewTestNamespace(t, func(ns string) { - Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) - Eventually(OperatorPod(ns)).ShouldNot(BeNil()) - Eventually(PlatformVersion(ns)).Should(Equal(defaults.Version)) - - // Scale the operator down to zero - Eventually(ScaleOperator(ns, 0), 10*time.Second).Should(BeNil()) - Eventually(OperatorPod(ns)).Should(BeNil()) - - // Change the version to an older one - Eventually(SetPlatformVersion(ns, "an.older.one")).Should(Succeed()) - Eventually(PlatformVersion(ns)).Should(Equal("an.older.one")) - - // Scale the operator up - Eventually(ScaleOperator(ns, 1)).Should(BeNil()) - Eventually(OperatorPod(ns)).ShouldNot(BeNil()) - - // Check the platform version change - Eventually(PlatformVersion(ns)).Should(Equal(defaults.Version)) - }) -}