2014-07-23 06:03:30 +02:00
|
|
|
package heroku
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-01-04 19:46:52 +01:00
|
|
|
"os"
|
2014-07-23 06:03:30 +02:00
|
|
|
"testing"
|
|
|
|
|
2014-08-27 16:50:37 +02:00
|
|
|
"github.com/cyberdelia/heroku-go/v3"
|
2016-01-21 16:31:48 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/acctest"
|
2014-07-23 06:03:30 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccHerokuApp_Basic(t *testing.T) {
|
|
|
|
var app heroku.App
|
2016-01-21 16:31:48 +01:00
|
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
2014-07-23 06:03:30 +02:00
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckHerokuAppDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_basic(appName),
|
2014-07-23 06:03:30 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExists("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributes(&app, appName),
|
2014-07-23 06:03:30 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-21 16:31:48 +01:00
|
|
|
"heroku_app.foobar", "name", appName),
|
2014-07-23 17:09:05 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-07-23 18:11:58 +02:00
|
|
|
"heroku_app.foobar", "config_vars.0.FOO", "bar"),
|
2014-07-23 06:03:30 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-23 18:38:45 +02:00
|
|
|
func TestAccHerokuApp_NameChange(t *testing.T) {
|
|
|
|
var app heroku.App
|
2016-01-21 16:31:48 +01:00
|
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
|
|
|
appName2 := fmt.Sprintf("%s-v2", appName)
|
2014-07-23 18:38:45 +02:00
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckHerokuAppDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_basic(appName),
|
2014-07-23 18:38:45 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExists("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributes(&app, appName),
|
2014-07-23 18:38:45 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-21 16:31:48 +01:00
|
|
|
"heroku_app.foobar", "name", appName),
|
2014-07-23 18:38:45 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"heroku_app.foobar", "config_vars.0.FOO", "bar"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_updated(appName2),
|
2014-07-23 18:38:45 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExists("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributesUpdated(&app, appName2),
|
2014-07-23 18:38:45 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-21 16:31:48 +01:00
|
|
|
"heroku_app.foobar", "name", appName2),
|
2014-07-23 18:38:45 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"heroku_app.foobar", "config_vars.0.FOO", "bing"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"heroku_app.foobar", "config_vars.0.BAZ", "bar"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-23 20:46:12 +02:00
|
|
|
func TestAccHerokuApp_NukeVars(t *testing.T) {
|
|
|
|
var app heroku.App
|
2016-01-21 16:31:48 +01:00
|
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
2014-07-23 20:46:12 +02:00
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckHerokuAppDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_basic(appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExists("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributes(&app, appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-21 16:31:48 +01:00
|
|
|
"heroku_app.foobar", "name", appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"heroku_app.foobar", "config_vars.0.FOO", "bar"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_no_vars(appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExists("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributesNoVars(&app, appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-21 16:31:48 +01:00
|
|
|
"heroku_app.foobar", "name", appName),
|
2014-07-23 20:46:12 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"heroku_app.foobar", "config_vars.0.FOO", ""),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-04 19:46:52 +01:00
|
|
|
func TestAccHerokuApp_Organization(t *testing.T) {
|
|
|
|
var app heroku.OrganizationApp
|
2016-01-21 16:31:48 +01:00
|
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
2016-01-04 19:46:52 +01:00
|
|
|
org := os.Getenv("HEROKU_ORGANIZATION")
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
if org == "" {
|
|
|
|
t.Skip("HEROKU_ORGANIZATION is not set; skipping test.")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckHerokuAppDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-01-21 16:31:48 +01:00
|
|
|
Config: testAccCheckHerokuAppConfig_organization(appName, org),
|
2016-01-04 19:46:52 +01:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckHerokuAppExistsOrg("heroku_app.foobar", &app),
|
2016-01-21 16:31:48 +01:00
|
|
|
testAccCheckHerokuAppAttributesOrg(&app, appName, org),
|
2016-01-04 19:46:52 +01:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-23 06:03:30 +02:00
|
|
|
func testAccCheckHerokuAppDestroy(s *terraform.State) error {
|
2014-08-27 16:50:37 +02:00
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
2014-07-23 06:03:30 +02:00
|
|
|
|
2014-09-17 02:20:47 +02:00
|
|
|
for _, rs := range s.RootModule().Resources {
|
2014-07-23 06:03:30 +02:00
|
|
|
if rs.Type != "heroku_app" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-09-17 02:20:47 +02:00
|
|
|
_, err := client.AppInfo(rs.Primary.ID)
|
2014-07-23 06:03:30 +02:00
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
return fmt.Errorf("App still exists")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppAttributes(app *heroku.App, appName string) resource.TestCheckFunc {
|
2014-07-23 06:03:30 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-08-27 16:50:37 +02:00
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
2014-07-23 17:09:05 +02:00
|
|
|
|
|
|
|
if app.Region.Name != "us" {
|
|
|
|
return fmt.Errorf("Bad region: %s", app.Region.Name)
|
|
|
|
}
|
|
|
|
|
2014-11-19 14:25:18 +01:00
|
|
|
if app.Stack.Name != "cedar-14" {
|
2014-07-23 17:09:05 +02:00
|
|
|
return fmt.Errorf("Bad stack: %s", app.Stack.Name)
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
if app.Name != appName {
|
2014-07-23 17:09:05 +02:00
|
|
|
return fmt.Errorf("Bad name: %s", app.Name)
|
|
|
|
}
|
2014-07-23 06:03:30 +02:00
|
|
|
|
2014-07-23 17:09:05 +02:00
|
|
|
vars, err := client.ConfigVarInfo(app.Name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-07-23 18:11:58 +02:00
|
|
|
if vars["FOO"] != "bar" {
|
2014-07-23 17:09:05 +02:00
|
|
|
return fmt.Errorf("Bad config vars: %v", vars)
|
|
|
|
}
|
2014-07-23 06:03:30 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppAttributesUpdated(app *heroku.App, appName string) resource.TestCheckFunc {
|
2014-07-23 18:38:45 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-08-27 16:50:37 +02:00
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
2014-07-23 18:38:45 +02:00
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
if app.Name != appName {
|
2014-07-23 18:38:45 +02:00
|
|
|
return fmt.Errorf("Bad name: %s", app.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
vars, err := client.ConfigVarInfo(app.Name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we kept the old one
|
|
|
|
if vars["FOO"] != "bing" {
|
|
|
|
return fmt.Errorf("Bad config vars: %v", vars)
|
|
|
|
}
|
|
|
|
|
|
|
|
if vars["BAZ"] != "bar" {
|
|
|
|
return fmt.Errorf("Bad config vars: %v", vars)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppAttributesNoVars(app *heroku.App, appName string) resource.TestCheckFunc {
|
2014-07-23 20:46:12 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-08-27 16:50:37 +02:00
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
2014-07-23 20:46:12 +02:00
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
if app.Name != appName {
|
2014-07-23 20:46:12 +02:00
|
|
|
return fmt.Errorf("Bad name: %s", app.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
vars, err := client.ConfigVarInfo(app.Name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(vars) != 0 {
|
|
|
|
return fmt.Errorf("vars exist: %v", vars)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppAttributesOrg(app *heroku.OrganizationApp, appName string, org string) resource.TestCheckFunc {
|
2016-01-04 19:46:52 +01:00
|
|
|
return func(s *terraform.State) error {
|
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
|
|
|
|
|
|
|
if app.Region.Name != "us" {
|
|
|
|
return fmt.Errorf("Bad region: %s", app.Region.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if app.Stack.Name != "cedar-14" {
|
|
|
|
return fmt.Errorf("Bad stack: %s", app.Stack.Name)
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
if app.Name != appName {
|
2016-01-04 19:46:52 +01:00
|
|
|
return fmt.Errorf("Bad name: %s", app.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if app.Organization == nil || app.Organization.Name != org {
|
|
|
|
return fmt.Errorf("Bad org: %v", app.Organization)
|
|
|
|
}
|
|
|
|
|
|
|
|
vars, err := client.ConfigVarInfo(app.Name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if vars["FOO"] != "bar" {
|
|
|
|
return fmt.Errorf("Bad config vars: %v", vars)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-23 06:03:30 +02:00
|
|
|
func testAccCheckHerokuAppExists(n string, app *heroku.App) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
2014-09-17 02:20:47 +02:00
|
|
|
rs, ok := s.RootModule().Resources[n]
|
2014-07-23 20:46:12 +02:00
|
|
|
|
2014-07-23 06:03:30 +02:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found: %s", n)
|
|
|
|
}
|
|
|
|
|
2014-09-17 02:20:47 +02:00
|
|
|
if rs.Primary.ID == "" {
|
2014-07-23 06:03:30 +02:00
|
|
|
return fmt.Errorf("No App Name is set")
|
|
|
|
}
|
|
|
|
|
2014-08-27 16:50:37 +02:00
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
2014-07-23 06:03:30 +02:00
|
|
|
|
2014-09-17 02:20:47 +02:00
|
|
|
foundApp, err := client.AppInfo(rs.Primary.ID)
|
2014-07-23 06:03:30 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-17 02:20:47 +02:00
|
|
|
if foundApp.Name != rs.Primary.ID {
|
2014-07-23 06:03:30 +02:00
|
|
|
return fmt.Errorf("App not found")
|
|
|
|
}
|
|
|
|
|
2014-07-23 17:09:05 +02:00
|
|
|
*app = *foundApp
|
2014-07-23 06:03:30 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-04 19:46:52 +01:00
|
|
|
func testAccCheckHerokuAppExistsOrg(n string, app *heroku.OrganizationApp) 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 App Name is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
client := testAccProvider.Meta().(*heroku.Service)
|
|
|
|
|
|
|
|
foundApp, err := client.OrganizationAppInfo(rs.Primary.ID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if foundApp.Name != rs.Primary.ID {
|
|
|
|
return fmt.Errorf("App not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
*app = *foundApp
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppConfig_basic(appName string) string {
|
|
|
|
return fmt.Sprintf(`
|
2014-07-23 06:03:30 +02:00
|
|
|
resource "heroku_app" "foobar" {
|
2016-01-21 16:31:48 +01:00
|
|
|
name = "%s"
|
2016-01-04 19:46:52 +01:00
|
|
|
region = "us"
|
2014-07-23 17:09:05 +02:00
|
|
|
|
2016-01-04 19:46:52 +01:00
|
|
|
config_vars {
|
|
|
|
FOO = "bar"
|
|
|
|
}
|
2016-01-21 16:31:48 +01:00
|
|
|
}`, appName)
|
|
|
|
}
|
2014-07-23 18:38:45 +02:00
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppConfig_updated(appName string) string {
|
|
|
|
return fmt.Sprintf(`
|
2014-07-23 18:38:45 +02:00
|
|
|
resource "heroku_app" "foobar" {
|
2016-01-21 16:31:48 +01:00
|
|
|
name = "%s"
|
2016-01-04 19:46:52 +01:00
|
|
|
region = "us"
|
2014-07-23 18:38:45 +02:00
|
|
|
|
2016-01-04 19:46:52 +01:00
|
|
|
config_vars {
|
|
|
|
FOO = "bing"
|
|
|
|
BAZ = "bar"
|
|
|
|
}
|
2016-01-21 16:31:48 +01:00
|
|
|
}`, appName)
|
|
|
|
}
|
2014-07-23 20:46:12 +02:00
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppConfig_no_vars(appName string) string {
|
|
|
|
return fmt.Sprintf(`
|
2014-07-23 20:46:12 +02:00
|
|
|
resource "heroku_app" "foobar" {
|
2016-01-21 16:31:48 +01:00
|
|
|
name = "%s"
|
2016-01-04 19:46:52 +01:00
|
|
|
region = "us"
|
2016-01-21 16:31:48 +01:00
|
|
|
}`, appName)
|
|
|
|
}
|
2016-01-04 19:46:52 +01:00
|
|
|
|
2016-01-21 16:31:48 +01:00
|
|
|
func testAccCheckHerokuAppConfig_organization(appName, org string) string {
|
|
|
|
return fmt.Sprintf(`
|
2016-01-04 19:46:52 +01:00
|
|
|
resource "heroku_app" "foobar" {
|
2016-01-21 16:31:48 +01:00
|
|
|
name = "%s"
|
2016-01-04 19:46:52 +01:00
|
|
|
region = "us"
|
|
|
|
|
|
|
|
organization {
|
|
|
|
name = "%s"
|
|
|
|
}
|
|
|
|
|
|
|
|
config_vars {
|
|
|
|
FOO = "bar"
|
|
|
|
}
|
2016-01-21 16:31:48 +01:00
|
|
|
}`, appName, org)
|
|
|
|
}
|