921 lines
22 KiB
Go
921 lines
22 KiB
Go
package terraform
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestGraph(t *testing.T) {
|
|
m := testModule(t, "graph-basic")
|
|
|
|
g, err := Graph(&GraphOpts{Module: m})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_configRequired(t *testing.T) {
|
|
if _, err := Graph(new(GraphOpts)); err == nil {
|
|
t.Fatal("should error")
|
|
}
|
|
}
|
|
|
|
func TestGraph_count(t *testing.T) {
|
|
m := testModule(t, "graph-count")
|
|
|
|
g, err := Graph(&GraphOpts{Module: m})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphCountStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_cycle(t *testing.T) {
|
|
m := testModule(t, "graph-cycle")
|
|
|
|
_, err := Graph(&GraphOpts{Module: m})
|
|
if err == nil {
|
|
t.Fatal("should error")
|
|
}
|
|
}
|
|
|
|
func TestGraph_dependsOn(t *testing.T) {
|
|
m := testModule(t, "graph-depends-on")
|
|
|
|
g, err := Graph(&GraphOpts{Module: m})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphDependsStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_dependsOnCount(t *testing.T) {
|
|
m := testModule(t, "graph-depends-on-count")
|
|
|
|
g, err := Graph(&GraphOpts{Module: m})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphDependsCountStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_modules(t *testing.T) {
|
|
m := testModule(t, "graph-modules")
|
|
|
|
g, err := Graph(&GraphOpts{Module: m})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphModulesStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
|
|
n := g.Noun("module.consul")
|
|
if n == nil {
|
|
t.Fatal("can't find noun")
|
|
}
|
|
mn := n.Meta.(*GraphNodeModule)
|
|
|
|
if !reflect.DeepEqual(mn.Path, []string{"root", "consul"}) {
|
|
t.Fatalf("bad: %#v", mn.Path)
|
|
}
|
|
|
|
actual = strings.TrimSpace(mn.Graph.String())
|
|
expected = strings.TrimSpace(testTerraformGraphModulesConsulStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_state(t *testing.T) {
|
|
m := testModule(t, "graph-basic")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.old": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphStateStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_tainted(t *testing.T) {
|
|
m := testModule(t, "graph-tainted")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
Tainted: []*InstanceState{
|
|
&InstanceState{
|
|
ID: "bar",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphTaintedStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraph_taintedMulti(t *testing.T) {
|
|
m := testModule(t, "graph-tainted")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
Tainted: []*InstanceState{
|
|
&InstanceState{
|
|
ID: "bar",
|
|
},
|
|
&InstanceState{
|
|
ID: "baz",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphTaintedMultiStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraphFull(t *testing.T) {
|
|
rpAws := new(MockResourceProvider)
|
|
rpOS := new(MockResourceProvider)
|
|
|
|
rpAws.ResourcesReturn = []ResourceType{
|
|
ResourceType{Name: "aws_instance"},
|
|
ResourceType{Name: "aws_load_balancer"},
|
|
ResourceType{Name: "aws_security_group"},
|
|
}
|
|
rpOS.ResourcesReturn = []ResourceType{
|
|
ResourceType{Name: "openstack_floating_ip"},
|
|
}
|
|
|
|
ps := map[string]ResourceProviderFactory{
|
|
"aws": testProviderFuncFixed(rpAws),
|
|
"open": testProviderFuncFixed(rpOS),
|
|
}
|
|
|
|
m := testModule(t, "graph-basic")
|
|
g, err := Graph(&GraphOpts{Module: m, Providers: ps})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// A helper to help get us the provider for a resource.
|
|
graphProvider := func(n string) ResourceProvider {
|
|
return g.Noun(n).Meta.(*GraphNodeResource).Resource.Provider
|
|
}
|
|
|
|
// Test a couple
|
|
if graphProvider("aws_instance.web") != rpAws {
|
|
t.Fatalf("bad: %#v", graphProvider("aws_instance.web"))
|
|
}
|
|
if graphProvider("openstack_floating_ip.random") != rpOS {
|
|
t.Fatalf("bad: %#v", graphProvider("openstack_floating_ip.random"))
|
|
}
|
|
|
|
// Test that all providers have been set
|
|
for _, n := range g.Nouns {
|
|
switch m := n.Meta.(type) {
|
|
case *GraphNodeResource:
|
|
if m.Resource.Provider == nil {
|
|
t.Fatalf("bad: %#v", m)
|
|
}
|
|
case *GraphNodeResourceProvider:
|
|
if len(m.Providers) == 0 {
|
|
t.Fatalf("bad: %#v", m)
|
|
}
|
|
default:
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGraphProvisioners(t *testing.T) {
|
|
rpAws := new(MockResourceProvider)
|
|
provShell := new(MockResourceProvisioner)
|
|
provWinRM := new(MockResourceProvisioner)
|
|
|
|
rpAws.ResourcesReturn = []ResourceType{
|
|
ResourceType{Name: "aws_instance"},
|
|
ResourceType{Name: "aws_load_balancer"},
|
|
ResourceType{Name: "aws_security_group"},
|
|
}
|
|
|
|
ps := map[string]ResourceProvisionerFactory{
|
|
"shell": testProvisionerFuncFixed(provShell),
|
|
"winrm": testProvisionerFuncFixed(provWinRM),
|
|
}
|
|
|
|
pf := map[string]ResourceProviderFactory{
|
|
"aws": testProviderFuncFixed(rpAws),
|
|
}
|
|
|
|
m := testModule(t, "graph-provisioners")
|
|
g, err := Graph(&GraphOpts{Module: m, Providers: pf, Provisioners: ps})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// A helper to help get us the provider for a resource.
|
|
graphProvisioner := func(n string, idx int) *ResourceProvisionerConfig {
|
|
return g.Noun(n).Meta.(*GraphNodeResource).Resource.Provisioners[idx]
|
|
}
|
|
|
|
// A helper to verify depedencies
|
|
depends := func(a, b string) bool {
|
|
aNoun := g.Noun(a)
|
|
bNoun := g.Noun(b)
|
|
for _, dep := range aNoun.Deps {
|
|
if dep.Source == aNoun && dep.Target == bNoun {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Test a couple
|
|
prov := graphProvisioner("aws_instance.web", 0)
|
|
if prov.Provisioner != provWinRM {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
if prov.RawConfig.Config()["cmd"] != "echo foo" {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
|
|
prov = graphProvisioner("aws_instance.web", 1)
|
|
if prov.Provisioner != provWinRM {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
if prov.RawConfig.Config()["cmd"] != "echo bar" {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
|
|
prov = graphProvisioner("aws_load_balancer.weblb", 0)
|
|
if prov.Provisioner != provShell {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
if prov.RawConfig.Config()["cmd"] != "add ${aws_instance.web.id}" {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
if prov.ConnInfo == nil || len(prov.ConnInfo.Raw) != 2 {
|
|
t.Fatalf("bad: %#v", prov)
|
|
}
|
|
|
|
// Check that the variable dependency is handled
|
|
if !depends("aws_load_balancer.weblb", "aws_instance.web") {
|
|
t.Fatalf("missing dependency from provisioner variable")
|
|
}
|
|
|
|
// Check that the connection variable dependency is handled
|
|
if !depends("aws_load_balancer.weblb", "aws_security_group.firewall") {
|
|
t.Fatalf("missing dependency from provisioner connection")
|
|
}
|
|
}
|
|
|
|
func TestGraphAddDiff(t *testing.T) {
|
|
m := testModule(t, "graph-diff")
|
|
diff := &Diff{
|
|
Modules: []*ModuleDiff{
|
|
&ModuleDiff{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*InstanceDiff{
|
|
"aws_instance.foo": &InstanceDiff{
|
|
Attributes: map[string]*ResourceAttrDiff{
|
|
"foo": &ResourceAttrDiff{
|
|
New: "bar",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, Diff: diff})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphDiffStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
|
|
// Verify that the state has been added
|
|
n := g.Noun("aws_instance.foo")
|
|
rn := n.Meta.(*GraphNodeResource)
|
|
|
|
expected2 := diff.RootModule().Resources["aws_instance.foo"]
|
|
actual2 := rn.Resource.Diff
|
|
if !reflect.DeepEqual(actual2, expected2) {
|
|
t.Fatalf("bad: %#v", actual2)
|
|
}
|
|
}
|
|
|
|
func TestGraphAddDiff_destroy(t *testing.T) {
|
|
m := testModule(t, "graph-diff-destroy")
|
|
diff := &Diff{
|
|
Modules: []*ModuleDiff{
|
|
&ModuleDiff{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*InstanceDiff{
|
|
"aws_instance.foo": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
"aws_instance.bar": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.foo": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
|
|
"aws_instance.bar": &ResourceState{
|
|
Type: "aws_instance",
|
|
Dependencies: []string{"foo"},
|
|
Primary: &InstanceState{
|
|
ID: "bar",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
diffHash := checksumStruct(t, diff)
|
|
|
|
g, err := Graph(&GraphOpts{
|
|
Module: m,
|
|
Diff: diff,
|
|
State: state,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphDiffDestroyStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s\n\nexpected:\n\n%s", actual, expected)
|
|
}
|
|
|
|
// Verify that the state has been added
|
|
n := g.Noun("aws_instance.foo (destroy)")
|
|
rn := n.Meta.(*GraphNodeResource)
|
|
|
|
expected2 := &InstanceDiff{Destroy: true}
|
|
actual2 := rn.Resource.Diff
|
|
if !reflect.DeepEqual(actual2, expected2) {
|
|
t.Fatalf("bad: %#v", actual2)
|
|
}
|
|
|
|
// Verify that our original structure has not been modified
|
|
diffHash2 := checksumStruct(t, diff)
|
|
if diffHash != diffHash2 {
|
|
t.Fatal("diff has been modified")
|
|
}
|
|
}
|
|
|
|
func TestGraphAddDiff_destroy_counts(t *testing.T) {
|
|
m := testModule(t, "graph-count")
|
|
diff := &Diff{
|
|
Modules: []*ModuleDiff{
|
|
&ModuleDiff{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*InstanceDiff{
|
|
"aws_instance.web.0": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
"aws_instance.web.1": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
"aws_instance.web.2": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
"aws_load_balancer.weblb": &InstanceDiff{
|
|
Destroy: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web.0": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_instance.web.1": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_instance.web.2": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_load_balancer.weblb": &ResourceState{
|
|
Type: "aws_load_balancer",
|
|
Dependencies: []string{"aws_instance.web.0", "aws_instance.web.1", "aws_instance.web.2"},
|
|
Primary: &InstanceState{
|
|
ID: "bar",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
diffHash := checksumStruct(t, diff)
|
|
|
|
g, err := Graph(&GraphOpts{
|
|
Module: m,
|
|
Diff: diff,
|
|
State: state,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphDiffDestroyCountsStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s\n\nexpected:\n\n%s", actual, expected)
|
|
}
|
|
|
|
// Verify that the state has been added
|
|
n := g.Noun("aws_instance.web.0 (destroy)")
|
|
rn := n.Meta.(*GraphNodeResource)
|
|
|
|
expected2 := &InstanceDiff{Destroy: true}
|
|
actual2 := rn.Resource.Diff
|
|
if !reflect.DeepEqual(actual2, expected2) {
|
|
t.Fatalf("bad: %#v", actual2)
|
|
}
|
|
|
|
// Verify that our original structure has not been modified
|
|
diffHash2 := checksumStruct(t, diff)
|
|
if diffHash != diffHash2 {
|
|
t.Fatal("diff has been modified")
|
|
}
|
|
}
|
|
|
|
func TestGraphInitState(t *testing.T) {
|
|
m := testModule(t, "graph-basic")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_load_balancer.weblb": &ResourceState{
|
|
Type: "aws_load_balancer",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// This should encode the dependency information into the state
|
|
graphInitState(state, g)
|
|
|
|
root := state.RootModule()
|
|
web := root.Resources["aws_instance.web"]
|
|
if len(web.Dependencies) != 1 || web.Dependencies[0] != "aws_security_group.firewall" {
|
|
t.Fatalf("bad: %#v", web)
|
|
}
|
|
|
|
weblb := root.Resources["aws_load_balancer.weblb"]
|
|
if len(weblb.Dependencies) != 1 || weblb.Dependencies[0] != "aws_instance.web" {
|
|
t.Fatalf("bad: %#v", weblb)
|
|
}
|
|
}
|
|
|
|
func TestGraphInitState_Count(t *testing.T) {
|
|
m := testModule(t, "graph-count")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web.0": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_load_balancer.weblb": &ResourceState{
|
|
Type: "aws_load_balancer",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// This should encode the dependency information into the state
|
|
graphInitState(state, g)
|
|
|
|
root := state.RootModule()
|
|
web := root.Resources["aws_instance.web.0"]
|
|
if len(web.Dependencies) != 0 {
|
|
t.Fatalf("bad: %#v", web)
|
|
}
|
|
|
|
weblb := root.Resources["aws_load_balancer.weblb"]
|
|
if len(weblb.Dependencies) != 3 {
|
|
t.Fatalf("bad: %#v", weblb)
|
|
}
|
|
}
|
|
|
|
func TestGraph_orphan_dependencies(t *testing.T) {
|
|
m := testModule(t, "graph-count")
|
|
state := &State{
|
|
Modules: []*ModuleState{
|
|
&ModuleState{
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
"aws_instance.web.0": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_instance.web.1": &ResourceState{
|
|
Type: "aws_instance",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
},
|
|
"aws_load_balancer.old": &ResourceState{
|
|
Type: "aws_load_balancer",
|
|
Primary: &InstanceState{
|
|
ID: "foo",
|
|
},
|
|
Dependencies: []string{
|
|
"aws_instance.web.0",
|
|
"aws_instance.web.1",
|
|
"aws_instance.web.2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
g, err := Graph(&GraphOpts{Module: m, State: state})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTerraformGraphCountOrphanStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\nactual:\n%s\n\nexpected:\n%s", actual, expected)
|
|
}
|
|
}
|
|
|
|
const testTerraformGraphStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_security_group.firewall
|
|
aws_instance.web -> provider.aws
|
|
aws_load_balancer.weblb
|
|
aws_load_balancer.weblb -> aws_instance.web
|
|
aws_load_balancer.weblb -> provider.aws
|
|
aws_security_group.firewall
|
|
aws_security_group.firewall -> provider.aws
|
|
openstack_floating_ip.random
|
|
provider.aws
|
|
provider.aws -> openstack_floating_ip.random
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_load_balancer.weblb
|
|
root -> aws_security_group.firewall
|
|
root -> openstack_floating_ip.random
|
|
`
|
|
|
|
const testTerraformGraphCountStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_instance.web.0
|
|
aws_instance.web -> aws_instance.web.1
|
|
aws_instance.web -> aws_instance.web.2
|
|
aws_instance.web.0
|
|
aws_instance.web.1
|
|
aws_instance.web.2
|
|
aws_load_balancer.weblb
|
|
aws_load_balancer.weblb -> aws_instance.web
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_load_balancer.weblb
|
|
`
|
|
|
|
const testTerraformGraphDependsStr = `
|
|
root: root
|
|
aws_instance.db
|
|
aws_instance.db -> aws_instance.web
|
|
aws_instance.web
|
|
root
|
|
root -> aws_instance.db
|
|
root -> aws_instance.web
|
|
`
|
|
|
|
const testTerraformGraphDependsCountStr = `
|
|
root: root
|
|
aws_instance.db
|
|
aws_instance.db -> aws_instance.db.0
|
|
aws_instance.db -> aws_instance.db.1
|
|
aws_instance.db.0
|
|
aws_instance.db.0 -> aws_instance.web
|
|
aws_instance.db.1
|
|
aws_instance.db.1 -> aws_instance.web
|
|
aws_instance.web
|
|
root
|
|
root -> aws_instance.db
|
|
root -> aws_instance.web
|
|
`
|
|
|
|
const testTerraformGraphDiffStr = `
|
|
root: root
|
|
aws_instance.foo
|
|
root
|
|
root -> aws_instance.foo
|
|
`
|
|
|
|
const testTerraformGraphDiffDestroyStr = `
|
|
root: root
|
|
aws_instance.bar
|
|
aws_instance.bar -> aws_instance.bar (destroy)
|
|
aws_instance.bar -> aws_instance.foo
|
|
aws_instance.bar -> provider.aws
|
|
aws_instance.bar (destroy)
|
|
aws_instance.bar (destroy) -> provider.aws
|
|
aws_instance.foo
|
|
aws_instance.foo -> aws_instance.foo (destroy)
|
|
aws_instance.foo -> provider.aws
|
|
aws_instance.foo (destroy)
|
|
aws_instance.foo (destroy) -> aws_instance.bar (destroy)
|
|
aws_instance.foo (destroy) -> provider.aws
|
|
provider.aws
|
|
root
|
|
root -> aws_instance.bar
|
|
root -> aws_instance.foo
|
|
`
|
|
|
|
const testTerraformGraphDiffDestroyCountsStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_instance.web.0
|
|
aws_instance.web -> aws_instance.web.1
|
|
aws_instance.web -> aws_instance.web.2
|
|
aws_instance.web.0
|
|
aws_instance.web.0 -> aws_instance.web.0 (destroy)
|
|
aws_instance.web.0 (destroy)
|
|
aws_instance.web.0 (destroy) -> aws_load_balancer.weblb (destroy)
|
|
aws_instance.web.1
|
|
aws_instance.web.1 -> aws_instance.web.1 (destroy)
|
|
aws_instance.web.1 (destroy)
|
|
aws_instance.web.1 (destroy) -> aws_load_balancer.weblb (destroy)
|
|
aws_instance.web.2
|
|
aws_instance.web.2 -> aws_instance.web.2 (destroy)
|
|
aws_instance.web.2 (destroy)
|
|
aws_instance.web.2 (destroy) -> aws_load_balancer.weblb (destroy)
|
|
aws_load_balancer.weblb
|
|
aws_load_balancer.weblb -> aws_instance.web
|
|
aws_load_balancer.weblb -> aws_load_balancer.weblb (destroy)
|
|
aws_load_balancer.weblb (destroy)
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_load_balancer.weblb
|
|
`
|
|
|
|
const testTerraformGraphModulesStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_security_group.firewall
|
|
aws_instance.web -> module.consul
|
|
aws_instance.web -> provider.aws
|
|
aws_security_group.firewall
|
|
aws_security_group.firewall -> provider.aws
|
|
module.consul
|
|
module.consul -> aws_security_group.firewall
|
|
provider.aws
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_security_group.firewall
|
|
root -> module.consul
|
|
`
|
|
|
|
const testTerraformGraphModulesConsulStr = `
|
|
root: root
|
|
aws_instance.server
|
|
root
|
|
root -> aws_instance.server
|
|
`
|
|
|
|
const testTerraformGraphStateStr = `
|
|
root: root
|
|
aws_instance.old
|
|
aws_instance.old -> provider.aws
|
|
aws_instance.web
|
|
aws_instance.web -> aws_security_group.firewall
|
|
aws_instance.web -> provider.aws
|
|
aws_load_balancer.weblb
|
|
aws_load_balancer.weblb -> aws_instance.web
|
|
aws_load_balancer.weblb -> provider.aws
|
|
aws_security_group.firewall
|
|
aws_security_group.firewall -> provider.aws
|
|
openstack_floating_ip.random
|
|
provider.aws
|
|
provider.aws -> openstack_floating_ip.random
|
|
root
|
|
root -> aws_instance.old
|
|
root -> aws_instance.web
|
|
root -> aws_load_balancer.weblb
|
|
root -> aws_security_group.firewall
|
|
root -> openstack_floating_ip.random
|
|
`
|
|
|
|
const testTerraformGraphTaintedStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_instance.web (tainted #1)
|
|
aws_instance.web -> aws_security_group.firewall
|
|
aws_instance.web -> provider.aws
|
|
aws_instance.web (tainted #1)
|
|
aws_instance.web (tainted #1) -> provider.aws
|
|
aws_security_group.firewall
|
|
aws_security_group.firewall -> provider.aws
|
|
provider.aws
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_instance.web (tainted #1)
|
|
root -> aws_security_group.firewall
|
|
`
|
|
|
|
const testTerraformGraphTaintedMultiStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_instance.web (tainted #1)
|
|
aws_instance.web -> aws_instance.web (tainted #2)
|
|
aws_instance.web -> aws_security_group.firewall
|
|
aws_instance.web -> provider.aws
|
|
aws_instance.web (tainted #1)
|
|
aws_instance.web (tainted #1) -> provider.aws
|
|
aws_instance.web (tainted #2)
|
|
aws_instance.web (tainted #2) -> provider.aws
|
|
aws_security_group.firewall
|
|
aws_security_group.firewall -> provider.aws
|
|
provider.aws
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_instance.web (tainted #1)
|
|
root -> aws_instance.web (tainted #2)
|
|
root -> aws_security_group.firewall
|
|
`
|
|
|
|
const testTerraformGraphCountOrphanStr = `
|
|
root: root
|
|
aws_instance.web
|
|
aws_instance.web -> aws_instance.web.0
|
|
aws_instance.web -> aws_instance.web.1
|
|
aws_instance.web -> aws_instance.web.2
|
|
aws_instance.web.0
|
|
aws_instance.web.1
|
|
aws_instance.web.2
|
|
aws_load_balancer.old
|
|
aws_load_balancer.old -> aws_instance.web.0
|
|
aws_load_balancer.old -> aws_instance.web.1
|
|
aws_load_balancer.old -> aws_instance.web.2
|
|
aws_load_balancer.weblb
|
|
aws_load_balancer.weblb -> aws_instance.web
|
|
root
|
|
root -> aws_instance.web
|
|
root -> aws_load_balancer.old
|
|
root -> aws_load_balancer.weblb
|
|
`
|