89 lines
1.8 KiB
Go
89 lines
1.8 KiB
Go
package terraform
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestCBDEdgeTransformer(t *testing.T) {
|
|
g := Graph{Path: RootModulePath}
|
|
g.Add(&graphNodeCreatorTest{AddrString: "test.A"})
|
|
g.Add(&graphNodeCreatorTest{AddrString: "test.B"})
|
|
g.Add(&graphNodeDestroyerTest{AddrString: "test.A", CBD: true})
|
|
|
|
module := testModule(t, "transform-destroy-edge-basic")
|
|
|
|
{
|
|
tf := &DestroyEdgeTransformer{
|
|
Module: module,
|
|
}
|
|
if err := tf.Transform(&g); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|
|
|
|
{
|
|
tf := &CBDEdgeTransformer{Module: module}
|
|
if err := tf.Transform(&g); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTransformCBDEdgeBasicStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestCBDEdgeTransformer_depNonCBD(t *testing.T) {
|
|
g := Graph{Path: RootModulePath}
|
|
g.Add(&graphNodeCreatorTest{AddrString: "test.A"})
|
|
g.Add(&graphNodeCreatorTest{AddrString: "test.B"})
|
|
g.Add(&graphNodeDestroyerTest{AddrString: "test.A"})
|
|
g.Add(&graphNodeDestroyerTest{AddrString: "test.B", CBD: true})
|
|
|
|
module := testModule(t, "transform-destroy-edge-basic")
|
|
|
|
{
|
|
tf := &DestroyEdgeTransformer{
|
|
Module: module,
|
|
}
|
|
if err := tf.Transform(&g); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|
|
|
|
{
|
|
tf := &CBDEdgeTransformer{Module: module}
|
|
if err := tf.Transform(&g); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.String())
|
|
expected := strings.TrimSpace(testTransformCBDEdgeDepNonCBDStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
const testTransformCBDEdgeBasicStr = `
|
|
test.A
|
|
test.A (destroy)
|
|
test.A
|
|
test.B
|
|
test.B
|
|
`
|
|
|
|
const testTransformCBDEdgeDepNonCBDStr = `
|
|
test.A
|
|
test.A (destroy) (modified)
|
|
test.A
|
|
test.B
|
|
test.B (destroy)
|
|
test.B
|
|
test.B (destroy)
|
|
test.B
|
|
`
|