-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new tests, configurations and fixtures
- Loading branch information
Showing
7 changed files
with
6,132 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
package cloudamqp | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
|
||
"github.com/cloudamqp/terraform-provider-cloudamqp/cloudamqp/vcr-testing/configuration" | ||
"github.com/cloudamqp/terraform-provider-cloudamqp/cloudamqp/vcr-testing/converter" | ||
) | ||
|
||
// TestAccUpgradeRabbitMQ_Latest: Upgrade RabbitMQ to latest possible version, from 3.12.2 -> 3.13.2 | ||
// Extra checks are needed when comparing versions, because next step is executed before backend | ||
// have been updated. Same reason unable to use cloudamqp_upgradable_versions data source correctly. | ||
func TestAccUpgradeRabbitMQ_Latest(t *testing.T) { | ||
var ( | ||
fileNames = []string{"instance_with_version", "data_source/nodes"} | ||
instanceResourceName = "cloudamqp_instance.instance" | ||
dataSourceNodesName = "data.cloudamqp_nodes.nodes" | ||
|
||
params = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"InstanceRmqVersion": "3.12.2", | ||
} | ||
|
||
fileNamesUpgrade = []string{"instance", "data_source/nodes", "upgrade_rabbitmq_latest"} | ||
|
||
paramsUpgrade01 = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"UpgradeRabbitMQCurrentVersion": "3.12.2", | ||
"UpgradeRabbitMQNewVersion": "3.12.13", | ||
} | ||
|
||
paramsUpgrade02 = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"UpgradeRabbitMQCurrentVersion": "3.12.13", | ||
"UpgradeRabbitMQNewVersion": "3.13.2", | ||
} | ||
|
||
fileNamesCheckUpgrade = []string{"instance", "data_source/nodes"} | ||
paramsCheck = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
} | ||
) | ||
|
||
cloudamqpResourceTest(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
ProviderFactories: testAccProviderFactory, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNames, params), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(instanceResourceName, "name", params["InstanceName"]), | ||
resource.TestCheckResourceAttr(instanceResourceName, "plan", "bunny-1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "region", "amazon-web-services::us-east-1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "rmq_version", params["InstanceRmqVersion"]), | ||
resource.TestCheckResourceAttr(instanceResourceName, "tags.#", "1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "tags.0", "terraform"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "nodes", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", params["InstanceRmqVersion"]), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesUpgrade, paramsUpgrade01), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.2"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesCheckUpgrade, paramsCheck), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.13"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesUpgrade, paramsUpgrade02), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.13"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesCheckUpgrade, paramsCheck), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.13.2"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
// TestAccUpgradeRabbitMQ_Specific: Upgrade RabbitMQ to a specific version, from 3.12.2 -> 3.13.2 | ||
// Extra checks are needed when comparing versions, because next step is executed before backend | ||
// have been updated. | ||
func TestAccUpgradeRabbitMQ_Specific(t *testing.T) { | ||
var ( | ||
fileNames = []string{"instance_with_version", "data_source/nodes"} | ||
instanceResourceName = "cloudamqp_instance.instance" | ||
dataSourceNodesName = "data.cloudamqp_nodes.nodes" | ||
|
||
params = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"InstanceRmqVersion": "3.12.2", | ||
} | ||
|
||
fileNamesUpgrade = []string{"instance", "data_source/nodes", "upgrade_rabbitmq_latest"} | ||
|
||
paramsUpgrade01 = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"UpgradeRabbitMQNewVersion": "3.12.13", | ||
} | ||
|
||
paramsUpgrade02 = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
"UpgradeRabbitMQNewVersion": "3.13.2", | ||
} | ||
|
||
fileNamesCheckUpgrade = []string{"instance", "data_source/nodes"} | ||
paramsCheck = map[string]string{ | ||
"InstanceName": "TestAccUpgradeRabbitMQ_Latest", | ||
"InstanceTags": converter.CommaStringArray([]string{"terraform"}), | ||
"InstanceID": fmt.Sprintf("%s.id", instanceResourceName), | ||
} | ||
) | ||
|
||
cloudamqpResourceTest(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
ProviderFactories: testAccProviderFactory, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNames, params), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(instanceResourceName, "name", params["InstanceName"]), | ||
resource.TestCheckResourceAttr(instanceResourceName, "plan", "bunny-1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "region", "amazon-web-services::us-east-1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "rmq_version", params["InstanceRmqVersion"]), | ||
resource.TestCheckResourceAttr(instanceResourceName, "tags.#", "1"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "tags.0", "terraform"), | ||
resource.TestCheckResourceAttr(instanceResourceName, "nodes", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", params["InstanceRmqVersion"]), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesUpgrade, paramsUpgrade01), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.2"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesCheckUpgrade, paramsCheck), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.13"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesUpgrade, paramsUpgrade02), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.12.13"), | ||
), | ||
}, | ||
{ | ||
Config: configuration.GetTemplatedConfig(t, fileNamesCheckUpgrade, paramsCheck), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.#", "1"), | ||
resource.TestCheckResourceAttr(dataSourceNodesName, "nodes.0.rabbitmq_version", "3.13.2"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
data "cloudamqp_upgradable_versions" "upgrade" { | ||
instance_id = {{.InstanceID}} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
resource "cloudamqp_instance" "instance" { | ||
name = "{{or .InstanceName `TestAccInstance`}}" | ||
plan = "{{or .InstancePlan `bunny-1`}}" | ||
region = "{{or .InstanceRegion `amazon-web-services::us-east-1`}}" | ||
tags = {{or .InstanceTags `["terraform"]`}} | ||
rmq_version = "{{.InstanceRmqVersion}}" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
resource "cloudamqp_upgrade_rabbitmq" "upgrade" { | ||
instance_id = {{.InstanceID}} | ||
current_version = "{{.UpgradeRabbitMQCurrentVersion}}" | ||
new_version = "{{.UpgradeRabbitMQNewVersion}}" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
resource "cloudamqp_upgrade_rabbitmq" "upgrade" { | ||
instance_id = {{.InstanceID}} | ||
new_version = "{{.UpgradeRabbitMQNewVersion}}" | ||
} |
3,470 changes: 3,470 additions & 0 deletions
3,470
test/fixtures/vcr/TestAccUpgradeRabbitMQ_Latest.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
2,450 changes: 2,450 additions & 0 deletions
2,450
test/fixtures/vcr/TestAccUpgradeRabbitMQ_Specific.yaml
Large diffs are not rendered by default.
Oops, something went wrong.