terraform: remove old test

This commit is contained in:
Mitchell Hashimoto 2014-10-12 09:45:01 -07:00
parent f59e89ccb8
commit 7af9179edd
1 changed files with 0 additions and 76 deletions

View File

@ -1039,71 +1039,6 @@ func TestGraphNodeResourceExpand_provDeps(t *testing.T) {
}
}
/*
func TestGraphNodeResourceExpand_tainted(t *testing.T) {
m := testModule(t, "graph-resource-expand")
state := &State{
Modules: []*ModuleState{
&ModuleState{
Path: rootModulePath,
Resources: map[string]*ResourceState{
"aws_instance.web.0": &ResourceState{
Type: "aws_instance",
Tainted: []*InstanceState{
&InstanceState{
ID: "bar",
},
},
},
},
},
},
}
g, err := Graph(&GraphOpts{Module: m, State: state})
if err != nil {
t.Fatalf("err: %s", err)
}
// Get the resource we care about expanding
n := g.Noun("aws_instance.web")
if n == nil {
t.Fatal("could not find")
}
rn := n.Meta.(*GraphNodeResource)
g, err = rn.Expand()
if err != nil {
t.Fatalf("err: %s", err)
}
actual := strings.TrimSpace(g.String())
expected := strings.TrimSpace(testTerraformGraphResourceExpandTaintStr)
if actual != expected {
t.Fatalf("bad:\n\nactual:\n%s\n\nexpected:\n%s", actual, expected)
}
// Check the destruction noun
n = g.Noun("aws_instance.web (destroy)")
if n == nil {
t.Fatal("could not find")
}
rn = n.Meta.(*GraphNodeResource)
g, err = rn.Expand()
if err != nil {
t.Fatalf("err: %s", err)
}
actual = strings.TrimSpace(g.String())
expected = strings.TrimSpace(testTerraformGraphResourceExpandStr)
if actual != expected {
t.Fatalf("bad:\n\nactual:\n%s\n\nexpected:\n%s", actual, expected)
}
}
*/
const testTerraformGraphStr = `
root: root
aws_instance.web
@ -1425,14 +1360,3 @@ root
root -> aws_instance.web.1
root -> aws_instance.web.2
`
const testTerraformGraphResourceExpandTaintStr = `
root: root
aws_instance.web.0
aws_instance.web.1
aws_instance.web.2
root
root -> aws_instance.web.0
root -> aws_instance.web.1
root -> aws_instance.web.2
`