86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
|
package google
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/helper/resource"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func TestAccContainerCluster_basic(t *testing.T) {
|
||
|
resource.Test(t, resource.TestCase{
|
||
|
PreCheck: func() { testAccPreCheck(t) },
|
||
|
Providers: testAccProviders,
|
||
|
CheckDestroy: testAccCheckContainerClusterDestroy,
|
||
|
Steps: []resource.TestStep{
|
||
|
resource.TestStep{
|
||
|
Config: testAccContainerCluster_basic,
|
||
|
Check: resource.ComposeTestCheckFunc(
|
||
|
testAccCheckContainerClusterExists(
|
||
|
"google_container_cluster.primary"),
|
||
|
),
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func testAccCheckContainerClusterDestroy(s *terraform.State) error {
|
||
|
config := testAccProvider.Meta().(*Config)
|
||
|
|
||
|
for _, rs := range s.RootModule().Resources {
|
||
|
if rs.Type != "google_container_cluster" {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
attributes := rs.Primary.Attributes
|
||
|
_, err := config.clientContainer.Projects.Zones.Clusters.Get(
|
||
|
config.Project, attributes["zone"], attributes["name"]).Do()
|
||
|
if err == nil {
|
||
|
return fmt.Errorf("Cluster still exists")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func testAccCheckContainerClusterExists(n string) resource.TestCheckFunc {
|
||
|
return func(s *terraform.State) error {
|
||
|
rs, ok := s.RootModule().Resources[n]
|
||
|
if !ok {
|
||
|
return fmt.Errorf("Not found: %s", n)
|
||
|
}
|
||
|
|
||
|
if rs.Primary.ID == "" {
|
||
|
return fmt.Errorf("No ID is set")
|
||
|
}
|
||
|
|
||
|
config := testAccProvider.Meta().(*Config)
|
||
|
|
||
|
attributes := rs.Primary.Attributes
|
||
|
found, err := config.clientContainer.Projects.Zones.Clusters.Get(
|
||
|
config.Project, attributes["zone"], attributes["name"]).Do()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if found.Name != attributes["name"] {
|
||
|
return fmt.Errorf("Cluster not found")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const testAccContainerCluster_basic = `
|
||
|
resource "google_container_cluster" "primary" {
|
||
|
name = "terraform-foo-bar-test"
|
||
|
zone = "us-central1-a"
|
||
|
initial_node_count = 3
|
||
|
|
||
|
master_auth {
|
||
|
username = "mr.yoda"
|
||
|
password = "adoy.rm"
|
||
|
}
|
||
|
}`
|