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

Fix issue #710 #711

Merged
merged 4 commits into from
Oct 12, 2021
Merged
Show file tree
Hide file tree
Changes from 3 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
10 changes: 2 additions & 8 deletions helper/schema/resource_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"sync"
"time"

"github.com/google/go-cmp/cmp"
"github.com/hashicorp/go-cty/cty"
"github.com/hashicorp/go-cty/cty/gocty"
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
Expand Down Expand Up @@ -155,14 +156,7 @@ func (d *ResourceData) HasChangesExcept(keys ...string) bool {
func (d *ResourceData) HasChange(key string) bool {
o, n := d.GetChange(key)

// If the type implements the Equal interface, then call that
// instead of just doing a reflect.DeepEqual. An example where this is
// needed is *Set
if eq, ok := o.(Equal); ok {
return !eq.Equal(n)
}

return !reflect.DeepEqual(o, n)
return !cmp.Equal(n, o)
}

// HasChangeExcept returns whether any keys outside the given key have been changed.
Expand Down
36 changes: 36 additions & 0 deletions helper/schema/resource_data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2075,6 +2075,42 @@ func TestResourceDataHasChange(t *testing.T) {

Change: false,
},

{
Schema: map[string]*Schema{
"network_configuration": {
Type: TypeList,
MaxItems: 1,
Elem: &Resource{
Schema: map[string]*Schema{
"security_groups": {
Type: TypeSet,
Optional: true,
Elem: &Schema{Type: TypeString},
Set: HashString,
},
},
},
},
},

State: &terraform.InstanceState{
Attributes: map[string]string{
"network_configuration.#": "1",
"network_configuration.0.security_groups.#": "2",
"network_configuration.0.security_groups.sg1": "sg1",
"network_configuration.0.security_groups.sg2": "sg2",
bflad marked this conversation as resolved.
Show resolved Hide resolved
},
},

Diff: &terraform.InstanceDiff{
Attributes: map[string]*terraform.ResourceAttrDiff{},
},

Key: "network_configuration",

Change: false,
},
}
bflad marked this conversation as resolved.
Show resolved Hide resolved

for i, tc := range cases {
Expand Down
37 changes: 2 additions & 35 deletions helper/schema/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package schema
import (
"bytes"
"fmt"
"github.com/google/go-cmp/cmp"
"reflect"
"sort"
"strconv"
Expand Down Expand Up @@ -150,46 +151,12 @@ func (s *Set) Union(other *Set) *Set {
return result
}

func checkSetMapEqual(m1, m2 map[string]interface{}) bool {
if (m1 == nil) != (m2 == nil) {
return false
}
if len(m1) != len(m2) {
return false
}
for k := range m1 {
v1 := m1[k]
v2, ok := m2[k]
if !ok {
return false
}
switch v1.(type) {
case map[string]interface{}:
same := checkSetMapEqual(v1.(map[string]interface{}), v2.(map[string]interface{}))
if !same {
return false
}
case *Set:
same := v1.(*Set).Equal(v2)
if !same {
return false
}
default:
same := reflect.DeepEqual(v1, v2)
if !same {
return false
}
}
}
return true
}

func (s *Set) Equal(raw interface{}) bool {
other, ok := raw.(*Set)
if !ok {
return false
}
return checkSetMapEqual(s.m, other.m)
return cmp.Equal(s.m, other.m)
}

// HashEqual simply checks to the keys the top-level map to the keys in the
Expand Down