зеркало из https://github.com/Azure/ARO-RP.git
113 строки
3.4 KiB
Go
113 строки
3.4 KiB
Go
package cluster
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the Apache License 2.0.
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/Azure/ARO-RP/pkg/api"
|
|
mock_env "github.com/Azure/ARO-RP/pkg/util/mocks/env"
|
|
testdatabase "github.com/Azure/ARO-RP/test/database"
|
|
"github.com/Azure/ARO-RP/test/util/deterministicuuid"
|
|
"github.com/Azure/ARO-RP/test/util/testliveconfig"
|
|
)
|
|
|
|
func TestGetOpenShiftVersionFromVersion(t *testing.T) {
|
|
const testACRDomain = "acrdomain.io"
|
|
|
|
key := "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resourceGroup/providers/Microsoft.RedHatOpenShift/openShiftClusters/resourceName"
|
|
|
|
for _, tt := range []struct {
|
|
name string
|
|
f func(f *testdatabase.Fixture)
|
|
m manager
|
|
wantErrString string
|
|
want *api.OpenShiftVersion
|
|
}{
|
|
{
|
|
name: "select nonexistent version",
|
|
f: func(f *testdatabase.Fixture) {
|
|
f.AddOpenShiftVersionDocuments(
|
|
&api.OpenShiftVersionDocument{
|
|
OpenShiftVersion: &api.OpenShiftVersion{
|
|
Properties: api.OpenShiftVersionProperties{
|
|
Version: "4.10.20",
|
|
Enabled: true,
|
|
},
|
|
},
|
|
}, &api.OpenShiftVersionDocument{
|
|
OpenShiftVersion: &api.OpenShiftVersion{
|
|
Properties: api.OpenShiftVersionProperties{
|
|
Version: "4.10.27",
|
|
Enabled: true,
|
|
},
|
|
},
|
|
},
|
|
)
|
|
},
|
|
m: manager{
|
|
doc: &api.OpenShiftClusterDocument{
|
|
Key: strings.ToLower(key),
|
|
OpenShiftCluster: &api.OpenShiftCluster{
|
|
ID: key,
|
|
Properties: api.OpenShiftClusterProperties{
|
|
ClusterProfile: api.ClusterProfile{
|
|
Version: "4.11.5",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
openShiftClusterDocumentVersioner: new(openShiftClusterDocumentVersionerService),
|
|
},
|
|
wantErrString: "400: InvalidParameter: properties.clusterProfile.version: The requested OpenShift version '4.11.5' is not supported.",
|
|
want: nil,
|
|
},
|
|
} {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
controller := gomock.NewController(t)
|
|
defer controller.Finish()
|
|
|
|
tlc := testliveconfig.NewTestLiveConfig(false, false, false)
|
|
_env := mock_env.NewMockInterface(controller)
|
|
_env.EXPECT().ACRDomain().AnyTimes().Return(testACRDomain)
|
|
_env.EXPECT().LiveConfig().AnyTimes().Return(tlc)
|
|
tt.m.env = _env
|
|
|
|
uuidGen := deterministicuuid.NewTestUUIDGenerator(deterministicuuid.OPENSHIFT_VERSIONS)
|
|
dbOpenShiftVersions, _ := testdatabase.NewFakeOpenShiftVersions(uuidGen)
|
|
fixture := testdatabase.NewFixture().WithOpenShiftVersions(dbOpenShiftVersions, uuidGen)
|
|
|
|
if tt.f != nil {
|
|
tt.f(fixture)
|
|
}
|
|
|
|
err := fixture.Create()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
tt.m.dbOpenShiftVersions = dbOpenShiftVersions
|
|
|
|
version, err := tt.m.openShiftVersionFromVersion(ctx)
|
|
|
|
if len(tt.wantErrString) > 0 {
|
|
assert.Equal(t, tt.wantErrString, err.Error(), "Unexpected error exception")
|
|
}
|
|
|
|
if tt.want != nil {
|
|
assert.Equal(t, tt.want.Properties.Version, version.Properties.Version, "Version does not match")
|
|
assert.Equal(t, tt.want.Properties.OpenShiftPullspec, version.Properties.OpenShiftPullspec, "properties.OpenShiftPullspec does not match")
|
|
assert.Equal(t, tt.want.Properties.InstallerPullspec, version.Properties.InstallerPullspec, "properties.InstallerPullspec does not match")
|
|
}
|
|
})
|
|
}
|
|
}
|