
Most of the content is inspired by existing content in https://github.com/hashicorp/terraform-provider-scaffolding.
53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
package provider
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
|
|
)
|
|
|
|
func TestAccExampleResource(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
|
|
Steps: []resource.TestStep{
|
|
// Create and Read testing
|
|
{
|
|
Config: testAccExampleResourceConfig("one"),
|
|
Check: resource.ComposeAggregateTestCheckFunc(
|
|
resource.TestCheckResourceAttr("scaffolding_example.test", "configurable_attribute", "one"),
|
|
resource.TestCheckResourceAttr("scaffolding_example.test", "id", "example-id"),
|
|
),
|
|
},
|
|
// ImportState testing
|
|
{
|
|
ResourceName: "scaffolding_example.test",
|
|
ImportState: true,
|
|
ImportStateVerify: true,
|
|
// This is not normally necessary, but is here because this
|
|
// example code does not have an actual upstream service.
|
|
// Once the Read method is able to refresh information from
|
|
// the upstream service, this can be removed.
|
|
ImportStateVerifyIgnore: []string{"configurable_attribute"},
|
|
},
|
|
// Update and Read testing
|
|
{
|
|
Config: testAccExampleResourceConfig("two"),
|
|
Check: resource.ComposeAggregateTestCheckFunc(
|
|
resource.TestCheckResourceAttr("scaffolding_example.test", "configurable_attribute", "two"),
|
|
),
|
|
},
|
|
// Delete testing automatically occurs in TestCase
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccExampleResourceConfig(configurableAttribute string) string {
|
|
return fmt.Sprintf(`
|
|
resource "scaffolding_example" "test" {
|
|
configurable_attribute = %[1]q
|
|
}
|
|
`, configurableAttribute)
|
|
}
|