Commit Graph

23 Commits

Author SHA1 Message Date
James Bardin
0569e39788 don't try to treat "null" as json in diff output
Trying to decode and write "null" as json will panic, since it decodes
to nil.
2019-03-14 17:20:42 -04:00
Martin Atkins
2d41c1009b command/format: Diffs for NestingMap block types
Our initial prototype of new-style diff rendering excluded this because
the old SDK has no support for this construct. However, we want to be able
to introduce this construct in the new SDK without breaking compatibility
with existing versions of Terraform Core, so we need to implement it now
so it's ready to be used once the SDK implements it.

The key associated with each block allows us to properly correlate the
items to recognize the difference between an in-place update of an
existing block and the addition/deletion of a block.
2019-03-11 08:18:26 -07:00
Martin Atkins
69772b11b1 command/format: test for diff rendering with dynamic-typed subattrs
We use cty a little differently when a nested list block contains a
dynamically-typed attribute: it appears as a tuple value instead of a
list value so that we can retain the individual types of each element.

Here we introduce a test for that case, but doing so required also making
the runTestCases function handle types in a stricter way so that it will
produce planned values that match how Terraform Core would do it,
including the necessary late-bound type information for the
dynamically-typed attribute.
2019-03-11 08:18:26 -07:00
Kristin Laemmert
b9d8e96e0c command/plan: plan output should indicate if a resource is being (#20580)
replaced because the instance was tainted.
2019-03-05 16:18:55 -08:00
Radek Simko
b492c3662c Merge pull request #20089 from hashicorp/t-cmd-fmt-sensitive-update
command/format: Add test to cover update of sensitive field
2019-01-23 15:55:53 +00:00
Radek Simko
f04d0b48bc command/format: Add test to cover update of sensitive field 2019-01-23 15:32:13 +00:00
Radek Simko
953eae7e4b command/format: Fix rendering of different types 2019-01-23 13:13:48 +00:00
Radek Simko
0dff8fe5e0 Add failing test case for tuple 2019-01-22 16:49:49 +00:00
Radek Simko
3d0a25c65d command/format: Fix nested (JSON) object formatting 2019-01-22 16:26:28 +00:00
Radek Simko
98cc99e632 command/format: Add crashing test with unknown element in map 2019-01-21 15:04:13 +00:00
Radek Simko
73225c7aeb command/format: Add crashing test with unknown element in list 2019-01-21 15:04:13 +00:00
Radek Simko
e7e8b7358f command/format: Add crashing test with unknown element in set 2019-01-21 15:04:13 +00:00
Radek Simko
13896d72c5 command/format: Render empty object as {} 2019-01-15 14:34:49 +00:00
Radek Simko
5f14b7a7f2 command/format: Render empty primitive list/set as [] 2019-01-15 14:34:49 +00:00
Radek Simko
09d19ca9d9 command/format: Render empty JSON object as {} 2019-01-15 14:34:48 +00:00
Radek Simko
0dd2d56f18 command/format: Render empty maps as {} 2019-01-15 14:34:46 +00:00
Radek Simko
d96f4fa77b command/format: Ignore removal of empty strings 2019-01-13 22:56:04 +00:00
Radek Simko
b28efa0bf3 command/format: Fix tests 2018-12-12 14:28:12 +00:00
Radek Simko
0b981fa641 command/format: Fix rendering of force-new updates 2018-12-12 14:19:17 +00:00
Radek Simko
fe117e9f02 command/format: Fix rendering of nested blocks during update 2018-12-11 18:07:21 +00:00
Radek Simko
2df886397b command/format: Add more tests to cover non-primitive fields 2018-12-11 14:16:25 +00:00
Radek Simko
e3e459a8d4 command/format: Restructure tests 2018-12-11 14:16:17 +00:00
Radek Simko
49e7026bdd command/format: Add tests for ResourceChange renderer 2018-12-10 17:42:45 +00:00