mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package jsonlog // import "github.com/docker/docker/daemon/logger/jsonfilelog/jsonlog"
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestFastTimeMarshalJSONWithInvalidYear(t *testing.T) {
|
|
aTime := time.Date(-1, 1, 1, 0, 0, 0, 0, time.Local)
|
|
_, err := fastTimeMarshalJSON(aTime)
|
|
assert.Check(t, is.ErrorContains(err, "year outside of range"))
|
|
|
|
anotherTime := time.Date(10000, 1, 1, 0, 0, 0, 0, time.Local)
|
|
_, err = fastTimeMarshalJSON(anotherTime)
|
|
assert.Check(t, is.ErrorContains(err, "year outside of range"))
|
|
}
|
|
|
|
func TestFastTimeMarshalJSON(t *testing.T) {
|
|
aTime := time.Date(2015, 5, 29, 11, 1, 2, 3, time.UTC)
|
|
json, err := fastTimeMarshalJSON(aTime)
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal("\"2015-05-29T11:01:02.000000003Z\"", json))
|
|
|
|
location, err := time.LoadLocation("Europe/Paris")
|
|
assert.NilError(t, err)
|
|
|
|
aTime = time.Date(2015, 5, 29, 11, 1, 2, 3, location)
|
|
json, err = fastTimeMarshalJSON(aTime)
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal("\"2015-05-29T11:01:02.000000003+02:00\"", json))
|
|
}
|