blob: c5ba71355d3a147685d34cbba19814e94af4b69c [file] [log] [blame]
//go:build integ
// +build integ
// Copyright Istio Authors
//
// Licensed 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 helmupgrade
import (
"fmt"
"strings"
"testing"
)
import (
"github.com/apache/dubbo-go-pixiu/pkg/test/framework"
)
const (
previousSupportedVersion = "1.11.3"
nMinusTwoVersion = "1.10.0"
)
// TestDefaultInPlaceUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
func TestDefaultInPlaceUpgradeFromPreviousMinorRelease(t *testing.T) {
framework.
NewTest(t).
Features("installation.helm.default.upgrade").
Run(performInPlaceUpgradeFunc(previousSupportedVersion))
}
// TestDefaultRevisionUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
func TestDefaultRevisionUpgradeFromPreviousMinorRelease(t *testing.T) {
framework.
NewTest(t).
Features("installation.helm.default.upgrade").
Run(performRevisionUpgradeFunc(previousSupportedVersion, "istio-validator-dubbo-system", true))
}
// TestDefaultRevisionUpgradeFromPreviousMinorRelease
// TestDefaultRevisionUpgradeFromTwoMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-2)
func TestDefaultRevisionUpgradeFromTwoMinorRelease(t *testing.T) {
framework.
NewTest(t).
Features("installation.helm.default.upgrade").
Run(performRevisionUpgradeFunc(nMinusTwoVersion, "istiod-dubbo-system", false))
}
// TestRevisionTagsUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
func TestRevisionTagsUpgradeFromPreviousMinorRelease(t *testing.T) {
previousRevision := strings.ReplaceAll(previousSupportedVersion, ".", "-")
framework.
NewTest(t).
Features("installation.helm.default.upgrade").
Run(performRevisionTagsUpgradeFunc(previousSupportedVersion,
fmt.Sprintf("istio-validator-%s-dubbo-system", previousRevision), true))
}
// TestRevisionTagsUpgradeFromTwoMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-2)
func TestRevisionTagsUpgradeFromTwoMinorRelease(t *testing.T) {
framework.
NewTest(t).
Features("installation.helm.default.upgrade").
Run(performRevisionTagsUpgradeFunc(nMinusTwoVersion, "istiod-dubbo-system", false))
}