Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

terraform show -json: Add Errored field to output for plan #33372

Merged
merged 2 commits into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions internal/command/jsonplan/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ type plan struct {
RelevantAttributes []ResourceAttr `json:"relevant_attributes,omitempty"`
Checks json.RawMessage `json:"checks,omitempty"`
Timestamp string `json:"timestamp,omitempty"`
Errored bool `json:"errored"`
}

func newPlan() *plan {
Expand Down Expand Up @@ -221,6 +222,7 @@ func Marshal(
output := newPlan()
output.TerraformVersion = version.String()
output.Timestamp = p.Timestamp.Format(time.RFC3339)
output.Errored = p.Errored

err := output.marshalPlanVariables(p.VariableValues, config.Module.Variables)
if err != nil {
Expand Down
75 changes: 61 additions & 14 deletions internal/command/show_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,43 @@ func TestShow_planWithForceReplaceChange(t *testing.T) {
if !strings.Contains(got, want) {
t.Fatalf("unexpected output\ngot: %s\nwant: %s", got, want)
}
}

func TestShow_planErrored(t *testing.T) {
_, snap := testModuleWithSnapshot(t, "show")
plan := testPlan(t)
plan.Errored = true
planFilePath := testPlanFile(
t,
snap,
states.NewState(),
plan,
)

view, done := testView(t)
c := &ShowCommand{
Meta: Meta{
testingOverrides: metaOverridesForProvider(showFixtureProvider()),
View: view,
},
}

args := []string{
planFilePath,
"-no-color",
}
code := c.Run(args)
output := done(t)

if code != 0 {
t.Fatalf("unexpected exit status %d; want 0\ngot: %s", code, output.Stderr())
}

got := output.Stdout()
want := `Planning failed. Terraform encountered an error while generating this plan.`
if !strings.Contains(got, want) {
t.Fatalf("unexpected output\ngot: %s\nwant: %s", got, want)
}
}

func TestShow_plan_json(t *testing.T) {
Expand Down Expand Up @@ -525,6 +561,20 @@ func TestShow_json_output(t *testing.T) {
t.Fatalf("init failed\n%s", ui.ErrorWriter)
}

// read expected output
wantFile, err := os.Open("output.json")
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
defer wantFile.Close()
byteValue, err := ioutil.ReadAll(wantFile)
if err != nil {
t.Fatalf("unexpected err: %s", err)
}

var want plan
json.Unmarshal([]byte(byteValue), &want)

// plan
planView, planDone := testView(t)
pc := &PlanCommand{
Expand All @@ -542,8 +592,15 @@ func TestShow_json_output(t *testing.T) {
code := pc.Run(args)
planOutput := planDone(t)

if code != 0 {
t.Fatalf("unexpected exit status %d; want 0\ngot: %s", code, planOutput.Stderr())
var wantedCode int
if want.Errored {
wantedCode = 1
} else {
wantedCode = 0
}

if code != wantedCode {
t.Fatalf("unexpected exit status %d; want %d\ngot: %s", code, wantedCode, planOutput.Stderr())
}

// show
Expand All @@ -569,22 +626,11 @@ func TestShow_json_output(t *testing.T) {
}

// compare view output to wanted output
var got, want plan
var got plan

gotString := showOutput.Stdout()
json.Unmarshal([]byte(gotString), &got)

wantFile, err := os.Open("output.json")
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
defer wantFile.Close()
byteValue, err := ioutil.ReadAll(wantFile)
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
json.Unmarshal([]byte(byteValue), &want)

// Disregard format version to reduce needless test fixture churn
want.FormatVersion = got.FormatVersion

Expand Down Expand Up @@ -1150,6 +1196,7 @@ type plan struct {
OutputChanges map[string]interface{} `json:"output_changes,omitempty"`
PriorState priorState `json:"prior_state,omitempty"`
Config map[string]interface{} `json:"configuration,omitempty"`
Errored bool `json:"errored"`
}

type priorState struct {
Expand Down
15 changes: 15 additions & 0 deletions internal/command/testdata/show-json/plan-error/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
locals {
ami = "bar"
}

resource "test_instance" "test" {
ami = local.ami

lifecycle {
precondition {
// failing condition
condition = local.ami != "bar"
error_message = "ami is bar"
}
}
}
35 changes: 35 additions & 0 deletions internal/command/testdata/show-json/plan-error/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"format_version": "1.2",
"planned_values": {
"root_module": {}
},
"prior_state": {},
"configuration": {
"provider_config": {
"test": {
"full_name": "registry.terraform.io/hashicorp/test",
"name": "test"
}
},
"root_module": {
"resources": [
{
"address": "test_instance.test",
"expressions": {
"ami": {
"references": [
"local.ami"
]
}
},
"mode": "managed",
"name": "test",
"provider_config_key": "test",
"schema_version": 0,
"type": "test_instance"
}
]
}
},
"errored": true
}
6 changes: 5 additions & 1 deletion website/docs/internals/json-format.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@ For ease of consumption by callers, the plan representation includes a partial r
// resources with postconditions, with as much information as Terraform can
// recognize at plan time. Some objects will have status "unknown" to
// indicate that their status will only be determined after applying the plan.
"checks" <checks-representation>
"checks" <checks-representation>,

// "errored" indicates whether planning failed. An errored plan cannot be applied,
// but the actions planned before failure may help to understand the error.
"errored": false
}
```

Expand Down