-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
language_unit_test.go
executable file
·149 lines (122 loc) · 4.49 KB
/
language_unit_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
package carbon
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestLanguage_SetLocale(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string
locale string
expected string
}{
0: {"now", "en", "1 day after"},
1: {"tomorrow", "zh-CN", "1 天后"},
}
for index, test := range tests {
lang := NewLanguage()
lang.SetLocale(test.locale)
assert.Equal(test.expected, SetLanguage(lang).Parse(test.input).AddDays(1).DiffForHumans(Parse(test.input)), "Current test index is "+strconv.Itoa(index))
}
}
func TestLanguage_SetResources1(t *testing.T) {
assert := assert.New(t)
lang := NewLanguage()
resources := map[string]string{
"seasons": "spring|summer|autumn|winter",
"year": "1 yr|%d yrs",
"month": "1 mo|%d mos",
"week": "%dw",
"day": "%dd",
"hour": "%dh",
"minute": "%dm",
"second": "%ds",
"now": "just now",
"ago": "%s ago",
"from_now": "in %s",
"before": "%s before",
"after": "%s after",
}
lang.SetLocale("en").SetResources(resources)
tests := []struct {
input1 string
input2 string
expected string
}{
0: {"2020-08-05 13:14:15", "2020-08-05 13:14:15", "just now"},
1: {"2020-08-05 13:14:15", "2021-08-05 13:14:15", "1 yr before"},
2: {"2020-08-05 13:14:15", "2019-08-05 13:14:15", "1 yr after"},
3: {"2020-08-05 13:14:15", "2030-08-05 13:14:15", "10 yrs before"},
4: {"2020-08-05 13:14:15", "2010-08-05 13:14:15", "10 yrs after"},
5: {"2020-08-05 13:14:15", "2020-09-05 13:14:15", "1 mo before"},
6: {"2020-08-05 13:14:15", "2020-07-05 13:14:15", "1 mo after"},
7: {"2020-08-05 13:14:15", "2021-06-05 13:14:15", "10 mos before"},
8: {"2020-08-05 13:14:15", "2019-10-05 13:14:15", "10 mos after"},
9: {"2020-08-05 13:14:15", "2020-08-06 13:14:15", "1d before"},
10: {"2020-08-05 13:14:15", "2020-08-04 13:14:15", "1d after"},
11: {"2020-08-05 13:14:15", "2020-08-15 13:14:15", "1w before"},
12: {"2020-08-05 13:14:15", "2020-07-26 13:14:15", "1w after"},
13: {"2020-08-05 13:14:15", "2020-08-05 14:14:15", "1h before"},
14: {"2020-08-05 13:14:15", "2020-08-05 12:14:15", "1h after"},
15: {"2020-08-05 13:14:15", "2020-08-05 23:14:15", "10h before"},
16: {"2020-08-05 13:14:15", "2020-08-05 03:14:15", "10h after"},
17: {"2020-08-05 13:14:15", "2020-08-05 13:15:15", "1m before"},
18: {"2020-08-05 13:14:15", "2020-08-05 13:13:15", "1m after"},
19: {"2020-08-05 13:14:15", "2020-08-05 13:24:15", "10m before"},
20: {"2020-08-05 13:14:15", "2020-08-05 13:04:15", "10m after"},
21: {"2020-08-05 13:14:15", "2020-08-05 13:14:16", "1s before"},
22: {"2020-08-05 13:14:15", "2020-08-05 13:14:14", "1s after"},
23: {"2020-08-05 13:14:15", "2020-08-05 13:14:25", "10s before"},
24: {"2020-08-05 13:14:15", "2020-08-05 13:14:05", "10s after"},
}
c := SetLanguage(lang)
for index, test := range tests {
c1 := c.Parse(test.input1)
c2 := c.Parse(test.input2)
assert.Nil(c1.Error)
assert.Nil(c2.Error)
assert.Equal(test.expected, c1.DiffForHumans(c2), "Current test index is "+strconv.Itoa(index))
}
}
func TestLanguage_SetResources2(t *testing.T) {
assert := assert.New(t)
lang := NewLanguage()
resources := map[string]string{
"xxx": "xxx",
}
lang.SetResources(resources)
tests := []struct {
input string
expected string
}{
0: {"", ""},
1: {"0", ""},
2: {"0000-00-00", ""},
3: {"00:00:00", ""},
4: {"0000-00-00 00:00:00", ""},
5: {"2021-08-05 13:14:15", ""},
}
c := SetLanguage(lang)
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).DiffForHumans(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).Constellation(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).Season(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).ToWeekString(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).ToShortWeekString(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).ToMonthString(), "Current test index is "+strconv.Itoa(index))
}
for index, test := range tests {
assert.Equal(test.expected, c.Parse(test.input).ToShortMonthString(), "Current test index is "+strconv.Itoa(index))
}
}