Merge pull request #30656 from hashicorp/jbardin/always-validate
Always validate the graph
This commit is contained in:
commit
45e2a410f7
|
@ -110,7 +110,6 @@ func (c *Context) applyGraph(plan *plans.Plan, config *configs.Config, validate
|
||||||
Plugins: c.plugins,
|
Plugins: c.plugins,
|
||||||
Targets: plan.TargetAddrs,
|
Targets: plan.TargetAddrs,
|
||||||
ForceReplace: plan.ForceReplaceAddrs,
|
ForceReplace: plan.ForceReplaceAddrs,
|
||||||
Validate: validate,
|
|
||||||
}).Build(addrs.RootModuleInstance)
|
}).Build(addrs.RootModuleInstance)
|
||||||
diags = diags.Append(moreDiags)
|
diags = diags.Append(moreDiags)
|
||||||
if moreDiags.HasErrors() {
|
if moreDiags.HasErrors() {
|
||||||
|
|
|
@ -22,7 +22,6 @@ type GraphBuilder interface {
|
||||||
// structure.
|
// structure.
|
||||||
type BasicGraphBuilder struct {
|
type BasicGraphBuilder struct {
|
||||||
Steps []GraphTransformer
|
Steps []GraphTransformer
|
||||||
Validate bool
|
|
||||||
// Optional name to add to the graph debug log
|
// Optional name to add to the graph debug log
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
@ -56,14 +55,11 @@ func (b *BasicGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Di
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate the graph structure
|
|
||||||
if b.Validate {
|
|
||||||
if err := g.Validate(); err != nil {
|
if err := g.Validate(); err != nil {
|
||||||
log.Printf("[ERROR] Graph validation failed. Graph:\n\n%s", g.String())
|
log.Printf("[ERROR] Graph validation failed. Graph:\n\n%s", g.String())
|
||||||
diags = diags.Append(err)
|
diags = diags.Append(err)
|
||||||
return nil, diags
|
return nil, diags
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return g, diags
|
return g, diags
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,16 +46,12 @@ type ApplyGraphBuilder struct {
|
||||||
// The apply step refers to these as part of verifying that the planned
|
// The apply step refers to these as part of verifying that the planned
|
||||||
// actions remain consistent between plan and apply.
|
// actions remain consistent between plan and apply.
|
||||||
ForceReplace []addrs.AbsResourceInstance
|
ForceReplace []addrs.AbsResourceInstance
|
||||||
|
|
||||||
// Validate will do structural validation of the graph.
|
|
||||||
Validate bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// See GraphBuilder
|
// See GraphBuilder
|
||||||
func (b *ApplyGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
func (b *ApplyGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
||||||
return (&BasicGraphBuilder{
|
return (&BasicGraphBuilder{
|
||||||
Steps: b.Steps(),
|
Steps: b.Steps(),
|
||||||
Validate: b.Validate,
|
|
||||||
Name: "ApplyGraphBuilder",
|
Name: "ApplyGraphBuilder",
|
||||||
}).Build(path)
|
}).Build(path)
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,9 +35,6 @@ type DestroyPlanGraphBuilder struct {
|
||||||
// Targets are resources to target
|
// Targets are resources to target
|
||||||
Targets []addrs.Targetable
|
Targets []addrs.Targetable
|
||||||
|
|
||||||
// Validate will do structural validation of the graph.
|
|
||||||
Validate bool
|
|
||||||
|
|
||||||
// If set, skipRefresh will cause us stop skip refreshing any existing
|
// If set, skipRefresh will cause us stop skip refreshing any existing
|
||||||
// resource instances as part of our planning. This will cause us to fail
|
// resource instances as part of our planning. This will cause us to fail
|
||||||
// to detect if an object has already been deleted outside of Terraform.
|
// to detect if an object has already been deleted outside of Terraform.
|
||||||
|
@ -48,7 +45,6 @@ type DestroyPlanGraphBuilder struct {
|
||||||
func (b *DestroyPlanGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
func (b *DestroyPlanGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
||||||
return (&BasicGraphBuilder{
|
return (&BasicGraphBuilder{
|
||||||
Steps: b.Steps(),
|
Steps: b.Steps(),
|
||||||
Validate: b.Validate,
|
|
||||||
Name: "DestroyPlanGraphBuilder",
|
Name: "DestroyPlanGraphBuilder",
|
||||||
}).Build(path)
|
}).Build(path)
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,6 @@ type EvalGraphBuilder struct {
|
||||||
func (b *EvalGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
func (b *EvalGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
||||||
return (&BasicGraphBuilder{
|
return (&BasicGraphBuilder{
|
||||||
Steps: b.Steps(),
|
Steps: b.Steps(),
|
||||||
Validate: true,
|
|
||||||
Name: "EvalGraphBuilder",
|
Name: "EvalGraphBuilder",
|
||||||
}).Build(path)
|
}).Build(path)
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,6 @@ type ImportGraphBuilder struct {
|
||||||
func (b *ImportGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
func (b *ImportGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
||||||
return (&BasicGraphBuilder{
|
return (&BasicGraphBuilder{
|
||||||
Steps: b.Steps(),
|
Steps: b.Steps(),
|
||||||
Validate: true,
|
|
||||||
Name: "ImportGraphBuilder",
|
Name: "ImportGraphBuilder",
|
||||||
}).Build(path)
|
}).Build(path)
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,6 @@ func TestBasicGraphBuilder_validate(t *testing.T) {
|
||||||
&testBasicGraphBuilderTransform{1},
|
&testBasicGraphBuilderTransform{1},
|
||||||
&testBasicGraphBuilderTransform{2},
|
&testBasicGraphBuilderTransform{2},
|
||||||
},
|
},
|
||||||
Validate: true,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err := b.Build(addrs.RootModuleInstance)
|
_, err := b.Build(addrs.RootModuleInstance)
|
||||||
|
@ -51,21 +50,6 @@ func TestBasicGraphBuilder_validate(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBasicGraphBuilder_validateOff(t *testing.T) {
|
|
||||||
b := &BasicGraphBuilder{
|
|
||||||
Steps: []GraphTransformer{
|
|
||||||
&testBasicGraphBuilderTransform{1},
|
|
||||||
&testBasicGraphBuilderTransform{2},
|
|
||||||
},
|
|
||||||
Validate: false,
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := b.Build(addrs.RootModuleInstance)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("expected no error, got: %s", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type testBasicGraphBuilderTransform struct {
|
type testBasicGraphBuilderTransform struct {
|
||||||
V dag.Vertex
|
V dag.Vertex
|
||||||
}
|
}
|
||||||
|
|
|
@ -391,7 +391,6 @@ func (n *NodePlannableResource) DynamicExpand(ctx EvalContext) (*Graph, error) {
|
||||||
// Build the graph
|
// Build the graph
|
||||||
b := &BasicGraphBuilder{
|
b := &BasicGraphBuilder{
|
||||||
Steps: steps,
|
Steps: steps,
|
||||||
Validate: true,
|
|
||||||
Name: "NodePlannableResource",
|
Name: "NodePlannableResource",
|
||||||
}
|
}
|
||||||
graph, diags := b.Build(ctx.Path())
|
graph, diags := b.Build(ctx.Path())
|
||||||
|
|
|
@ -46,7 +46,12 @@ func cbdTestSteps(steps []GraphTransformer) []GraphTransformer {
|
||||||
panic("CBDEdgeTransformer not found")
|
panic("CBDEdgeTransformer not found")
|
||||||
}
|
}
|
||||||
|
|
||||||
return steps[:i+1]
|
// re-add the root node so we have a valid graph for a walk, then reduce
|
||||||
|
// the graph for less output
|
||||||
|
steps = append(steps[:i+1], &CloseRootModuleTransformer{})
|
||||||
|
steps = append(steps, &TransitiveReductionTransformer{})
|
||||||
|
|
||||||
|
return steps
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove extra nodes for easier test comparisons
|
// remove extra nodes for easier test comparisons
|
||||||
|
@ -105,7 +110,6 @@ func TestCBDEdgeTransformer(t *testing.T) {
|
||||||
expected := regexp.MustCompile(strings.TrimSpace(`
|
expected := regexp.MustCompile(strings.TrimSpace(`
|
||||||
(?m)test_object.A
|
(?m)test_object.A
|
||||||
test_object.A \(destroy deposed \w+\)
|
test_object.A \(destroy deposed \w+\)
|
||||||
test_object.A
|
|
||||||
test_object.B
|
test_object.B
|
||||||
test_object.B
|
test_object.B
|
||||||
test_object.A
|
test_object.A
|
||||||
|
@ -178,11 +182,9 @@ func TestCBDEdgeTransformerMulti(t *testing.T) {
|
||||||
expected := regexp.MustCompile(strings.TrimSpace(`
|
expected := regexp.MustCompile(strings.TrimSpace(`
|
||||||
(?m)test_object.A
|
(?m)test_object.A
|
||||||
test_object.A \(destroy deposed \w+\)
|
test_object.A \(destroy deposed \w+\)
|
||||||
test_object.A
|
|
||||||
test_object.C
|
test_object.C
|
||||||
test_object.B
|
test_object.B
|
||||||
test_object.B \(destroy deposed \w+\)
|
test_object.B \(destroy deposed \w+\)
|
||||||
test_object.B
|
|
||||||
test_object.C
|
test_object.C
|
||||||
test_object.C
|
test_object.C
|
||||||
test_object.A
|
test_object.A
|
||||||
|
@ -253,7 +255,6 @@ func TestCBDEdgeTransformer_depNonCBDCount(t *testing.T) {
|
||||||
expected := regexp.MustCompile(strings.TrimSpace(`
|
expected := regexp.MustCompile(strings.TrimSpace(`
|
||||||
(?m)test_object.A
|
(?m)test_object.A
|
||||||
test_object.A \(destroy deposed \w+\)
|
test_object.A \(destroy deposed \w+\)
|
||||||
test_object.A
|
|
||||||
test_object.B\[0\]
|
test_object.B\[0\]
|
||||||
test_object.B\[1\]
|
test_object.B\[1\]
|
||||||
test_object.B\[0\]
|
test_object.B\[0\]
|
||||||
|
@ -339,12 +340,10 @@ func TestCBDEdgeTransformer_depNonCBDCountBoth(t *testing.T) {
|
||||||
expected := regexp.MustCompile(strings.TrimSpace(`
|
expected := regexp.MustCompile(strings.TrimSpace(`
|
||||||
test_object.A\[0\]
|
test_object.A\[0\]
|
||||||
test_object.A\[0\] \(destroy deposed \w+\)
|
test_object.A\[0\] \(destroy deposed \w+\)
|
||||||
test_object.A\[0\]
|
|
||||||
test_object.B\[0\]
|
test_object.B\[0\]
|
||||||
test_object.B\[1\]
|
test_object.B\[1\]
|
||||||
test_object.A\[1\]
|
test_object.A\[1\]
|
||||||
test_object.A\[1\] \(destroy deposed \w+\)
|
test_object.A\[1\] \(destroy deposed \w+\)
|
||||||
test_object.A\[1\]
|
|
||||||
test_object.B\[0\]
|
test_object.B\[0\]
|
||||||
test_object.B\[1\]
|
test_object.B\[1\]
|
||||||
test_object.B\[0\]
|
test_object.B\[0\]
|
||||||
|
|
Loading…
Reference in New Issue