mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Signed-off-by: Hefeweizen <jmales@gmail.com> Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Signed-off-by: Syasusu <syasusu@163.com> Co-authored-by: Hefeweizen <jmales@gmail.com> Co-authored-by: Syasusu <syasusu@163.com>
322 lines
8.5 KiB
Go
322 lines
8.5 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package tfdiags
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/hashicorp/hcl/v2"
|
|
)
|
|
|
|
func TestConsolidateWarnings(t *testing.T) {
|
|
var diags Diagnostics
|
|
|
|
for i := 0; i < 4; i++ {
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagWarning,
|
|
Summary: "Warning 1",
|
|
Detail: fmt.Sprintf("This one has a subject %d", i),
|
|
Subject: &hcl.Range{
|
|
Filename: "foo.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
})
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagError,
|
|
Summary: "Error 1",
|
|
Detail: fmt.Sprintf("This one has a subject %d", i),
|
|
Subject: &hcl.Range{
|
|
Filename: "foo.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
})
|
|
diags = diags.Append(Sourceless(
|
|
Warning,
|
|
"Warning 2",
|
|
fmt.Sprintf("This one is sourceless %d", i),
|
|
))
|
|
diags = diags.Append(SimpleWarning("Warning 3"))
|
|
}
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagWarning,
|
|
Summary: "Warning 4",
|
|
Detail: "Only one of this one",
|
|
Subject: &hcl.Range{
|
|
Filename: "foo.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
})
|
|
|
|
// Finally, we'll just add a set of diags that should not be consolidated.
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagWarning,
|
|
Summary: "do not consolidate",
|
|
Detail: "warning 1, I should not have been consolidated",
|
|
Subject: &hcl.Range{
|
|
Filename: "bar.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
Extra: doNotConsolidate(true),
|
|
})
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagWarning,
|
|
Summary: "do not consolidate",
|
|
Detail: "warning 2, I should not have been consolidated",
|
|
Subject: &hcl.Range{
|
|
Filename: "bar.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
Extra: doNotConsolidate(true),
|
|
})
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
Severity: hcl.DiagWarning,
|
|
Summary: "do not consolidate",
|
|
Detail: "warning 3, I should not have been consolidated",
|
|
Subject: &hcl.Range{
|
|
Filename: "bar.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
Extra: doNotConsolidate(true),
|
|
})
|
|
|
|
// We're using ForRPC here to force the diagnostics to be of a consistent
|
|
// type that we can easily assert against below.
|
|
got := diags.Consolidate(2, Warning).ForRPC()
|
|
want := Diagnostics{
|
|
// First set
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 1",
|
|
Detail_: "This one has a subject 0",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 1",
|
|
Detail_: "This one has a subject 0",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 2",
|
|
Detail_: "This one is sourceless 0",
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 3",
|
|
},
|
|
|
|
// Second set (consolidation begins; note additional paragraph in Warning 1 detail)
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 1",
|
|
Detail_: "This one has a subject 1\n\n(and 2 more similar warnings elsewhere)",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 1",
|
|
Detail_: "This one has a subject 1",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 2",
|
|
Detail_: "This one is sourceless 1",
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 3",
|
|
},
|
|
|
|
// Third set (no more Warning 1, because it's consolidated)
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 1",
|
|
Detail_: "This one has a subject 2",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 2",
|
|
Detail_: "This one is sourceless 2",
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 3",
|
|
},
|
|
|
|
// Fourth set (still no warning 1)
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 1",
|
|
Detail_: "This one has a subject 3",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 2",
|
|
Detail_: "This one is sourceless 3",
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 3",
|
|
},
|
|
|
|
// Special straggler warning gets to show up unconsolidated, because
|
|
// there is only one of it.
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "Warning 4",
|
|
Detail_: "Only one of this one",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
|
|
// The final set of warnings should not have been consolidated because
|
|
// of our filter function.
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "do not consolidate",
|
|
Detail_: "warning 1, I should not have been consolidated",
|
|
Subject_: &SourceRange{
|
|
Filename: "bar.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "do not consolidate",
|
|
Detail_: "warning 2, I should not have been consolidated",
|
|
Subject_: &SourceRange{
|
|
Filename: "bar.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Warning,
|
|
Summary_: "do not consolidate",
|
|
Detail_: "warning 3, I should not have been consolidated",
|
|
Subject_: &SourceRange{
|
|
Filename: "bar.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
}
|
|
|
|
if diff := cmp.Diff(want, got); diff != "" {
|
|
t.Errorf("wrong result\n%s", diff)
|
|
}
|
|
}
|
|
|
|
type doNotConsolidate bool
|
|
|
|
var _ DiagnosticExtraDoNotConsolidate = doNotConsolidate(true)
|
|
|
|
func (d doNotConsolidate) DoNotConsolidateDiagnostic() bool {
|
|
return bool(d)
|
|
}
|
|
|
|
func TestConsolidateError(t *testing.T) {
|
|
var diags Diagnostics
|
|
|
|
// create a multiplicity of errors
|
|
for i := 0; i < 5; i++ {
|
|
diags = diags.Append(
|
|
&hcl.Diagnostic{
|
|
Severity: hcl.DiagError,
|
|
Summary: "Error 1",
|
|
Detail: "Error diag have duplicated subjects",
|
|
Subject: &hcl.Range{
|
|
Filename: "foo.tf",
|
|
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&hcl.Diagnostic{
|
|
Severity: hcl.DiagError,
|
|
Summary: "Error 2",
|
|
Detail: "Error diag have different subjects",
|
|
Subject: &hcl.Range{
|
|
Filename: "foo.tf",
|
|
Start: hcl.Pos{Line: i + 1, Column: 1, Byte: 0},
|
|
End: hcl.Pos{Line: i + 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
)
|
|
}
|
|
|
|
got := diags.Consolidate(1, Error).ForRPC()
|
|
want := Diagnostics{
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 1",
|
|
Detail_: "Error diag have duplicated subjects\n\n(and 4 more similar errors elsewhere)",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
&rpcFriendlyDiag{
|
|
Severity_: Error,
|
|
Summary_: "Error 2",
|
|
Detail_: "Error diag have different subjects\n\n(and 4 more similar errors elsewhere)",
|
|
Subject_: &SourceRange{
|
|
Filename: "foo.tf",
|
|
Start: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
End: SourcePos{Line: 1, Column: 1, Byte: 0},
|
|
},
|
|
},
|
|
}
|
|
|
|
if diff := cmp.Diff(want, got); diff != "" {
|
|
t.Errorf("wrong result\n%s", diff)
|
|
}
|
|
}
|