|
|
|
|
@ -199,48 +199,6 @@ func TestLocal_planDestroy(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestLocal_planDestroyNoConfig(t *testing.T) {
|
|
|
|
|
b := TestLocal(t)
|
|
|
|
|
p := TestLocalProvider(t, b, "test")
|
|
|
|
|
terraform.TestStateFile(t, b.StatePath, testPlanState())
|
|
|
|
|
|
|
|
|
|
outDir := testTempDir(t)
|
|
|
|
|
defer os.RemoveAll(outDir)
|
|
|
|
|
planPath := filepath.Join(outDir, "plan.tfplan")
|
|
|
|
|
|
|
|
|
|
op := testOperationPlan()
|
|
|
|
|
op.Destroy = true
|
|
|
|
|
op.PlanRefresh = true
|
|
|
|
|
op.Module = nil
|
|
|
|
|
op.PlanOutPath = planPath
|
|
|
|
|
|
|
|
|
|
run, err := b.Operation(context.Background(), op)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("bad: %s", err)
|
|
|
|
|
}
|
|
|
|
|
<-run.Done()
|
|
|
|
|
if run.Err != nil {
|
|
|
|
|
t.Fatalf("err: %s", run.Err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !p.RefreshCalled {
|
|
|
|
|
t.Fatal("refresh should be called")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if run.PlanEmpty {
|
|
|
|
|
t.Fatal("plan should not be empty")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plan := testReadPlan(t, planPath)
|
|
|
|
|
for _, m := range plan.Diff.Modules {
|
|
|
|
|
for _, r := range m.Resources {
|
|
|
|
|
if !r.Destroy {
|
|
|
|
|
t.Fatalf("bad: %#v", r)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestLocal_planOutPathNoChange(t *testing.T) {
|
|
|
|
|
b := TestLocal(t)
|
|
|
|
|
TestLocalProvider(t, b, "test")
|
|
|
|
|
|