package google import ( "fmt" "testing" "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" ) // Test that a service account resource can be created, updated, and destroyed func TestAccServiceAccount_basic(t *testing.T) { t.Parallel() accountId := "a" + acctest.RandString(10) uniqueId := "" displayName := "Terraform Test" displayName2 := "Terraform Test Update" project := getTestProjectFromEnv() expectedEmail := fmt.Sprintf("%s@%s.iam.gserviceaccount.com", accountId, project) resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, Steps: []resource.TestStep{ // The first step creates a basic service account resource.TestStep{ Config: testAccServiceAccountBasic(accountId, displayName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr( "google_service_account.acceptance", "project", project), ), }, resource.TestStep{ ResourceName: "google_service_account.acceptance", ImportStateId: fmt.Sprintf("projects/%s/serviceAccounts/%s", project, expectedEmail), ImportState: true, ImportStateVerify: true, }, resource.TestStep{ ResourceName: "google_service_account.acceptance", ImportStateId: fmt.Sprintf("%s/%s", project, expectedEmail), ImportState: true, ImportStateVerify: true, }, resource.TestStep{ ResourceName: "google_service_account.acceptance", ImportStateId: expectedEmail, ImportState: true, ImportStateVerify: true, }, // The second step updates the service account resource.TestStep{ Config: testAccServiceAccountBasic(accountId, displayName2), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr( "google_service_account.acceptance", "project", project), testAccStoreServiceAccountUniqueId(&uniqueId), ), }, resource.TestStep{ ResourceName: "google_service_account.acceptance", ImportState: true, ImportStateVerify: true, }, // The third step explicitely adds the same default project to the service account configuration // and ensure the service account is not recreated by comparing the value of its unique_id with the one from the previous step resource.TestStep{ Config: testAccServiceAccountWithProject(project, accountId, displayName2), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr( "google_service_account.acceptance", "project", project), resource.TestCheckResourceAttrPtr( "google_service_account.acceptance", "unique_id", &uniqueId), ), }, resource.TestStep{ ResourceName: "google_service_account.acceptance", ImportState: true, ImportStateVerify: true, }, }, }) } func testAccStoreServiceAccountUniqueId(uniqueId *string) resource.TestCheckFunc { return func(s *terraform.State) error { *uniqueId = s.RootModule().Resources["google_service_account.acceptance"].Primary.Attributes["unique_id"] return nil } } func testAccServiceAccountBasic(account, name string) string { return fmt.Sprintf(` resource "google_service_account" "acceptance" { account_id = "%v" display_name = "%v" } `, account, name) } func testAccServiceAccountWithProject(project, account, name string) string { return fmt.Sprintf(` resource "google_service_account" "acceptance" { project = "%v" account_id = "%v" display_name = "%v" } `, project, account, name) } func testAccServiceAccountPolicy(account, project string) string { return fmt.Sprintf(` resource "google_service_account" "acceptance" { account_id = "%v" display_name = "%v" } data "google_iam_policy" "service_account" { binding { role = "roles/iam.serviceAccountActor" members = [ "serviceAccount:%v@%v.iam.gserviceaccount.com", ] } } `, account, account, account, project) }