mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
1b6f37b6eb
The default stack changed from ‘cedar’ to ‘cedar-14’, so updated the acceptance tests to reflect this. Updating the schema makes testing easier and gives you a way to configure the provider using env variables. It also makes the provider more inline following the TF 0.2 approach.
40 lines
882 B
Go
40 lines
882 B
Go
package heroku
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"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{
|
|
"heroku": 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("HEROKU_EMAIL"); v == "" {
|
|
t.Fatal("HEROKU_EMAIL must be set for acceptance tests")
|
|
}
|
|
|
|
if v := os.Getenv("HEROKU_API_KEY"); v == "" {
|
|
t.Fatal("HEROKU_API_KEY must be set for acceptance tests")
|
|
}
|
|
}
|