dongzaizai2015 2018-09-04 14:42
浏览 29
已采纳

Golang中的编组/解组时间对象意外失败

Unmarshalling a marshalled time object is failing, because of a few characters

Test

declare the following:

// values
now := time.Now()
timeToJSON, _ := json.Marshal(now)
var obj time.Time
json.Unmarshal(timeToJSON, &obj)

then do the following test logic:

if !assert.Equal(t,
    now.String(),
    obj.String()) {
    t.FailNow()
}

Expected

the test to pass, and the two objects to be equal

Actual

It fails:

--- FAIL: TestFromJSON (0.00s)
    D:\dev2017\GO\src\ezsoft\apiserver_sdk\model\delete\deleteModel_test.go:94: 
            Error Trace:    deleteModel_test.go:94
            Error:          Not equal: 
                            expected: "2018-09-04 10:36:18.3627338 -0400 EDT m=+0.014000801"
                            actual  : "2018-09-04 10:36:18.3627338 -0400 EDT"

                            Diff:
                            --- Expected
                            +++ Actual
                            @@ -1 +1 @@
                            -2018-09-04 10:36:18.3627338 -0400 EDT m=+0.014000801
                            +2018-09-04 10:36:18.3627338 -0400 EDT
            Test:           TestFromJSON
FAIL
FAIL    ezsoft/apiserver_sdk/model/delete   1.336s
Error: Tests failed.

NOTE

I notice that, upon inspecting the output, that, somehow, some m=+[blah] is being appended to expected/actual.

I don't know why, however, and skimming RFC 3339 doesn't give me any hints why.

  • 写回答

2条回答 默认 最新

  • douchun1900 2018-09-04 14:47
    关注

    Per the documentation, the m value is the monotonic clock value, which can be removed using Truncate for comparisons not for the purpose of timing. The m field does not match because it is omitted from JSON, it is only generated by time.Now().

    Try like so:

    // values
    now := time.Now().Truncate(0)  // Truncate to remove monotonic clock portion
    timeToJSON, _ := json.Marshal(now)
    var obj time.Time
    json.Unmarshal(timeToJSON, &obj)
    

    The monotonic clock offset was added in order to allow for accurate timing of durations which span a wall clock change (e.g. NTP update, DST change, or leap second/smear).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀