go-ceph/cephfs/admin/timestamp_test.go
John Mulligan ed23d71ff8 cephfs admin: add TimeStamp type for JSON unmarshaling
The date & time format used by ceph differs from the default used by Go
for time.Time types. Define a new type, embedding time.Time, that can
parse and expressing date+time strings the ceph way.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
2020-09-28 13:16:34 -04:00

45 lines
970 B
Go

// +build !luminous,!mimic
package admin
import (
"encoding/json"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestTimeStampUnmarshal(t *testing.T) {
t.Run("valid", func(t *testing.T) {
j1 := []byte(`"2020-01-03 18:03:21"`)
var ts TimeStamp
err := json.Unmarshal(j1, &ts)
assert.NoError(t, err)
assert.Equal(t, 2020, ts.Year())
assert.Equal(t, time.Month(1), ts.Month())
assert.Equal(t, 3, ts.Day())
})
t.Run("badType", func(t *testing.T) {
j1 := []byte(`["2020-01-03 18:03:21"]`)
var ts TimeStamp
err := json.Unmarshal(j1, &ts)
assert.Error(t, err)
})
t.Run("badValue", func(t *testing.T) {
j1 := []byte(`"just another manic monday"`)
var ts TimeStamp
err := json.Unmarshal(j1, &ts)
assert.Error(t, err)
})
}
func TestTimeStampString(t *testing.T) {
s := "2020-11-06 11:33:56"
ti, err := time.Parse(cephTSLayout, s)
if assert.NoError(t, err) {
ts := TimeStamp{ti}
assert.Equal(t, s, ts.String())
}
}