forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
creator_test.go
executable file
·159 lines (133 loc) · 5.58 KB
/
creator_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
package carbon
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCarbon_CreateFromTimestamp(t *testing.T) {
assert := assert.New(t)
tests := []struct {
id int // 测试id
timestamp int64 // 输入参数
expected string // 期望值
}{
{1, -1, "1970-01-01 07:59:59"},
{2, 0, "1970-01-01 08:00:00"},
{2, 1, "1970-01-01 08:00:01"},
{4, 1577855655, "2020-01-01 13:14:15"},
{5, 1604074084682, "2020-10-31 00:08:04"},
{6, 1604074196366540, "2020-10-31 00:09:56"},
{7, 1604074298500312000, "2020-10-31 00:11:38"},
}
for _, test := range tests {
c := SetTimezone(PRC).CreateFromTimestamp(test.timestamp)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
for _, test := range tests {
c := CreateFromTimestamp(test.timestamp, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
}
func TestError_CreateFromTimestamp(t *testing.T) {
timestamp, timezone := int64(1577855655), "xxx"
c1 := SetTimezone(timezone).CreateFromTimestamp(timestamp)
assert.Equal(t, invalidTimezoneError(timezone), c1.Error, "It should catch an exception in CreateFromTimestamp()")
c2 := CreateFromTimestamp(timestamp, timezone)
assert.Equal(t, invalidTimezoneError(timezone), c2.Error, "It should catch an exception in CreateFromTimestamp()")
}
func TestCarbon_CreateFromDateTime(t *testing.T) {
assert := assert.New(t)
tests := []struct {
id int // 测试id
year, month, day, hour, minute, second int // 输入参数
expected string // 期望值
}{
{1, 2020, 1, 1, 13, 14, 15, "2020-01-01 13:14:15"},
{2, 2020, 1, 31, 13, 14, 15, "2020-01-31 13:14:15"},
{3, 2020, 2, 1, 13, 14, 15, "2020-02-01 13:14:15"},
{4, 2020, 2, 28, 13, 14, 15, "2020-02-28 13:14:15"},
{5, 2020, 2, 29, 13, 14, 15, "2020-02-29 13:14:15"},
}
for _, test := range tests {
c := SetTimezone(PRC).CreateFromDateTime(test.year, test.month, test.day, test.hour, test.minute, test.second)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
for _, test := range tests {
c := CreateFromDateTime(test.year, test.month, test.day, test.hour, test.minute, test.second, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
}
func TestError_CreateFromDateTime(t *testing.T) {
year, month, day, hour, minute, second, timezone := 2020, 1, 1, 13, 14, 15, "xxx"
c1 := SetTimezone(timezone).CreateFromDateTime(year, month, day, hour, minute, second)
assert.Equal(t, invalidTimezoneError(timezone), c1.Error, "It should catch an exception in CreateFromDateTime()")
c2 := CreateFromDateTime(year, month, day, hour, minute, second, timezone)
assert.Equal(t, invalidTimezoneError(timezone), c2.Error, "It should catch an exception in CreateFromDateTime()")
}
func TestCarbon_CreateFromDate(t *testing.T) {
assert := assert.New(t)
clock := Now(PRC).ToTimeString()
tests := []struct {
id int // 测试id
year, month, day int // 输入参数
expected string // 期望值
}{
{1, 2020, 1, 1, "2020-01-01 " + clock},
{2, 2020, 1, 31, "2020-01-31 " + clock},
{3, 2020, 2, 1, "2020-02-01 " + clock},
{4, 2020, 2, 28, "2020-02-28 " + clock},
{5, 2020, 2, 29, "2020-02-29 " + clock},
}
for _, test := range tests {
c := SetTimezone(PRC).CreateFromDate(test.year, test.month, test.day)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
for _, test := range tests {
c := CreateFromDate(test.year, test.month, test.day, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
}
func TestError_CreateFromDate(t *testing.T) {
year, month, day, timezone := 13, 14, 15, "xxx"
c1 := SetTimezone(timezone).CreateFromDate(year, month, day)
assert.Equal(t, invalidTimezoneError(timezone), c1.Error, "It should catch an exception in CreateFromDate()")
c2 := CreateFromDate(year, month, day, timezone)
assert.Equal(t, invalidTimezoneError(timezone), c2.Error, "It should catch an exception in CreateFromDate()")
}
func TestCarbon_CreateFromTime(t *testing.T) {
assert := assert.New(t)
date := Now(PRC).ToDateString()
tests := []struct {
id int // 测试id
hour, minute, second int // 输入参数
expected string // 期望值
}{
{1, 0, 0, 0, date + " 00:00:00"},
{2, 00, 00, 15, date + " 00:00:15"},
{3, 00, 14, 15, date + " 00:14:15"},
{4, 13, 14, 15, date + " 13:14:15"},
}
for _, test := range tests {
c := SetTimezone(PRC).CreateFromTime(test.hour, test.minute, test.second)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
for _, test := range tests {
c := CreateFromTime(test.hour, test.minute, test.second, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
}
}
func TestError_CreateFromTime(t *testing.T) {
hour, minute, second, timezone := 13, 14, 15, "xxx"
c1 := SetTimezone(timezone).CreateFromTime(hour, minute, second)
assert.Equal(t, invalidTimezoneError(timezone), c1.Error, "It should catch an exception in CreateFromTime()")
c2 := CreateFromTime(hour, minute, second, timezone)
assert.Equal(t, invalidTimezoneError(timezone), c2.Error, "It should catch an exception in CreateFromTime()")
}