- Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathtypes_test.go
126 lines (104 loc) · 3.95 KB
/
types_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package jwt_test
import (
"encoding/json"
"math"
"testing"
"time"
"github.com/golang-jwt/jwt/v5"
)
funcTestNumericDate(t*testing.T) {
varsstruct {
Iat jwt.NumericDate`json:"iat"`
Exp jwt.NumericDate`json:"exp"`
}
oldPrecision:=jwt.TimePrecision
jwt.TimePrecision=time.Microsecond
raw:=`{"iat":1516239022.000000,"exp":1516239022.123450}`
iferr:=json.Unmarshal([]byte(raw), &s); err!=nil {
t.Fatalf("Unexpected error: %s", err)
}
b, _:=json.Marshal(s)
ifraw!=string(b) {
t.Errorf("Serialized format of numeric date mismatch. Expecting: %s Got: %s", raw, string(b))
}
jwt.TimePrecision=oldPrecision
}
funcTestSingleArrayMarshal(t*testing.T) {
jwt.MarshalSingleStringAsArray=false
s:= jwt.ClaimStrings{"test"}
expected:=`"test"`
b, err:=json.Marshal(s)
iferr!=nil {
t.Errorf("Unexpected error: %s", err)
}
ifexpected!=string(b) {
t.Errorf("Serialized format of string array mismatch. Expecting: %s Got: %s", expected, string(b))
}
jwt.MarshalSingleStringAsArray=true
expected=`["test"]`
b, err=json.Marshal(s)
iferr!=nil {
t.Errorf("Unexpected error: %s", err)
}
ifexpected!=string(b) {
t.Errorf("Serialized format of string array mismatch. Expecting: %s Got: %s", expected, string(b))
}
}
funcTestNumericDate_MarshalJSON(t*testing.T) {
// Do not run this test in parallel because it's changing
// global state.
oldPrecision:=jwt.TimePrecision
t.Cleanup(func() {
jwt.TimePrecision=oldPrecision
})
tt:= []struct {
in time.Time
wantstring
precision time.Duration
}{
{time.Unix(5243700879, 0), "5243700879", time.Second},
{time.Unix(5243700879, 0), "5243700879.000", time.Millisecond},
{time.Unix(5243700879, 0), "5243700879.000000", time.Microsecond},
{time.Unix(5243700879, 0), "5243700879.000000000", time.Nanosecond},
//
{time.Unix(4239425898, 0), "4239425898", time.Second},
{time.Unix(4239425898, 0), "4239425898.000", time.Millisecond},
{time.Unix(4239425898, 0), "4239425898.000000", time.Microsecond},
{time.Unix(4239425898, 0), "4239425898.000000000", time.Nanosecond},
//
{time.Unix(253402271999, 0), "253402271999", time.Second},
{time.Unix(253402271999, 0), "253402271999.000", time.Millisecond},
{time.Unix(253402271999, 0), "253402271999.000000", time.Microsecond},
{time.Unix(253402271999, 0), "253402271999.000000000", time.Nanosecond},
//
{time.Unix(0, 1644285000210402000), "1644285000", time.Second},
{time.Unix(0, 1644285000210402000), "1644285000.210", time.Millisecond},
{time.Unix(0, 1644285000210402000), "1644285000.210402", time.Microsecond},
{time.Unix(0, 1644285000210402000), "1644285000.210402000", time.Nanosecond},
//
{time.Unix(0, 1644285315063096000), "1644285315", time.Second},
{time.Unix(0, 1644285315063096000), "1644285315.063", time.Millisecond},
{time.Unix(0, 1644285315063096000), "1644285315.063096", time.Microsecond},
{time.Unix(0, 1644285315063096000), "1644285315.063096000", time.Nanosecond},
// Maximum time that a go time.Time can represent
{time.Unix(math.MaxInt64, 999999999), "9223372036854775807", time.Second},
{time.Unix(math.MaxInt64, 999999999), "9223372036854775807.999", time.Millisecond},
{time.Unix(math.MaxInt64, 999999999), "9223372036854775807.999999", time.Microsecond},
{time.Unix(math.MaxInt64, 999999999), "9223372036854775807.999999999", time.Nanosecond},
// Strange precisions
{time.Unix(math.MaxInt64, 999999999), "9223372036854775807", time.Second},
{time.Unix(math.MaxInt64, 999999999), "9223372036854775756", time.Minute},
{time.Unix(math.MaxInt64, 999999999), "9223372036854774016", time.Hour},
{time.Unix(math.MaxInt64, 999999999), "9223372036854745216", 24*time.Hour},
}
fori, tc:=rangett {
jwt.TimePrecision=tc.precision
by, err:=jwt.NewNumericDate(tc.in).MarshalJSON()
iferr!=nil {
t.Fatal(err)
}
ifgot:=string(by); got!=tc.want {
t.Errorf("[%d]: failed encoding: got %q want %q", i, got, tc.want)
}
}
}