-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtype_timestamp_nanoseconds_test.go
304 lines (283 loc) · 6.56 KB
/
type_timestamp_nanoseconds_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
package generic
import (
"encoding/json"
"reflect"
"strconv"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestMarshalTimestampNano(t *testing.T) {
v := time.Now()
expected := v.UnixNano()
ts, err := MarshalTimestampNano(v)
if err != nil {
t.Errorf("Not Expected error. error:%s", err.Error())
}
if ts.Weak() != expected {
t.Errorf("actual:%[1]v(%[1]T), expected:%[2]v(%[2]T)", ts.Weak(), expected)
}
}
func TestMustTimestampNano(t *testing.T) {
v := time.Now()
tests := []struct {
name string
args interface{}
want TimestampNano
wantPanic bool
}{
{
name: "valid",
args: v,
want: TimestampNano{
ValidFlag: true,
time: v,
},
wantPanic: false,
},
{
name: "panic",
args: "valid paramenter",
want: TimestampNano{
ValidFlag: false,
},
wantPanic: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.wantPanic {
p := assert.Panics(t, func() {
MustTimestampNano(tt.args)
})
if !p {
t.Errorf("MustTimestampNano() panic = %v, want panic %v", p, tt.wantPanic)
}
return
}
if got := MustTimestampNano(tt.args); got.Weak() != v.UnixNano() {
t.Errorf("MustTimestampNano() = %v, want %v", got, tt.want)
}
})
}
}
func TestTimestampNanoJsonMarshal(t *testing.T) {
v := time.Now()
tn := TimestampNano{
ValidFlag: true,
time: v,
}
expected := strconv.FormatInt(v.UnixNano(), 10)
actual, err := json.Marshal(tn)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
if string(actual) != expected {
t.Errorf("actual:%s, expected:%s", string(actual), expected)
}
}
func TestTimestampNanoJsonMarshalValidFalse(t *testing.T) {
tn := TimestampNano{
ValidFlag: false,
time: time.Now(),
}
expected := []byte("null")
actual, err := json.Marshal(tn)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
if string(actual) != string(expected) {
t.Errorf("actual:%v, expected:%v", actual, expected)
}
}
func TestTimestampNanoJsonUnmarshal(t *testing.T) {
v := time.Now()
in, _ := v.MarshalJSON()
tn := TimestampNano{}
if err := tn.UnmarshalJSON(in); err != nil {
t.Errorf("Not Expected error when json.Unmarshal. error:%v", err.Error())
}
if !tn.Valid() {
t.Error("ValidFlag should be TRUE")
}
if tn.Int64() != v.UnixNano() {
t.Errorf("actual:%d, expected:%d", tn.Int64(), v.UnixNano())
}
}
func TestTimestampNanoJsonUnmarshalNil(t *testing.T) {
tn := TimestampNano{}
if err := tn.UnmarshalJSON(nil); err != nil {
t.Errorf("Not Expected error when json.Unmarshal. error:%v", err.Error())
}
if tn.Valid() {
t.Error("ValidFlag should be FALSE")
}
if tn.Int64() != 0 {
t.Errorf("actual:%d, expected:%d", tn.Int64(), 0)
}
}
func TestTimestampNanoJsonUnmarshalInvalid(t *testing.T) {
tn := TimestampNano{}
if err := tn.UnmarshalJSON([]byte(`"a`)); err == nil {
t.Errorf("Expected error when json.Unmarshal, but not; %#v", tn)
}
}
func TestTimestampNanoSetNil(t *testing.T) {
tn := TimestampNano{}
err := tn.Set(nil)
if err != nil {
t.Errorf("Not Expected error. error:%s", err.Error())
}
actual, err := tn.Value()
if err != nil {
t.Errorf("This value should return nil. error:%s", err.Error())
}
if actual != nil {
t.Errorf("actual:%d, expected:nil", actual)
}
}
func TestTimestampNanoSetTime(t *testing.T) {
v := time.Now()
expected := v
tn := TimestampNano{}
err := tn.Set(v)
if err != nil {
t.Errorf("Not Expected error. error:%s", err.Error())
}
if tn.Weak() != expected.UnixNano() {
t.Errorf("actual:%v, expected:%v", tn.Weak(), expected)
}
}
func TestTimestampNanoSetInt64(t *testing.T) {
var v int64 = 1367059792
expected := time.Unix(0, v)
tn := TimestampNano{}
err := tn.Set(v)
if err != nil {
t.Errorf("Not Expected error. error:%s", err.Error())
}
if actual := tn.Weak(); actual != expected.UnixNano() {
t.Errorf("actual:%v, expected:%v", actual, expected.UnixNano())
}
}
func TestTimestampNanoSetNumericString(t *testing.T) {
v := "1467059792"
tn := TimestampNano{}
err := tn.Set(v)
if err == nil {
t.Errorf("Expected error.")
}
if tn.Weak() != nil {
t.Errorf("This value should return nil. value:%#v", tn.Weak())
}
}
func TestTimestampNanoSetNonNumericString(t *testing.T) {
v := "a"
tn := TimestampNano{}
err := tn.Set(v)
if err == nil {
t.Error("Expected error.")
}
if tn.Weak() != nil {
t.Errorf("This value should return nil. value:%#v", tn.Weak())
}
}
func TestTimestampNanoSetBool(t *testing.T) {
v := true
tn := TimestampNano{}
err := tn.Set(v)
if err == nil {
t.Error("Expected error.")
}
if tn.Weak() != nil {
t.Errorf("This value should return nil. value:%#v", tn.Weak())
}
}
func TestTimestampNanoInt64(t *testing.T) {
v := time.Now()
expected := v.UnixNano()
tm := TimestampNano{}
err := tm.Set(v)
if err != nil {
t.Error("Not expected error.")
}
if tm.Int64() != expected {
t.Errorf("This value should return %d. value:%d", expected, tm.Int())
}
}
func TestTimestampNanoInt64Zero(t *testing.T) {
v := time.Unix(0, 0)
var expected int64
tm := TimestampNano{}
err := tm.Set(v)
if err != nil {
t.Error("Not expected error.")
}
if tm.Int64() != expected {
t.Errorf("This value should return %d. value:%d", expected, tm.Int())
}
}
func TestTimestampNanoInt(t *testing.T) {
v := time.Now()
expected := int(v.UnixNano())
tm := TimestampNano{}
err := tm.Set(v)
if err != nil {
t.Error("Not expected error.")
}
if tm.Int() != expected {
t.Errorf("This value should return %d. value:%d", expected, tm.Int())
}
}
func TestTimestampNanoString(t *testing.T) {
v := time.Now()
expected := strconv.FormatInt(v.UnixNano(), 10)
tm := TimestampNano{}
err := tm.Set(v)
if err != nil {
t.Error("Not expected error.")
}
if tm.String() != expected {
t.Errorf("This value should return %s. value:%s", expected, tm.String())
}
}
func TestTimestampNano_Time(t *testing.T) {
now := time.Now()
type fields struct {
ValidFlag ValidFlag
time time.Time
}
tests := []struct {
name string
fields fields
want time.Time
}{
{
name: "now",
fields: fields{
ValidFlag: true,
time: now,
},
want: now,
},
{
name: "invalid",
fields: fields{
ValidFlag: false,
time: now,
},
want: time.Unix(0, 0),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
v := TimestampNano{
ValidFlag: tt.fields.ValidFlag,
time: tt.fields.time,
}
if got := v.Time(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("TimestampNano.Time() = %v, want %v", got, tt.want)
}
})
}
}