-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
198 lines (190 loc) · 4.79 KB
/
main_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
package main
import (
"testing"
)
func TestMerchant_Decode(t *testing.T) {
type fields struct {
ID string
QRType string
IsMerchant bool
IsDynamic bool
MerchantInfo string
MerchantCode string
TransactionCode int
Amount float32
TipIndicator bool
FixedTipIndicator bool
PercentageTipIndicator bool
FixedTipVal float32
PerentageTip float32
CountryCode string
Name string
City string
PostalCode string
AdditionalData string
CRC int
I18nMerchantInfo string
}
type args struct {
s string
}
tests := []struct {
name string
args string
}{
{"smaller test", "000201"},
// {"smaller test", "00020112"},
{"EBS sample", "0002010102115138000310901020002090000000650408f8bfe0f85204000053039385802SD5912MerchantName6004City63045DD9"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
m := &Merchant{}
m.Decode(tt.args)
t.Logf("The value of merchant is: %#v", m)
})
}
}
func Test_toInt(t *testing.T) {
type args struct {
s string
}
tests := []struct {
name string
args args
want int
}{
{"to int test", args{"8"}, 8},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := toInt(tt.args.s); got != tt.want {
t.Errorf("toInt() = %v, want %v", got, tt.want)
}
})
}
}
func TestMerchant_Encode(t *testing.T) {
type fields struct {
ID string
QRType string
IsMerchant bool
IsDynamic bool
MerchantInfo string
MerchantCode string
TransactionCode int
Amount float32
TipIndicator bool
FixedTipIndicator bool
PercentageTipIndicator bool
FixedTipVal float32
PerentageTip float32
CountryCode string
Name string
City string
PostalCode string
AdditionalData string
CRC int
I18nMerchantInfo string
}
tests := []struct {
name string
want string
}{
{"testing encoding", "something"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
m := &Merchant{}
if got := m.Encode(); got != tt.want {
t.Errorf("Merchant.Encode() = %v, want %v", got, tt.want)
}
})
}
}
func Test_getValue(t *testing.T) {
type args struct {
i interface{}
}
tests := []struct {
name string
args args
want string
}{
{"getting formatted length", args{"ahmed"}, "05"},
{"getting formatted length", args{""}, "00"},
{"getting formatted length", args{10000001000000}, "14"},
{"getting formatted length", args{1000.12}, "07"},
{"getting formatted length", args{101200.12}, "09"},
{"getting formatted length", args{101200.1200}, "11"}, // notice the truncation after 02f
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := getValue(tt.args.i); got != tt.want {
t.Errorf("getValue() = %v, want %v", got, tt.want)
}
})
}
}
func Test_toString(t *testing.T) {
type args struct {
i interface{}
}
tests := []struct {
name string
args args
want string
}{
{"generic toString implemetnation", args{"to some"}, "to some"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := toString(tt.args.i); got != tt.want {
t.Errorf("toString() = %v, want %v", got, tt.want)
}
})
}
}
func TestMerchant_checksum(t *testing.T) {
type fields struct {
ID string
QRType string
IsMerchant bool
IsDynamic bool
MerchantInfo string
MerchantCode string
TransactionCode int
Amount float32
TipIndicator bool
FixedTipIndicator bool
PercentageTipIndicator bool
FixedTipVal float32
PerentageTip float32
CountryCode string
Name string
City string
PostalCode string
AdditionalData string
CRC int
I18nMerchantInfo string
}
tests := []struct {
name string
args string
want string
}{
// 0002010102115138000310901020002090000000650408f8bfe0f85204000053039385802SD5916Merchant Name6008City
// 63045DD9
// polynomial: 1021
// initial value: FFFF
// value
{"checking md5-sum", "FFFF0002010102115138000310901020002090000000650408f8bfe0f85204000053039385802SD5916Merchant Name6008City", "5DD9"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
m := &Merchant{}
if got := m.checksum(tt.args); got != tt.want {
t.Errorf("Merchant.checksum() = %v, want %v", got, tt.want)
}
})
}
}