goext/rfctime/rfc3339Nano_test.go

49 lines
829 B
Go
Raw Normal View History

2023-01-29 20:42:02 +01:00
package rfctime
import (
"encoding/json"
2023-08-14 18:39:22 +02:00
"gogs.mikescher.com/BlackForestBytes/goext/timeext"
2023-03-31 13:33:06 +02:00
"gogs.mikescher.com/BlackForestBytes/goext/tst"
2023-01-29 20:42:02 +01:00
"testing"
"time"
)
func TestRoundtrip(t *testing.T) {
type Wrap struct {
Value RFC3339NanoTime `json:"v"`
}
2023-08-14 18:39:22 +02:00
val1 := NewRFC3339Nano(time.Unix(0, 1675951556820915171).In(timeext.TimezoneBerlin))
2023-01-29 20:42:02 +01:00
w1 := Wrap{val1}
jstr1, err := json.Marshal(w1)
if err != nil {
panic(err)
}
2023-02-09 15:06:37 +01:00
if string(jstr1) != "{\"v\":\"2023-02-09T15:05:56.820915171+01:00\"}" {
t.Errorf(string(jstr1))
2023-01-29 20:42:02 +01:00
t.Errorf("repr differs")
}
w2 := Wrap{}
err = json.Unmarshal(jstr1, &w2)
if err != nil {
panic(err)
}
jstr2, err := json.Marshal(w2)
if err != nil {
panic(err)
}
2023-03-31 13:33:06 +02:00
tst.AssertEqual(t, string(jstr1), string(jstr2))
2023-01-29 20:42:02 +01:00
if !w1.Value.Equal(&w2.Value) {
t.Errorf("time differs")
}
}