479 lines
9.8 KiB
Go
479 lines
9.8 KiB
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
"github.com/mitchellh/cli"
|
||
|
)
|
||
|
|
||
|
func TestUntaint(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state", statePath,
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
expected := strings.TrimSpace(`
|
||
|
test_instance.foo:
|
||
|
ID = bar
|
||
|
`)
|
||
|
testStateOutput(t, statePath, expected)
|
||
|
}
|
||
|
|
||
|
func TestUntaint_indexRequired(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
&terraform.InstanceState{ID: "bar2"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state", statePath,
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code == 0 {
|
||
|
t.Fatalf("Expected non-zero exit. Output:\n\n%s", ui.OutputWriter.String())
|
||
|
}
|
||
|
|
||
|
// Nothing should have gotten untainted
|
||
|
expected := strings.TrimSpace(`
|
||
|
test_instance.foo: (2 tainted)
|
||
|
ID = <not created>
|
||
|
Tainted ID 1 = bar
|
||
|
Tainted ID 2 = bar2
|
||
|
`)
|
||
|
testStateOutput(t, statePath, expected)
|
||
|
|
||
|
// Should have gotten an error message mentioning index
|
||
|
errOut := ui.ErrorWriter.String()
|
||
|
errContains := "please specify an index"
|
||
|
if !strings.Contains(errOut, errContains) {
|
||
|
t.Fatalf("Expected err output: %s, to contain: %s", errOut, errContains)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestUntaint_indexSpecified(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
&terraform.InstanceState{ID: "bar2"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state", statePath,
|
||
|
"-index", "1",
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
// Nothing should have gotten untainted
|
||
|
expected := strings.TrimSpace(`
|
||
|
test_instance.foo: (1 tainted)
|
||
|
ID = bar2
|
||
|
Tainted ID 1 = bar
|
||
|
`)
|
||
|
testStateOutput(t, statePath, expected)
|
||
|
}
|
||
|
|
||
|
func TestUntaint_backup(t *testing.T) {
|
||
|
// Get a temp cwd
|
||
|
tmp, cwd := testCwd(t)
|
||
|
defer testFixCwd(t, tmp, cwd)
|
||
|
|
||
|
// Write the temp state
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
path := testStateFileDefault(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
// Backup is still tainted
|
||
|
testStateOutput(t, path+".backup", strings.TrimSpace(`
|
||
|
test_instance.foo: (1 tainted)
|
||
|
ID = <not created>
|
||
|
Tainted ID 1 = bar
|
||
|
`))
|
||
|
|
||
|
// State is untainted
|
||
|
testStateOutput(t, path, strings.TrimSpace(`
|
||
|
test_instance.foo:
|
||
|
ID = bar
|
||
|
`))
|
||
|
}
|
||
|
|
||
|
func TestUntaint_backupDisable(t *testing.T) {
|
||
|
// Get a temp cwd
|
||
|
tmp, cwd := testCwd(t)
|
||
|
defer testFixCwd(t, tmp, cwd)
|
||
|
|
||
|
// Write the temp state
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
path := testStateFileDefault(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-backup", "-",
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
if _, err := os.Stat(path + ".backup"); err == nil {
|
||
|
t.Fatal("backup path should not exist")
|
||
|
}
|
||
|
|
||
|
testStateOutput(t, path, strings.TrimSpace(`
|
||
|
test_instance.foo:
|
||
|
ID = bar
|
||
|
`))
|
||
|
}
|
||
|
|
||
|
func TestUntaint_badState(t *testing.T) {
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state", "i-should-not-exist-ever",
|
||
|
"foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 1 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestUntaint_defaultState(t *testing.T) {
|
||
|
// Get a temp cwd
|
||
|
tmp, cwd := testCwd(t)
|
||
|
defer testFixCwd(t, tmp, cwd)
|
||
|
|
||
|
// Write the temp state
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
path := testStateFileDefault(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
testStateOutput(t, path, strings.TrimSpace(`
|
||
|
test_instance.foo:
|
||
|
ID = bar
|
||
|
`))
|
||
|
}
|
||
|
|
||
|
func TestUntaint_missing(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state", statePath,
|
||
|
"test_instance.bar",
|
||
|
}
|
||
|
if code := c.Run(args); code == 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.OutputWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestUntaint_missingAllow(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-allow-missing",
|
||
|
"-state", statePath,
|
||
|
"test_instance.bar",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestUntaint_stateOut(t *testing.T) {
|
||
|
// Get a temp cwd
|
||
|
tmp, cwd := testCwd(t)
|
||
|
defer testFixCwd(t, tmp, cwd)
|
||
|
|
||
|
// Write the temp state
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
path := testStateFileDefault(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-state-out", "foo",
|
||
|
"test_instance.foo",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
testStateOutput(t, path, strings.TrimSpace(`
|
||
|
test_instance.foo: (1 tainted)
|
||
|
ID = <not created>
|
||
|
Tainted ID 1 = bar
|
||
|
`))
|
||
|
testStateOutput(t, "foo", strings.TrimSpace(`
|
||
|
test_instance.foo:
|
||
|
ID = bar
|
||
|
`))
|
||
|
}
|
||
|
|
||
|
func TestUntaint_module(t *testing.T) {
|
||
|
state := &terraform.State{
|
||
|
Modules: []*terraform.ModuleState{
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
&terraform.ModuleState{
|
||
|
Path: []string{"root", "child"},
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.blah": &terraform.ResourceState{
|
||
|
Type: "test_instance",
|
||
|
Tainted: []*terraform.InstanceState{
|
||
|
&terraform.InstanceState{ID: "bar"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
statePath := testStateFile(t, state)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &UntaintCommand{
|
||
|
Meta: Meta{
|
||
|
Ui: ui,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"-module=child",
|
||
|
"-state", statePath,
|
||
|
"test_instance.blah",
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||
|
}
|
||
|
|
||
|
testStateOutput(t, statePath, strings.TrimSpace(`
|
||
|
test_instance.foo: (1 tainted)
|
||
|
ID = <not created>
|
||
|
Tainted ID 1 = bar
|
||
|
|
||
|
module.child:
|
||
|
test_instance.blah:
|
||
|
ID = bar
|
||
|
`))
|
||
|
}
|