I'm writing unit test and my goal is to unmarshall data from json to one struct and compare it to the other, mock struct. I'm using reflect.DeepEqual() method but it's returning false on these.
My guess is that it is somehow related to type casting going on in the background, where map[string]interface{} is converted to map[string]int, but that's as far as I got.
type MyStruct struct {
Cache map[string]interface{} `json:"cache"`
}
var js = `{"cache":{"productsCount":28}}`
func main() {
var s1, s2 MyStruct
s1 = MyStruct{
Cache: map[string]interface{} {
"productsCount": 28,
},
}
s2 = MyStruct{}
err := json.Unmarshal([]byte(js), &s2)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Printf("%#v
", s1)
fmt.Printf("%#v
", s2)
fmt.Println(reflect.DeepEqual(s1, s2))
}
The output looks like this:
main.MyStruct{Cache:map[string]interface {}{"productsCount":28}}
main.MyStruct{Cache:map[string]interface {}{"productsCount":28}}
false