59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package heroku
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/acctest"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
)
|
|
|
|
func TestAccHerokuApp_importBasic(t *testing.T) {
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckHerokuAppDestroy,
|
|
Steps: []resource.TestStep{
|
|
{
|
|
Config: testAccCheckHerokuAppConfig_basic(appName),
|
|
},
|
|
{
|
|
ResourceName: "heroku_app.foobar",
|
|
ImportState: true,
|
|
ImportStateVerify: true,
|
|
ImportStateVerifyIgnore: []string{"config_vars"},
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccHerokuApp_importOrganization(t *testing.T) {
|
|
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
|
|
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{
|
|
{
|
|
Config: testAccCheckHerokuAppConfig_organization(appName, org),
|
|
},
|
|
{
|
|
ResourceName: "heroku_app.foobar",
|
|
ImportState: true,
|
|
ImportStateVerify: true,
|
|
ImportStateVerifyIgnore: []string{"config_vars"},
|
|
},
|
|
},
|
|
})
|
|
}
|