forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapimgmt_controller_test.go
66 lines (57 loc) · 1.73 KB
/
apimgmt_controller_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//go:build all || apimgmt
// +build all apimgmt
package controllers
import (
"context"
"os"
"testing"
azurev1alpha1 "github.com/Azure/azure-service-operator/api/v1alpha1"
"github.com/Azure/azure-service-operator/pkg/helpers"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
func TestAPIMgmtController(t *testing.T) {
t.Parallel()
defer PanicRecover(t)
ctx := context.Background()
// rgName := tc.resourceGroupName
rgLocation := "southcentralus"
apiMgmtName := "t-apimgmt-test" + helpers.RandomString(10)
rgName := "AzureOperatorsTest"
apimServiceName := "AzureOperatorsTestAPIM"
// Read the pre-created APIM service name and RG name from Environment variable if it exists
rgFromEnv := os.Getenv("TEST_APIM_RG")
if len(rgFromEnv) != 0 {
rgName = rgFromEnv
}
nameFromEnv := os.Getenv("TEST_APIM_NAME")
if len(nameFromEnv) != 0 {
apimServiceName = nameFromEnv
}
// Create an instance of Azure APIMgmnt
apiMgmtInstance := &azurev1alpha1.APIMgmtAPI{
ObjectMeta: metav1.ObjectMeta{
Name: apiMgmtName,
Namespace: "default",
},
Spec: azurev1alpha1.APIMgmtSpec{
Location: rgLocation,
ResourceGroup: rgName,
APIService: apimServiceName,
APIId: "apiId0",
Properties: azurev1alpha1.APIProperties{
IsCurrent: true,
IsOnline: true,
DisplayName: apiMgmtName,
Description: "API description",
APIVersionDescription: "API version description",
Path: "/api/test",
Protocols: []string{"http"},
SubscriptionRequired: false,
},
},
}
EnsureInstance(ctx, t, tc, apiMgmtInstance)
EnsureDelete(ctx, t, tc, apiMgmtInstance)
}