terraform-provider-google/google/resource_compute_target_tcp_proxy_generated_test.go
2019-01-02 16:44:08 -08:00

102 lines
2.7 KiB
Go

// ----------------------------------------------------------------------------
//
// *** 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 TestAccComputeTargetTcpProxy_targetTcpProxyBasicExample(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: testAccCheckComputeTargetTcpProxyDestroy,
Steps: []resource.TestStep{
{
Config: testAccComputeTargetTcpProxy_targetTcpProxyBasicExample(context),
},
{
ResourceName: "google_compute_target_tcp_proxy.default",
ImportState: true,
ImportStateVerify: true,
},
},
})
}
func testAccComputeTargetTcpProxy_targetTcpProxyBasicExample(context map[string]interface{}) string {
return Nprintf(`
resource "google_compute_target_tcp_proxy" "default" {
name = "test-proxy-%{random_suffix}"
backend_service = "${google_compute_backend_service.default.self_link}"
}
resource "google_compute_backend_service" "default" {
name = "backend-service-%{random_suffix}"
protocol = "TCP"
timeout_sec = 10
health_checks = ["${google_compute_health_check.default.self_link}"]
}
resource "google_compute_health_check" "default" {
name = "health-check-%{random_suffix}"
timeout_sec = 1
check_interval_sec = 1
tcp_health_check {
port = "443"
}
}
`, context)
}
func testAccCheckComputeTargetTcpProxyDestroy(s *terraform.State) error {
for name, rs := range s.RootModule().Resources {
if rs.Type != "google_compute_target_tcp_proxy" {
continue
}
if strings.HasPrefix(name, "data.") {
continue
}
config := testAccProvider.Meta().(*Config)
url, err := replaceVarsForTest(rs, "https://www.googleapis.com/compute/v1/projects/{{project}}/global/targetTcpProxies/{{name}}")
if err != nil {
return err
}
_, err = sendRequest(config, "GET", url, nil)
if err == nil {
return fmt.Errorf("ComputeTargetTcpProxy still exists at %s", url)
}
}
return nil
}