Merge pull request #11321 from hashicorp/jbardin/flatmap-MergeDiff
Fix the removal of empty containers from a flatmap
This commit is contained in:
commit
f0d59af8bb
|
@ -1668,18 +1668,25 @@ func (s *InstanceState) MergeDiff(d *InstanceDiff) *InstanceState {
|
||||||
// Remove any now empty array, maps or sets because a parent structure
|
// Remove any now empty array, maps or sets because a parent structure
|
||||||
// won't include these entries in the count value.
|
// won't include these entries in the count value.
|
||||||
isCount := regexp.MustCompile(`\.[%#]$`).MatchString
|
isCount := regexp.MustCompile(`\.[%#]$`).MatchString
|
||||||
|
var deleted []string
|
||||||
|
|
||||||
for k, v := range result.Attributes {
|
for k, v := range result.Attributes {
|
||||||
if isCount(k) && v == "0" {
|
if isCount(k) && v == "0" {
|
||||||
delete(result.Attributes, k)
|
delete(result.Attributes, k)
|
||||||
|
deleted = append(deleted, k)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Sanity check for invalid structures.
|
for _, k := range deleted {
|
||||||
// If we removed the primary count key, there should have been no
|
// Sanity check for invalid structures.
|
||||||
// other keys left with this prefix.
|
// If we removed the primary count key, there should have been no
|
||||||
base := k[:len(k)-2]
|
// other keys left with this prefix.
|
||||||
for k, _ := range result.Attributes {
|
|
||||||
if strings.HasPrefix(k, base) {
|
// this must have a "#" or "%" which we need to remove
|
||||||
panic(fmt.Sprintf("empty structure %q has entry %q", base, k))
|
base := k[:len(k)-1]
|
||||||
}
|
for k, _ := range result.Attributes {
|
||||||
|
if strings.HasPrefix(k, base) {
|
||||||
|
panic(fmt.Sprintf("empty structure %q has entry %q", base, k))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1404,6 +1404,15 @@ func TestInstanceState_MergeDiffRemoveCounts(t *testing.T) {
|
||||||
"all.1234.0": "a",
|
"all.1234.0": "a",
|
||||||
"all.5678.%": "1",
|
"all.5678.%": "1",
|
||||||
"all.5678.key": "val",
|
"all.5678.key": "val",
|
||||||
|
|
||||||
|
// nested empty lists need to be removed cleanly
|
||||||
|
"all.nested.#": "0",
|
||||||
|
"all.nested.0.empty.#": "0",
|
||||||
|
"all.nested.1.empty.#": "0",
|
||||||
|
|
||||||
|
// the value has a prefix that matches another key
|
||||||
|
// and ntohing should happen to this.
|
||||||
|
"all.nested_value": "y",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1433,8 +1442,9 @@ func TestInstanceState_MergeDiffRemoveCounts(t *testing.T) {
|
||||||
is2 := is.MergeDiff(diff)
|
is2 := is.MergeDiff(diff)
|
||||||
|
|
||||||
expected := map[string]string{
|
expected := map[string]string{
|
||||||
"all.#": "1",
|
"all.#": "1",
|
||||||
"all.1111": "x",
|
"all.1111": "x",
|
||||||
|
"all.nested_value": "y",
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(expected, is2.Attributes) {
|
if !reflect.DeepEqual(expected, is2.Attributes) {
|
||||||
|
|
Loading…
Reference in New Issue