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

astefanutti pushed a commit to branch release-1.4.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit f5d049f404805e7b7c661c3918bb488cae131195
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))
-       })
-}

Reply via email to