mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
d992f8d52d
The nodes it adds were immediately skipped by flattening and therefore never had any effect. That makes the transformer effectively dead code and removable. This was the only usage of FlattenSkip so we can remove that as well.
81 lines
1.7 KiB
Go
81 lines
1.7 KiB
Go
package terraform
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/config"
|
|
"github.com/hashicorp/terraform/dag"
|
|
)
|
|
|
|
func TestGraphNodeConfigModule_impl(t *testing.T) {
|
|
var _ dag.Vertex = new(GraphNodeConfigModule)
|
|
var _ dag.NamedVertex = new(GraphNodeConfigModule)
|
|
var _ graphNodeConfig = new(GraphNodeConfigModule)
|
|
var _ GraphNodeExpandable = new(GraphNodeConfigModule)
|
|
}
|
|
|
|
func TestGraphNodeConfigModuleExpand(t *testing.T) {
|
|
mod := testModule(t, "graph-node-module-expand")
|
|
|
|
node := &GraphNodeConfigModule{
|
|
Path: []string{RootModuleName, "child"},
|
|
Module: &config.Module{},
|
|
Tree: nil,
|
|
}
|
|
|
|
g, err := node.Expand(&BasicGraphBuilder{
|
|
Steps: []GraphTransformer{
|
|
&ConfigTransformer{Module: mod},
|
|
},
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := strings.TrimSpace(g.Subgraph().String())
|
|
expected := strings.TrimSpace(testGraphNodeModuleExpandStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
func TestGraphNodeConfigModuleExpandFlatten(t *testing.T) {
|
|
mod := testModule(t, "graph-node-module-flatten")
|
|
|
|
node := &GraphNodeConfigModule{
|
|
Path: []string{RootModuleName, "child"},
|
|
Module: &config.Module{},
|
|
Tree: nil,
|
|
}
|
|
|
|
g, err := node.Expand(&BasicGraphBuilder{
|
|
Steps: []GraphTransformer{
|
|
&ConfigTransformer{Module: mod},
|
|
},
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
fg := g.(GraphNodeFlatGraph)
|
|
|
|
actual := strings.TrimSpace(fg.FlattenGraph().String())
|
|
expected := strings.TrimSpace(testGraphNodeModuleExpandFlattenStr)
|
|
if actual != expected {
|
|
t.Fatalf("bad:\n\n%s", actual)
|
|
}
|
|
}
|
|
|
|
const testGraphNodeModuleExpandStr = `
|
|
aws_instance.bar
|
|
aws_instance.foo
|
|
aws_instance.foo
|
|
plan-destroy
|
|
`
|
|
|
|
const testGraphNodeModuleExpandFlattenStr = `
|
|
aws_instance.foo
|
|
plan-destroy
|
|
`
|