github.com/chalford/terraform@v0.3.7-0.20150113080010-a78c69a8c81f/builtin/providers/google/provider_test.go (about) 1 package google 2 3 import ( 4 "os" 5 "testing" 6 7 "github.com/hashicorp/terraform/helper/schema" 8 "github.com/hashicorp/terraform/terraform" 9 ) 10 11 var testAccProviders map[string]terraform.ResourceProvider 12 var testAccProvider *schema.Provider 13 14 func init() { 15 testAccProvider = Provider().(*schema.Provider) 16 testAccProviders = map[string]terraform.ResourceProvider{ 17 "google": testAccProvider, 18 } 19 } 20 21 func TestProvider(t *testing.T) { 22 if err := Provider().(*schema.Provider).InternalValidate(); err != nil { 23 t.Fatalf("err: %s", err) 24 } 25 } 26 27 func TestProvider_impl(t *testing.T) { 28 var _ terraform.ResourceProvider = Provider() 29 } 30 31 func testAccPreCheck(t *testing.T) { 32 if v := os.Getenv("GOOGLE_ACCOUNT_FILE"); v == "" { 33 t.Fatal("GOOGLE_ACCOUNT_FILE must be set for acceptance tests") 34 } 35 36 if v := os.Getenv("GOOGLE_CLIENT_FILE"); v == "" { 37 t.Fatal("GOOGLE_CLIENT_FILE must be set for acceptance tests") 38 } 39 40 if v := os.Getenv("GOOGLE_PROJECT"); v == "" { 41 t.Fatal("GOOGLE_PROJECT must be set for acceptance tests") 42 } 43 44 if v := os.Getenv("GOOGLE_REGION"); v != "us-central1" { 45 t.Fatal("GOOGLE_REGION must be set to us-central1 for acceptance tests") 46 } 47 }