github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/triton/provider_test.go (about) 1 package triton 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 "triton": 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 sdcURL := os.Getenv("SDC_URL") 33 account := os.Getenv("SDC_ACCOUNT") 34 keyID := os.Getenv("SDC_KEY_ID") 35 36 if sdcURL == "" { 37 sdcURL = "https://us-west-1.api.joyentcloud.com" 38 } 39 40 if sdcURL == "" || account == "" || keyID == "" { 41 t.Fatal("SDC_ACCOUNT and SDC_KEY_ID must be set for acceptance tests. To test with the SSH" + 42 " private key signer, SDC_KEY_MATERIAL must also be set.") 43 } 44 }