-
Notifications
You must be signed in to change notification settings - Fork 0
/
credit_card_test.go
311 lines (250 loc) · 6.24 KB
/
credit_card_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
305
306
307
308
309
310
311
// Copyright (c) 2023-2024 Onur Cinar.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// https://github.com/cinar/checker
package checker_test
import (
"strconv"
"testing"
"github.com/cinar/checker"
)
// Test numbers from https://stripe.com/docs/testing
var invalidCard = "1234123412341234"
var amexCard = "378282246310005"
var dinersCard = "36227206271667"
var discoverCard = "6011111111111117"
var jcbCard = "3530111333300000"
var masterCard = "5555555555554444"
var unionPayCard = "6200000000000005"
var visaCard = "4111111111111111"
// changeToInvalidLuhn increments the luhn digit to make the number invalid. It assumes that the given number is valid.
func changeToInvalidLuhn(number string) string {
luhn, err := strconv.Atoi(number[len(number)-1:])
if err != nil {
panic(err)
}
luhn = (luhn + 1) % 10
return number[:len(number)-1] + strconv.Itoa(luhn)
}
func ExampleIsAnyCreditCard() {
err := checker.IsAnyCreditCard("6011111111111117")
if err != nil {
// Send the errors back to the user
}
}
func TestIsAnyCreditCardValid(t *testing.T) {
if checker.IsAnyCreditCard(amexCard) != nil {
t.Fail()
}
}
func TestIsAnyCreditCardInvalidPattern(t *testing.T) {
if checker.IsAnyCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsAnyCreditCardInvalidLuhn(t *testing.T) {
if checker.IsAnyCreditCard(changeToInvalidLuhn(amexCard)) == nil {
t.Fail()
}
}
func ExampleIsAmexCreditCard() {
err := checker.IsAmexCreditCard("378282246310005")
if err != nil {
// Send the errors back to the user
}
}
func TestIsAmexCreditCardValid(t *testing.T) {
if checker.IsAmexCreditCard(amexCard) != nil {
t.Fail()
}
}
func TestIsAmexCreditCardInvalidPattern(t *testing.T) {
if checker.IsAmexCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsAmexCreditCardInvalidLuhn(t *testing.T) {
if checker.IsAmexCreditCard(changeToInvalidLuhn(amexCard)) == nil {
t.Fail()
}
}
func ExampleIsDinersCreditCard() {
err := checker.IsDinersCreditCard("36227206271667")
if err != nil {
// Send the errors back to the user
}
}
func TestIsDinersCreditCardValid(t *testing.T) {
if checker.IsDinersCreditCard(dinersCard) != nil {
t.Fail()
}
}
func TestIsDinersCreditCardInvalidPattern(t *testing.T) {
if checker.IsDinersCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsDinersCreditCardInvalidLuhn(t *testing.T) {
if checker.IsDinersCreditCard(changeToInvalidLuhn(dinersCard)) == nil {
t.Fail()
}
}
func ExampleIsDiscoverCreditCard() {
err := checker.IsDiscoverCreditCard("6011111111111117")
if err != nil {
// Send the errors back to the user
}
}
func TestIsDiscoverCreditCardValid(t *testing.T) {
if checker.IsDiscoverCreditCard(discoverCard) != nil {
t.Fail()
}
}
func TestIsDiscoverCreditCardInvalidPattern(t *testing.T) {
if checker.IsDiscoverCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsDiscoverCreditCardInvalidLuhn(t *testing.T) {
if checker.IsDiscoverCreditCard(changeToInvalidLuhn(discoverCard)) == nil {
t.Fail()
}
}
func ExampleIsJcbCreditCard() {
err := checker.IsJcbCreditCard("3530111333300000")
if err != nil {
// Send the errors back to the user
}
}
func TestIsJcbCreditCardValid(t *testing.T) {
if checker.IsJcbCreditCard(jcbCard) != nil {
t.Fail()
}
}
func TestIsJcbCreditCardInvalidPattern(t *testing.T) {
if checker.IsJcbCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsJcbCreditCardInvalidLuhn(t *testing.T) {
if checker.IsJcbCreditCard(changeToInvalidLuhn(jcbCard)) == nil {
t.Fail()
}
}
func ExampleIsMasterCardCreditCard() {
err := checker.IsMasterCardCreditCard("5555555555554444")
if err != nil {
// Send the errors back to the user
}
}
func TestIsMasterCardCreditCardValid(t *testing.T) {
if checker.IsMasterCardCreditCard(masterCard) != nil {
t.Fail()
}
}
func TestIsMasterCardCreditCardInvalidPattern(t *testing.T) {
if checker.IsMasterCardCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsMasterCardCreditCardInvalidLuhn(t *testing.T) {
if checker.IsMasterCardCreditCard(changeToInvalidLuhn(masterCard)) == nil {
t.Fail()
}
}
func ExampleIsUnionPayCreditCard() {
err := checker.IsUnionPayCreditCard("6200000000000005")
if err != nil {
// Send the errors back to the user
}
}
func TestIsUnionPayCreditCardValid(t *testing.T) {
if checker.IsUnionPayCreditCard(unionPayCard) != nil {
t.Fail()
}
}
func TestIsUnionPayCreditCardInvalidPattern(t *testing.T) {
if checker.IsUnionPayCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsUnionPayCreditCardInvalidLuhn(t *testing.T) {
if checker.IsUnionPayCreditCard(changeToInvalidLuhn(unionPayCard)) == nil {
t.Fail()
}
}
func ExampleIsVisaCreditCard() {
err := checker.IsVisaCreditCard("4111111111111111")
if err != nil {
// Send the errors back to the user
}
}
func TestIsVisaCreditCardValid(t *testing.T) {
if checker.IsVisaCreditCard(visaCard) != nil {
t.Fail()
}
}
func TestIsVisaCreditCardInvalidPattern(t *testing.T) {
if checker.IsVisaCreditCard(invalidCard) == nil {
t.Fail()
}
}
func TestIsVisaCreditCardInvalidLuhn(t *testing.T) {
if checker.IsVisaCreditCard(changeToInvalidLuhn(visaCard)) == nil {
t.Fail()
}
}
func TestCheckCreditCardNonString(t *testing.T) {
defer checker.FailIfNoPanic(t)
type Order struct {
CreditCard int `checkers:"credit-card"`
}
order := &Order{}
checker.Check(order)
}
func TestCheckCreditCardValid(t *testing.T) {
type Order struct {
CreditCard string `checkers:"credit-card"`
}
order := &Order{
CreditCard: amexCard,
}
_, valid := checker.Check(order)
if !valid {
t.Fail()
}
}
func TestCheckCreditCardInvalid(t *testing.T) {
type Order struct {
CreditCard string `checkers:"credit-card"`
}
order := &Order{
CreditCard: invalidCard,
}
_, valid := checker.Check(order)
if valid {
t.Fail()
}
}
func TestCheckCreditCardMultipleUnknown(t *testing.T) {
defer checker.FailIfNoPanic(t)
type Order struct {
CreditCard string `checkers:"credit-card:amex,unknown"`
}
order := &Order{
CreditCard: amexCard,
}
checker.Check(order)
}
func TestCheckCreditCardMultipleInvalid(t *testing.T) {
type Order struct {
CreditCard string `checkers:"credit-card:amex,visa"`
}
order := &Order{
CreditCard: discoverCard,
}
_, valid := checker.Check(order)
if valid {
t.Fail()
}
}