Merge pull request #19236 from hashicorp/jbardin/resource-tests
skip resource tests for now
This commit is contained in:
commit
ae1f93a24f
|
@ -9,7 +9,7 @@ import (
|
|||
)
|
||||
|
||||
func TestTest_importState(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ImportStateReturn = []*terraform.InstanceState{
|
||||
|
@ -61,7 +61,7 @@ func TestTest_importState(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateFail(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ImportStateReturn = []*terraform.InstanceState{
|
||||
|
@ -113,7 +113,7 @@ func TestTest_importStateFail(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateDetectId(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.DiffReturn = nil
|
||||
|
@ -189,7 +189,7 @@ func TestTest_importStateDetectId(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateIdPrefix(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.DiffReturn = nil
|
||||
|
@ -266,7 +266,7 @@ func TestTest_importStateIdPrefix(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateVerify(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.DiffReturn = nil
|
||||
|
@ -338,7 +338,7 @@ func TestTest_importStateVerify(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateVerifyFail(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.DiffReturn = nil
|
||||
|
@ -403,7 +403,7 @@ func TestTest_importStateVerifyFail(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateIdFunc(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ImportStateFn = func(
|
||||
|
@ -463,7 +463,7 @@ func TestTest_importStateIdFunc(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_importStateIdFuncFail(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ImportStateFn = func(
|
||||
|
|
|
@ -55,7 +55,7 @@ func TestParallelTest(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := &resetProvider{
|
||||
MockResourceProvider: testProvider(),
|
||||
|
@ -138,7 +138,7 @@ func TestTest(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_plan_only(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ApplyReturn = &terraform.InstanceState{
|
||||
|
@ -192,7 +192,7 @@ STATE:
|
|||
}
|
||||
|
||||
func TestTest_idRefresh(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
// Refresh count should be 3:
|
||||
// 1.) initial Ref/Plan/Apply
|
||||
|
@ -246,7 +246,7 @@ func TestTest_idRefresh(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_idRefreshCustomName(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
// Refresh count should be 3:
|
||||
// 1.) initial Ref/Plan/Apply
|
||||
|
@ -300,7 +300,7 @@ func TestTest_idRefreshCustomName(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_idRefreshFail(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
// Refresh count should be 3:
|
||||
// 1.) initial Ref/Plan/Apply
|
||||
|
@ -364,7 +364,7 @@ func TestTest_idRefreshFail(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_empty(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
destroyCalled := false
|
||||
checkDestroyFn := func(*terraform.State) error {
|
||||
|
@ -386,7 +386,7 @@ func TestTest_empty(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_noEnv(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
// Unset the variable
|
||||
if err := os.Setenv(TestEnvVar, ""); err != nil {
|
||||
|
@ -403,7 +403,7 @@ func TestTest_noEnv(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_preCheck(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
called := false
|
||||
|
||||
|
@ -418,7 +418,7 @@ func TestTest_preCheck(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_skipFunc(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
preCheckCalled := false
|
||||
skipped := false
|
||||
|
@ -460,7 +460,7 @@ func TestTest_skipFunc(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_stepError(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.ApplyReturn = &terraform.InstanceState{
|
||||
|
@ -530,7 +530,7 @@ func TestTest_factoryError(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_resetError(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := &resetProvider{
|
||||
MockResourceProvider: testProvider(),
|
||||
|
@ -555,7 +555,7 @@ func TestTest_resetError(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestTest_expectError(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
cases := []struct {
|
||||
name string
|
||||
|
@ -953,7 +953,7 @@ func mockSweeperFunc(s string) error {
|
|||
}
|
||||
|
||||
func TestTest_Taint(t *testing.T) {
|
||||
t.Fatal("test requires new provider implementation")
|
||||
t.Skip("test requires new provider implementation")
|
||||
|
||||
mp := testProvider()
|
||||
mp.DiffFn = func(
|
||||
|
|
Loading…
Reference in New Issue