// ---------------------------------------------------------------------------- // // *** AUTO GENERATED CODE *** AUTO GENERATED CODE *** // // ---------------------------------------------------------------------------- // // This file is automatically generated by Magic Modules and manual // changes will be clobbered when the file is regenerated. // // Please read more about how to change this file in // .github/CONTRIBUTING.md. // // ---------------------------------------------------------------------------- package google import ( "fmt" "strings" "testing" "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" ) func TestAccSpannerInstance_spannerInstanceBasicExample(t *testing.T) { t.Parallel() context := map[string]interface{}{ "random_suffix": acctest.RandString(10), } resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, CheckDestroy: testAccCheckSpannerInstanceDestroy, Steps: []resource.TestStep{ { Config: testAccSpannerInstance_spannerInstanceBasicExample(context), }, { ResourceName: "google_spanner_instance.example", ImportState: true, ImportStateVerify: true, }, }, }) } func testAccSpannerInstance_spannerInstanceBasicExample(context map[string]interface{}) string { return Nprintf(` resource "google_spanner_instance" "example" { config = "regional-us-central1" display_name = "Test Spanner Instance" num_nodes = 2 labels = { "foo" = "bar" } } `, context) } func testAccCheckSpannerInstanceDestroy(s *terraform.State) error { for name, rs := range s.RootModule().Resources { if rs.Type != "google_spanner_instance" { continue } if strings.HasPrefix(name, "data.") { continue } config := testAccProvider.Meta().(*Config) url, err := replaceVarsForTest(rs, "https://spanner.googleapis.com/v1/projects/{{project}}/instances/{{name}}") if err != nil { return err } _, err = sendRequest(config, "GET", url, nil) if err == nil { return fmt.Errorf("SpannerInstance still exists at %s", url) } } return nil }