package alicloud import ( "log" "os" "testing" "fmt" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/terraform" ) var testAccProviders map[string]terraform.ResourceProvider var testAccProvider *schema.Provider func init() { testAccProvider = Provider().(*schema.Provider) testAccProviders = map[string]terraform.ResourceProvider{ "alicloud": testAccProvider, } } func TestProvider(t *testing.T) { if err := Provider().(*schema.Provider).InternalValidate(); err != nil { t.Fatalf("err: %s", err) } } func TestProvider_impl(t *testing.T) { var _ terraform.ResourceProvider = Provider() } func testAccPreCheck(t *testing.T) { if v := os.Getenv("ALICLOUD_ACCESS_KEY"); v == "" { t.Fatal("ALICLOUD_ACCESS_KEY must be set for acceptance tests") } if v := os.Getenv("ALICLOUD_SECRET_KEY"); v == "" { t.Fatal("ALICLOUD_SECRET_KEY must be set for acceptance tests") } if v := os.Getenv("ALICLOUD_REGION"); v == "" { log.Println("[INFO] Test: Using cn-beijing as test region") os.Setenv("ALICLOUD_REGION", "cn-beijing") } } func testAccCheckAlicloudDataSourceID(n string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] if !ok { return fmt.Errorf("Can't find data source: %s", n) } if rs.Primary.ID == "" { return fmt.Errorf("data source ID not set") } return nil } }