Skip to content

Commit

Permalink
helper/resource: verify refresh+plan after each step
Browse files Browse the repository at this point in the history
I forgot to add `Computed: true` when I made the "key_name" field
optional in #1751.

This made the behavior:

 * Name generated in Create and set as ID
 * Follow up plan (without refresh)
 * Name got cleared out on Read, causing a bad diff.

We can automatically catch bugs like this if we add yet another
verification step to our resource acceptance tests -> a post
Refresh+Plan that we verify is empty.

I left the non-refresh Plan verification in, because it's important that
_both_ of these are empty after an Apply.
  • Loading branch information
phinze committed Apr 30, 2015
1 parent 89b50f7 commit b94782f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion helper/resource/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ func testStep(
}
}

// Verify that Plan is now empty and we don't have a perpetual diff issue
// Now, verify that Plan is now empty and we don't have a perpetual diff issue
// We do this with TWO plans. One without a refresh.
if p, err := ctx.Plan(); err != nil {
return state, fmt.Errorf("Error on follow-up plan: %s", err)
} else {
Expand All @@ -250,6 +251,21 @@ func testStep(
}
}

// And another after a Refresh.
state, err = ctx.Refresh()
if err != nil {
return state, fmt.Errorf(
"Error on follow-up refresh: %s", err)
}
if p, err := ctx.Plan(); err != nil {
return state, fmt.Errorf("Error on second follow-up plan: %s", err)
} else {
if p.Diff != nil && !p.Diff.Empty() {
return state, fmt.Errorf(
"After applying this step and refreshing, the plan was not empty:\n\n%s", p)
}
}

return state, err
}

Expand Down

0 comments on commit b94782f

Please sign in to comment.