比较 Go 中的结构

Comparing structs in Go

我有一个测试比较两个指向结构实例的指针的相等性 (MyStruct)。指针存储在其他结构中(container1container2)。下面是我检查相等性的方法:

require.Equal(*container1.MyStruct, *container2.MyStruct)

Equals() 方法来自 Testify 库:https://github.com/stretchr/testify/blob/master/require/require_forward.go#L128

当我 运行 在我的 Mac 上测试时,这个测试通过了。但是,当我将更改推送到构建服务器 (Linux) 时,测试失败了。错误消息是标准的 Error: Not equal... 消息,但是当我比较输出中显示的预期和实际时,它们完全相同!

我认为 Go 可能会以某种方式比较指针的地址而不是内容,但是 require.Equal 上的评论使这看起来不太可能:

// Pointer variable equality is determined based on the equality of the referenced values (as opposed to the memory addresses)

知道这里发生了什么吗? Go 在 Mac 和 Linux 上的表现是否不同?

我无法在此处 post 说明具体情况,因为这是我在工作中接触到的代码库中遇到的一个问题。

问题是当结构包含 Time 对象时,Equal 函数的“预期...实际...”打印逻辑输出中存在错误。这是错误输出的片段:(我删除了结构的不相关字段):

        Error Trace:    my_test.go:388
                                    my_test.go:50
        Error:          Not equal:
                        expected: {
                          BuildStartDateUtc: 2020-08-17 22:43:05.330062876 +0000 UTC,
                          

                        actual  : {
                          BuildStartDateUtc: 2020-08-17 22:43:05.330062876 +0000 UTC,                            
                        }
                         

字段看起来一样。但是,如果我直接比较 MyStruct.BuildStartDateUtc,我会得到:

expected: &time.Time{wall:0x389ccfe6, ext:63733398658, loc:(*time.Location)(0x101d4e0)}
actual : &time.Time{wall:0x389ccfe6, ext:63733398658, loc:(*time.Location)(nil)}

实际中缺少“loc”字段。这就是导致比较失败的原因,但是当我们比较包含 Time 的结构时,“loc”显然不包含在输出中,我们得到一个非常令人困惑的“预期...实际...” actual/expected 看起来完全相等但不相等的输出。

当我同步被比较的 TimeLocation 时,测试通过了。

看起来可能与这个 Testify 问题有关:https://github.com/stretchr/testify/issues/984