-
Notifications
You must be signed in to change notification settings - Fork 863
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add sdk/resourcemanager/postgresql/armpostgresql live test (#20685)
* add sdk/resourcemanager/postgresql/armpostgresql live test * update assets.json * set subscriptionId default value * format
- Loading branch information
Showing
4 changed files
with
492 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ import ( | |
"github.com/Azure/azure-sdk-for-go/sdk/azcore" | ||
"github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" | ||
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to" | ||
"github.com/Azure/azure-sdk-for-go/sdk/internal/recording" | ||
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/testutil" | ||
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/postgresql/armpostgresql" | ||
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" | ||
|
@@ -35,14 +36,14 @@ type PostgresqlTestSuite struct { | |
|
||
func (testsuite *PostgresqlTestSuite) SetupSuite() { | ||
testutil.StartRecording(testsuite.T(), "sdk/resourcemanager/postgresql/armpostgresql/testdata") | ||
|
||
testsuite.ctx = context.Background() | ||
testsuite.cred, testsuite.options = testutil.GetCredAndClientOptions(testsuite.T()) | ||
testsuite.serverName = testutil.GenerateAlphaNumericID(testsuite.T(), "pgservers", 6) | ||
testsuite.adminPassword = testutil.GetEnv("ADMIN_PASSWORD", "000000000000") | ||
testsuite.location = testutil.GetEnv("LOCATION", "eastus") | ||
testsuite.serverName, _ = recording.GenerateAlphaNumericID(testsuite.T(), "serverna", 14, true) | ||
testsuite.adminPassword = testutil.GetEnv("ADMIN_PASSWORD", "") | ||
testsuite.location = testutil.GetEnv("LOCATION", "westus") | ||
testsuite.resourceGroupName = testutil.GetEnv("RESOURCE_GROUP_NAME", "scenarioTestTempGroup") | ||
testsuite.subscriptionId = testutil.GetEnv("AZURE_SUBSCRIPTION_ID", "00000000-0000-0000-0000-000000000000") | ||
|
||
resourceGroup, _, err := testutil.CreateResourceGroup(testsuite.ctx, testsuite.subscriptionId, testsuite.cred, testsuite.options, testsuite.location) | ||
testsuite.Require().NoError(err) | ||
testsuite.resourceGroupName = *resourceGroup.Name | ||
|
@@ -81,8 +82,8 @@ func (testsuite *PostgresqlTestSuite) Prepare() { | |
AdministratorLoginPassword: to.Ptr(testsuite.adminPassword), | ||
}, | ||
SKU: &armpostgresql.SKU{ | ||
Family: to.Ptr("Gen5"), | ||
Name: to.Ptr("GP_Gen5_8"), | ||
Family: to.Ptr("Gen5"), | ||
Tier: to.Ptr(armpostgresql.SKUTierGeneralPurpose), | ||
}, | ||
Tags: map[string]*string{ | ||
|
@@ -94,7 +95,7 @@ func (testsuite *PostgresqlTestSuite) Prepare() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers | ||
// Microsoft.DBforPostgreSQL/servers/{serverName} | ||
func (testsuite *PostgresqlTestSuite) TestServers() { | ||
var err error | ||
// From step Servers_List | ||
|
@@ -143,23 +144,8 @@ func (testsuite *PostgresqlTestSuite) TestServers() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/replicas | ||
func (testsuite *PostgresqlTestSuite) TestReplicas() { | ||
var err error | ||
// From step Replicas_ListByServer | ||
fmt.Println("Call operation: Replicas_ListByServer") | ||
replicasClient, err := armpostgresql.NewReplicasClient(testsuite.subscriptionId, testsuite.cred, testsuite.options) | ||
testsuite.Require().NoError(err) | ||
replicasClientNewListByServerPager := replicasClient.NewListByServerPager(testsuite.resourceGroupName, testsuite.serverName, nil) | ||
for replicasClientNewListByServerPager.More() { | ||
_, err := replicasClientNewListByServerPager.NextPage(testsuite.ctx) | ||
testsuite.Require().NoError(err) | ||
break | ||
} | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/firewallRules | ||
func (testsuite *PostgresqlTestSuite) TestFirewallrules() { | ||
// Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName} | ||
func (testsuite *PostgresqlTestSuite) TestFirewallRules() { | ||
var err error | ||
// From step FirewallRules_CreateOrUpdate | ||
fmt.Println("Call operation: FirewallRules_CreateOrUpdate") | ||
|
@@ -197,67 +183,63 @@ func (testsuite *PostgresqlTestSuite) TestFirewallrules() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/virtualNetworkRules | ||
func (testsuite *PostgresqlTestSuite) TestVirtualnetworkrules() { | ||
// Microsoft.DBforPostgreSQL/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName} | ||
func (testsuite *PostgresqlTestSuite) TestVirtualNetworkRules() { | ||
var subnetId string | ||
var err error | ||
// From step VirtualNetwork_Create | ||
template := map[string]interface{}{ | ||
template := map[string]any{ | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"outputs": map[string]interface{}{ | ||
"subnetId": map[string]interface{}{ | ||
"outputs": map[string]any{ | ||
"subnetId": map[string]any{ | ||
"type": "string", | ||
"value": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworksName'), parameters('subnetName'))]", | ||
}, | ||
}, | ||
"parameters": map[string]interface{}{ | ||
"location": map[string]interface{}{ | ||
"parameters": map[string]any{ | ||
"location": map[string]any{ | ||
"type": "string", | ||
"defaultValue": "$(location)", | ||
"defaultValue": testsuite.location, | ||
}, | ||
"subnetName": map[string]interface{}{ | ||
"subnetName": map[string]any{ | ||
"type": "string", | ||
"defaultValue": "pgsubnet", | ||
}, | ||
"virtualNetworksName": map[string]interface{}{ | ||
"virtualNetworksName": map[string]any{ | ||
"type": "string", | ||
"defaultValue": "pgvnet", | ||
}, | ||
}, | ||
"resources": []interface{}{ | ||
map[string]interface{}{ | ||
"resources": []any{ | ||
map[string]any{ | ||
"name": "[parameters('virtualNetworksName')]", | ||
"type": "Microsoft.Network/virtualNetworks", | ||
"apiVersion": "2021-05-01", | ||
"location": "[parameters('location')]", | ||
"properties": map[string]interface{}{ | ||
"addressSpace": map[string]interface{}{ | ||
"addressPrefixes": []interface{}{ | ||
"properties": map[string]any{ | ||
"addressSpace": map[string]any{ | ||
"addressPrefixes": []any{ | ||
"10.0.0.0/16", | ||
}, | ||
}, | ||
"subnets": []interface{}{ | ||
map[string]interface{}{ | ||
"subnets": []any{ | ||
map[string]any{ | ||
"name": "[parameters('subnetName')]", | ||
"properties": map[string]interface{}{ | ||
"properties": map[string]any{ | ||
"addressPrefix": "10.0.0.0/24", | ||
}, | ||
}, | ||
}, | ||
}, | ||
"tags": map[string]interface{}{}, | ||
"tags": map[string]any{}, | ||
}, | ||
}, | ||
} | ||
params := map[string]interface{}{ | ||
"location": map[string]interface{}{"value": testsuite.location}, | ||
} | ||
deployment := armresources.Deployment{ | ||
Properties: &armresources.DeploymentProperties{ | ||
Template: template, | ||
Parameters: params, | ||
Mode: to.Ptr(armresources.DeploymentModeIncremental), | ||
Template: template, | ||
Mode: to.Ptr(armresources.DeploymentModeIncremental), | ||
}, | ||
} | ||
deploymentExtend, err := testutil.CreateDeployment(testsuite.ctx, testsuite.subscriptionId, testsuite.cred, testsuite.options, testsuite.resourceGroupName, "VirtualNetwork_Create", &deployment) | ||
|
@@ -300,7 +282,7 @@ func (testsuite *PostgresqlTestSuite) TestVirtualnetworkrules() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/databases | ||
// Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName} | ||
func (testsuite *PostgresqlTestSuite) TestDatabases() { | ||
var err error | ||
// From step Databases_CreateOrUpdate | ||
|
@@ -339,7 +321,7 @@ func (testsuite *PostgresqlTestSuite) TestDatabases() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/configurations | ||
// Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName} | ||
func (testsuite *PostgresqlTestSuite) TestConfigurations() { | ||
var err error | ||
// From step Configurations_CreateOrUpdate | ||
|
@@ -371,8 +353,64 @@ func (testsuite *PostgresqlTestSuite) TestConfigurations() { | |
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/{serverName}/administrators/activeDirectory | ||
func (testsuite *PostgresqlTestSuite) TestServerAdministrators() { | ||
var err error | ||
// From step ServerAdministrators_CreateOrUpdate | ||
fmt.Println("Call operation: ServerAdministrators_CreateOrUpdate") | ||
serverAdministratorsClient, err := armpostgresql.NewServerAdministratorsClient(testsuite.subscriptionId, testsuite.cred, testsuite.options) | ||
testsuite.Require().NoError(err) | ||
serverAdministratorsClientCreateOrUpdateResponsePoller, err := serverAdministratorsClient.BeginCreateOrUpdate(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, armpostgresql.ServerAdministratorResource{ | ||
Properties: &armpostgresql.ServerAdministratorProperties{ | ||
AdministratorType: to.Ptr("ActiveDirectory"), | ||
Login: to.Ptr("[email protected]"), | ||
Sid: to.Ptr("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"), | ||
TenantID: to.Ptr("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"), | ||
}, | ||
}, nil) | ||
testsuite.Require().NoError(err) | ||
_, err = testutil.PollForTest(testsuite.ctx, serverAdministratorsClientCreateOrUpdateResponsePoller) | ||
testsuite.Require().NoError(err) | ||
|
||
// From step ServerAdministrators_List | ||
fmt.Println("Call operation: ServerAdministrators_List") | ||
serverAdministratorsClientNewListPager := serverAdministratorsClient.NewListPager(testsuite.resourceGroupName, testsuite.serverName, nil) | ||
for serverAdministratorsClientNewListPager.More() { | ||
_, err := serverAdministratorsClientNewListPager.NextPage(testsuite.ctx) | ||
testsuite.Require().NoError(err) | ||
break | ||
} | ||
|
||
// From step ServerAdministrators_Get | ||
fmt.Println("Call operation: ServerAdministrators_Get") | ||
_, err = serverAdministratorsClient.Get(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, nil) | ||
testsuite.Require().NoError(err) | ||
|
||
// From step ServerAdministrators_Delete | ||
fmt.Println("Call operation: ServerAdministrators_Delete") | ||
serverAdministratorsClientDeleteResponsePoller, err := serverAdministratorsClient.BeginDelete(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, nil) | ||
testsuite.Require().NoError(err) | ||
_, err = testutil.PollForTest(testsuite.ctx, serverAdministratorsClientDeleteResponsePoller) | ||
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/replicas | ||
func (testsuite *PostgresqlTestSuite) TestReplicas() { | ||
var err error | ||
// From step Replicas_ListByServer | ||
fmt.Println("Call operation: Replicas_ListByServer") | ||
replicasClient, err := armpostgresql.NewReplicasClient(testsuite.subscriptionId, testsuite.cred, testsuite.options) | ||
testsuite.Require().NoError(err) | ||
replicasClientNewListByServerPager := replicasClient.NewListByServerPager(testsuite.resourceGroupName, testsuite.serverName, nil) | ||
for replicasClientNewListByServerPager.More() { | ||
_, err := replicasClientNewListByServerPager.NextPage(testsuite.ctx) | ||
testsuite.Require().NoError(err) | ||
break | ||
} | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/updateConfigurations | ||
func (testsuite *PostgresqlTestSuite) TestServerparameters() { | ||
func (testsuite *PostgresqlTestSuite) TestServerParameters() { | ||
var err error | ||
// From step ServerParameters_ListUpdateConfigurations | ||
fmt.Println("Call operation: ServerParameters_ListUpdateConfigurations") | ||
|
@@ -399,7 +437,7 @@ func (testsuite *PostgresqlTestSuite) TestServerparameters() { | |
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/logFiles | ||
func (testsuite *PostgresqlTestSuite) TestLogfiles() { | ||
func (testsuite *PostgresqlTestSuite) TestLogFiles() { | ||
var err error | ||
// From step LogFiles_ListByServer | ||
fmt.Println("Call operation: LogFiles_ListByServer") | ||
|
@@ -413,49 +451,8 @@ func (testsuite *PostgresqlTestSuite) TestLogfiles() { | |
} | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/administrators/activeDirectory | ||
func (testsuite *PostgresqlTestSuite) TestServeradministrators() { | ||
var err error | ||
// From step ServerAdministrators_CreateOrUpdate | ||
fmt.Println("Call operation: ServerAdministrators_CreateOrUpdate") | ||
serverAdministratorsClient, err := armpostgresql.NewServerAdministratorsClient(testsuite.subscriptionId, testsuite.cred, testsuite.options) | ||
testsuite.Require().NoError(err) | ||
serverAdministratorsClientCreateOrUpdateResponsePoller, err := serverAdministratorsClient.BeginCreateOrUpdate(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, armpostgresql.ServerAdministratorResource{ | ||
Properties: &armpostgresql.ServerAdministratorProperties{ | ||
AdministratorType: to.Ptr("ActiveDirectory"), | ||
Login: to.Ptr("[email protected]"), | ||
Sid: to.Ptr("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"), | ||
TenantID: to.Ptr("c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c"), | ||
}, | ||
}, nil) | ||
testsuite.Require().NoError(err) | ||
_, err = testutil.PollForTest(testsuite.ctx, serverAdministratorsClientCreateOrUpdateResponsePoller) | ||
testsuite.Require().NoError(err) | ||
|
||
// From step ServerAdministrators_List | ||
fmt.Println("Call operation: ServerAdministrators_List") | ||
serverAdministratorsClientNewListPager := serverAdministratorsClient.NewListPager(testsuite.resourceGroupName, testsuite.serverName, nil) | ||
for serverAdministratorsClientNewListPager.More() { | ||
_, err := serverAdministratorsClientNewListPager.NextPage(testsuite.ctx) | ||
testsuite.Require().NoError(err) | ||
break | ||
} | ||
|
||
// From step ServerAdministrators_Get | ||
fmt.Println("Call operation: ServerAdministrators_Get") | ||
_, err = serverAdministratorsClient.Get(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, nil) | ||
testsuite.Require().NoError(err) | ||
|
||
// From step ServerAdministrators_Delete | ||
fmt.Println("Call operation: ServerAdministrators_Delete") | ||
serverAdministratorsClientDeleteResponsePoller, err := serverAdministratorsClient.BeginDelete(testsuite.ctx, testsuite.resourceGroupName, testsuite.serverName, nil) | ||
testsuite.Require().NoError(err) | ||
_, err = testutil.PollForTest(testsuite.ctx, serverAdministratorsClientDeleteResponsePoller) | ||
testsuite.Require().NoError(err) | ||
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/recoverableServers | ||
func (testsuite *PostgresqlTestSuite) TestRecoverableservers() { | ||
func (testsuite *PostgresqlTestSuite) TestRecoverableServers() { | ||
var err error | ||
// From step RecoverableServers_Get | ||
fmt.Println("Call operation: RecoverableServers_Get") | ||
|
@@ -466,7 +463,7 @@ func (testsuite *PostgresqlTestSuite) TestRecoverableservers() { | |
} | ||
|
||
// Microsoft.DBforPostgreSQL/servers/performanceTiers | ||
func (testsuite *PostgresqlTestSuite) TestServerbasedperformancetier() { | ||
func (testsuite *PostgresqlTestSuite) TestServerBasedPerformanceTier() { | ||
var err error | ||
// From step ServerBasedPerformanceTier_List | ||
fmt.Println("Call operation: ServerBasedPerformanceTier_List") | ||
|
@@ -481,7 +478,7 @@ func (testsuite *PostgresqlTestSuite) TestServerbasedperformancetier() { | |
} | ||
|
||
// Microsoft.DBforPostgreSQL/locations/performanceTiers | ||
func (testsuite *PostgresqlTestSuite) TestLocationbasedperformancetier() { | ||
func (testsuite *PostgresqlTestSuite) TestLocationBasedPerformanceTier() { | ||
var err error | ||
// From step LocationBasedPerformanceTier_List | ||
fmt.Println("Call operation: LocationBasedPerformanceTier_List") | ||
|
@@ -496,7 +493,7 @@ func (testsuite *PostgresqlTestSuite) TestLocationbasedperformancetier() { | |
} | ||
|
||
// Microsoft.DBforPostgreSQL/checkNameAvailability | ||
func (testsuite *PostgresqlTestSuite) TestChecknameavailability() { | ||
func (testsuite *PostgresqlTestSuite) TestCheckNameAvailability() { | ||
var err error | ||
// From step CheckNameAvailability_Execute | ||
fmt.Println("Call operation: CheckNameAvailability_Execute") | ||
|
Oops, something went wrong.