-
Notifications
You must be signed in to change notification settings - Fork 3
/
numcn_test.go
163 lines (158 loc) · 5.12 KB
/
numcn_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
package numcn
import (
"testing"
)
func TestDecodeToInt64(t *testing.T) {
testCases := []struct {
cn string
num int64
}{
{"零", 0},
{"〇", 0},
{"七", 7},
{"七十八", 78},
{"七百六十九", 769},
{"柒仟壹佰肆拾", 7140},
{"贰亿叁仟肆佰贰拾叁万肆仟贰佰贰拾叁", 234234223},
{"七千零一", 7001},
{"一万零一十四", 10014},
{"十六万", 160000},
{"负十六", -16},
{"六十", 60},
{"负七百六十三", -763},
{"一万四千六百二十三", 14623},
{"一百零二亿五千零一万一千零三十八", 10250011038},
{"一万一千一百一十一亿一千一百二十三万四千五百六十七", 1111111234567},
{"五十万亿", 50000000000000},
{"一亿亿", 10000000000000000},
{"五十万亿零一百万零二十四", 50000001000024},
{"负九百二十二亿三千三百七十二万零三百六十八亿五千四百七十七万五千八百零八", -9223372036854775808},
{"廿一", 21},
{"卌玖", 49},
}
for _, testCase := range testCases {
res, err := DecodeToInt64(testCase.cn)
if err != nil {
t.Fatalf("Error Happened %v", err)
}
if res != testCase.num {
t.Errorf("ERROR!!! CN %s, Res %d, Num %d", testCase.cn, res, testCase.num)
} else {
t.Logf("CN %s, Res %d, Num %d", testCase.cn, res, testCase.num)
}
}
}
func TestEncodeFromInt64(t *testing.T) {
testCases := []struct {
cn string
num int64
}{
{"零", 0},
{"一", 1},
{"七十八", 78},
{"七百六十九", 769},
{"七千一百四十", 7140},
{"七千零一", 7001},
{"一万零一十四", 10014},
{"负十六", -16},
{"六十", 60},
{"负七百六十三", -763},
{"一万四千六百二十三", 14623},
{"一百零二亿五千零一万一千零三十八", 10250011038},
{"一万一千一百一十一亿一千一百二十三万四千五百六十七", 1111111234567},
{"五十万亿", 50000000000000},
{"一亿亿", 10000000000000000},
{"十六万", 160000},
{"负九百二十二亿三千三百七十二万零三百六十八亿五千四百七十七万五千八百零八", -9223372036854775808},
{"五十万亿零一百万零二十四", 50000001000024},
}
for _, testCase := range testCases {
res := EncodeFromInt64(testCase.num)
if string(res) != testCase.cn {
t.Errorf("ERROR!!! CN %s, Res %s, Num %d", testCase.cn, string(res), testCase.num)
} else {
t.Logf("CN %s, Res %s, Num %d", testCase.cn, string(res), testCase.num)
}
}
}
func TestDecodeToFloat64(t *testing.T) {
testCases := []struct {
cn string
num float64
}{
{"零", 0},
{"〇", 0},
{"七", 7},
{"七十八", 78},
{"七百六十九", 769},
{"柒仟壹佰肆拾", 7140},
{"贰亿叁仟肆佰贰拾叁万肆仟贰佰贰拾叁", 234234223},
{"七千零一", 7001},
{"一万零一十四", 10014},
{"十六万", 160000},
{"十六", 16},
{"六十", 60},
{"负七百六十三", -763},
{"一万四千六百二十三", 14623},
{"一百零二亿五千零一万一千零三十八", 10250011038},
{"一万一千一百一十一亿一千一百二十三万四千五百六十七", 1111111234567},
{"五十万亿", 50000000000000},
{"一亿零一亿", 10000000100000000},
{"五十万亿零一百万零二十四", 50000001000024},
{"负九百二十二亿三千三百七十二万零三百六十八亿五千四百七十七万五千八百零八", -9223372036854775808},
{"廿一", 21},
{"卌玖", 49},
{"五十涧", 5e37},
{"十又四厘九毫", 10.049},
{"一万四千又四忽九纳", 14000.000040009},
{"三点一四一五九二六", 3.1415926},
{"壹仟陆佰零叁点伍玖陆", 1603.596},
}
for _, testCase := range testCases {
res, err := DecodeToFloat64(testCase.cn)
if err != nil {
t.Fatalf("Critical Error Happened: %v", err)
}
if res != testCase.num {
t.Errorf("Error: CN %s, Res %9f, Should be %9f", testCase.cn, res, testCase.num)
} else {
t.Logf("CN %s, Res %v, Num %v", testCase.cn, res, testCase.num)
}
}
}
func TestEncodeFromFloat64(t *testing.T) {
testCases := []struct {
cn string
num float64
}{
{"零", 0},
{"一", 1},
{"七十八", 78},
{"七百六十九", 769},
{"七千一百四十", 7140},
{"七千零一", 7001},
{"一万零一十四", 10014},
{"十六", 16},
{"六十", 60},
{"负七百六十三", -763},
{"一万四千六百二十三", 14623},
{"一百零二亿五千零一万一千零三十八", 10250011038},
{"一万一千一百一十一亿一千一百二十三万四千五百六十七", 1111111234567},
{"五十万亿", 50000000000000},
{"一亿亿", 10000000000000000},
{"十六万", 160000},
{"零点零零零零三七", 0.000037},
{"三点一四一五九二", 3.141592},
{"负九百二十二亿三千三百七十二万零三百六十八亿五千四百七十七万五千八百零八", -9223372036854775808},
{"五十万亿零一百万零二十四", 50000001000024},
{"负十点一三五七九", -10.13579},
}
for _, testCase := range testCases {
res := EncodeFromFloat64(testCase.num)
if string(res) != testCase.cn {
t.Errorf("ERROR!!! CN %s, Res %s, Num %f", testCase.cn, string(res), testCase.num)
} else {
t.Logf("CN %s, Res %s, Num %f", testCase.cn, string(res), testCase.num)
}
}
}