forked from moov-io/ach
-
Notifications
You must be signed in to change notification settings - Fork 1
/
batchPOS_test.go
519 lines (456 loc) · 16.6 KB
/
batchPOS_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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
// Licensed to The Moov Authors under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. The Moov Authors licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package ach
import (
"testing"
"github.com/moov-io/base"
)
// mockBatchPOSHeader creates a BatchPOS BatchHeader
func mockBatchPOSHeader() *BatchHeader {
bh := NewBatchHeader()
bh.ServiceClassCode = DebitsOnly
bh.StandardEntryClassCode = POS
bh.CompanyName = "Payee Name"
bh.CompanyIdentification = "121042882"
bh.CompanyEntryDescription = "ACH POS"
bh.ODFIIdentification = "12104288"
return bh
}
// mockPOSEntryDetail creates a BatchPOS EntryDetail
func mockPOSEntryDetail() *EntryDetail {
entry := NewEntryDetail()
entry.TransactionCode = CheckingDebit
entry.SetRDFI("231380104")
entry.DFIAccountNumber = "744-5678-99"
entry.Amount = 25000
entry.IdentificationNumber = "45689033"
entry.IndividualName = "Wade Arnold"
entry.SetTraceNumber(mockBatchPOSHeader().ODFIIdentification, 1)
entry.DiscretionaryData = "01"
entry.Category = CategoryForward
return entry
}
// mockPOSEntryDetailCredit creates a BatchPOS EntryDetail with a credit entry
func mockPOSEntryDetailCredit() *EntryDetail {
entry := NewEntryDetail()
entry.TransactionCode = CheckingCredit
entry.SetRDFI("231380104")
entry.DFIAccountNumber = "744-5678-99"
entry.Amount = 25000
entry.IdentificationNumber = "45689033"
entry.IndividualName = "Wade Arnold"
entry.SetTraceNumber(mockBatchPOSHeader().ODFIIdentification, 2)
entry.DiscretionaryData = "01"
entry.Category = CategoryForward
return entry
}
// mockBatchPOS creates a BatchPOS
func mockBatchPOS() *BatchPOS {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02()
mockBatch.Entries[0].AddendaRecordIndicator = 1
if err := mockBatch.Create(); err != nil {
panic(err)
}
return mockBatch
}
// mockBatchPOSMixedDebitsAndCredits creates a BatchPOS with mixed debits and credits
func mockBatchPOSMixedDebitsAndCredits() *BatchPOS {
bh := mockBatchPOSHeader()
bh.ServiceClassCode = MixedDebitsAndCredits
mockBatch := NewBatchPOS(bh)
mockBatch.AddEntry(mockPOSEntryDetail())
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02()
mockBatch.Entries[0].AddendaRecordIndicator = 1
mockBatch.AddEntry(mockPOSEntryDetailCredit())
mockBatch.GetEntries()[1].Addenda02 = mockAddenda02()
mockBatch.Entries[1].AddendaRecordIndicator = 1
mockBatch.GetControl().ServiceClassCode = MixedDebitsAndCredits
if err := mockBatch.Create(); err != nil {
panic(err)
}
return mockBatch
}
// testBatchPOSHeader creates a BatchPOS BatchHeader
func testBatchPOSHeader(t testing.TB) {
batch, _ := NewBatch(mockBatchPOSHeader())
err, ok := batch.(*BatchPOS)
if !ok {
t.Errorf("Expecting BatchPOS got %T", err)
}
}
// TestBatchPOSHeader tests validating BatchPOS BatchHeader
func TestBatchPOSHeader(t *testing.T) {
testBatchPOSHeader(t)
}
// BenchmarkBatchPOSHeader benchmarks validating BatchPOS BatchHeader
func BenchmarkBatchPOSHeader(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSHeader(b)
}
}
// testBatchPOSCreate validates BatchPOS create
func testBatchPOSCreate(t testing.TB) {
mockBatch := mockBatchPOS()
if err := mockBatch.Create(); err != nil {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSCreate tests validating BatchPOS create
func TestBatchPOSCreate(t *testing.T) {
testBatchPOSCreate(t)
}
// BenchmarkBatchPOSCreate benchmarks validating BatchPOS create
func BenchmarkBatchPOSCreate(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSCreate(b)
}
}
// testBatchPOSStandardEntryClassCode validates BatchPOS create for an invalid StandardEntryClassCode
func testBatchPOSStandardEntryClassCode(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.Header.StandardEntryClassCode = WEB
err := mockBatch.Create()
if !base.Match(err, ErrBatchSECType) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSStandardEntryClassCode tests validating BatchPOS create for an invalid StandardEntryClassCode
func TestBatchPOSStandardEntryClassCode(t *testing.T) {
testBatchPOSStandardEntryClassCode(t)
}
// BenchmarkBatchPOSStandardEntryClassCode benchmarks validating BatchPOS create for an invalid StandardEntryClassCode
func BenchmarkBatchPOSStandardEntryClassCode(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSStandardEntryClassCode(b)
}
}
// testBatchPOSServiceClassCodeEquality validates service class code equality
func testBatchPOSServiceClassCodeEquality(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.GetControl().ServiceClassCode = MixedDebitsAndCredits
err := mockBatch.Validate()
if !base.Match(err, NewErrBatchHeaderControlEquality(220, MixedDebitsAndCredits)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSServiceClassCodeEquality tests validating service class code equality
func TestBatchPOSServiceClassCodeEquality(t *testing.T) {
testBatchPOSServiceClassCodeEquality(t)
}
// BenchmarkBatchPOSServiceClassCodeEquality benchmarks validating service class code equality
func BenchmarkBatchPOSServiceClassCodeEquality(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSServiceClassCodeEquality(b)
}
}
// testBatchPOSMixedCreditsAndDebits validates BatchPOS create for an invalid MixedCreditsAndDebits
func testBatchPOSMixedCreditsAndDebits(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.Header.ServiceClassCode = MixedDebitsAndCredits
err := mockBatch.Validate()
if !base.Match(err, NewErrBatchHeaderControlEquality(MixedDebitsAndCredits, 225)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSMixedCreditsAndDebits tests validating BatchPOS create for an invalid MixedCreditsAndDebits
func TestBatchPOSMixedCreditsAndDebits(t *testing.T) {
testBatchPOSMixedCreditsAndDebits(t)
}
// BenchmarkBatchPOSMixedCreditsAndDebits benchmarks validating BatchPOS create for an invalid MixedCreditsAndDebits
func BenchmarkBatchPOSMixedCreditsAndDebits(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSMixedCreditsAndDebits(b)
}
}
// testBatchPOSCreditsOnly validates BatchPOS create for an invalid CreditsOnly
func testBatchPOSCreditsOnly(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.Header.ServiceClassCode = CreditsOnly
err := mockBatch.Validate()
if !base.Match(err, NewErrBatchHeaderControlEquality(CreditsOnly, 225)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSCreditsOnly tests validating BatchPOS create for an invalid CreditsOnly
func TestBatchPOSCreditsOnly(t *testing.T) {
testBatchPOSCreditsOnly(t)
}
// BenchmarkBatchPOSCreditsOnly benchmarks validating BatchPOS create for an invalid CreditsOnly
func BenchmarkBatchPOSCreditsOnly(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSCreditsOnly(b)
}
}
// testBatchPOSAutomatedAccountingAdvices validates BatchPOS create for an invalid AutomatedAccountingAdvices
func testBatchPOSAutomatedAccountingAdvices(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.Header.ServiceClassCode = AutomatedAccountingAdvices
err := mockBatch.Validate()
if !base.Match(err, NewErrBatchHeaderControlEquality(MixedDebitsAndCredits, 225)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSAutomatedAccountingAdvices tests validating BatchPOS create for an invalid AutomatedAccountingAdvices
func TestBatchPOSAutomatedAccountingAdvices(t *testing.T) {
testBatchPOSAutomatedAccountingAdvices(t)
}
// BenchmarkBatchPOSAutomatedAccountingAdvices benchmarks validating BatchPOS create for an invalid AutomatedAccountingAdvices
func BenchmarkBatchPOSAutomatedAccountingAdvices(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSAutomatedAccountingAdvices(b)
}
}
// testBatchPOSAddendaCount validates BatchPOS Addendum count of 2
func testBatchPOSAddendaCount(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02()
err := mockBatch.Create()
// TODO: are we expecting there to be an error here?
if !base.Match(err, nil) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSAddendaCount tests validating BatchPOS Addendum count of 2
func TestBatchPOSAddendaCount(t *testing.T) {
testBatchPOSAddendaCount(t)
}
// BenchmarkBatchPOSAddendaCount benchmarks validating BatchPOS Addendum count of 2
func BenchmarkBatchPOSAddendaCount(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSAddendaCount(b)
}
}
// testBatchPOSAddendaCountZero validates Addendum count of 0
func testBatchPOSAddendaCountZero(t testing.TB) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda02 := mockAddenda02()
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02
mockBatch.Entries[0].AddendaRecordIndicator = 1
err := mockBatch.Create()
// TODO: are we expecting there to be no errors here?
if !base.Match(err, nil) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSAddendaCountZero tests validating Addendum count of 0
func TestBatchPOSAddendaCountZero(t *testing.T) {
testBatchPOSAddendaCountZero(t)
}
// BenchmarkBatchPOSAddendaCountZero benchmarks validating Addendum count of 0
func BenchmarkBatchPOSAddendaCountZero(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSAddendaCountZero(b)
}
}
// testBatchPOSInvalidAddendum validates Addendum must be Addenda02
func testBatchPOSInvalidAddendum(t testing.TB) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02()
mockBatch.GetEntries()[0].AddAddenda05(mockAddenda05())
mockBatch.Entries[0].AddendaRecordIndicator = 1
err := mockBatch.Create()
if !base.Match(err, ErrBatchAddendaCategory) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSInvalidAddendum tests validating Addendum must be Addenda02
func TestBatchPOSInvalidAddendum(t *testing.T) {
testBatchPOSInvalidAddendum(t)
}
// BenchmarkBatchPOSInvalidAddendum benchmarks validating Addendum must be Addenda02
func BenchmarkBatchPOSInvalidAddendum(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSInvalidAddendum(b)
}
}
// TestBatchPOSAddendum98 validates Addenda98 returns an error
func TestBatchPOSAddendum98(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda98 := mockAddenda98()
mockBatch.GetEntries()[0].AddendaRecordIndicator = 1
mockBatch.GetEntries()[0].Category = CategoryNOC
mockBatch.GetEntries()[0].Addenda98 = mockAddenda98
err := mockBatch.Create()
if !base.Match(err, ErrFieldInclusion) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSAddendum99 validates Addenda99 returns an error
func TestBatchPOSAddendum99(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda99 := mockAddenda99()
mockAddenda99.TypeCode = "05"
mockBatch.GetEntries()[0].Category = CategoryReturn
mockBatch.GetEntries()[0].Addenda99 = mockAddenda99
err := mockBatch.Create()
if !base.Match(err, ErrAddendaTypeCode) {
t.Errorf("%T: %s", err, err)
}
}
// testBatchPOSInvalidAddenda validates Addendum must be Addenda02
func testBatchPOSInvalidAddenda(t testing.TB) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
addenda02 := mockAddenda02()
addenda02.recordType = "63"
mockBatch.GetEntries()[0].Addenda02 = addenda02
mockBatch.Entries[0].AddendaRecordIndicator = 1
err := mockBatch.Create()
if !base.Match(err, NewErrRecordType(7)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSInvalidAddenda tests validating Addendum must be Addenda02
func TestBatchPOSInvalidAddenda(t *testing.T) {
testBatchPOSInvalidAddenda(t)
}
// BenchmarkBatchPOSInvalidAddenda benchmarks validating Addendum must be Addenda02
func BenchmarkBatchPOSInvalidAddenda(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSInvalidAddenda(b)
}
}
// testBatchPOSInvalidBuild validates an invalid batch build
func testBatchPOSInvalidBuild(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.GetHeader().recordType = "3"
err := mockBatch.Create()
if !base.Match(err, NewErrRecordType(5)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSInvalidBuild tests validating an invalid batch build
func TestBatchPOSInvalidBuild(t *testing.T) {
testBatchPOSInvalidBuild(t)
}
// BenchmarkBatchPOSInvalidBuild benchmarks validating an invalid batch build
func BenchmarkBatchPOSInvalidBuild(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSInvalidBuild(b)
}
}
// testBatchPOSCardTransactionType validates BatchPOS create for an invalid CardTransactionType
func testBatchPOSCardTransactionType(t testing.TB) {
mockBatch := mockBatchPOS()
mockBatch.GetEntries()[0].DiscretionaryData = "555"
err := mockBatch.Validate()
if !base.Match(err, ErrBatchInvalidCardTransactionType) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSCardTransactionType tests validating BatchPOS create for an invalid CardTransactionType
func TestBatchPOSCardTransactionType(t *testing.T) {
testBatchPOSCardTransactionType(t)
}
// BenchmarkBatchPOSCardTransactionType benchmarks validating BatchPOS create for an invalid CardTransactionType
func BenchmarkBatchPOSCardTransactionType(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSCardTransactionType(b)
}
}
// TestBatchPOSAddendum99Category validates Addenda99 returns an error
func TestBatchPOSAddendum99Category(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda99 := mockAddenda99()
mockBatch.Entries[0].AddendaRecordIndicator = 1
mockBatch.Entries[0].Category = CategoryNOC
mockBatch.Entries[0].Addenda99 = mockAddenda99
err := mockBatch.Create()
if !base.Match(err, ErrBatchAddendaCategory) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSCategoryReturn validates CategoryReturn returns an error if valid Addenda02 is defined
func TestBatchPOSCategoryReturn(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda02 := mockAddenda02()
mockBatch.GetEntries()[0].Category = CategoryReturn
mockBatch.GetEntries()[0].AddendaRecordIndicator = 1
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02
err := mockBatch.Create()
if !base.Match(err, ErrBatchAddendaCategory) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSCategoryReturnAddenda99 validates CategoryReturn returns an error if Addenda99 is not defined
func TestBatchPOSCategoryReturnAddenda99(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockBatch.GetEntries()[0].Category = CategoryReturn
mockBatch.GetEntries()[0].AddendaRecordIndicator = 1
err := mockBatch.Create()
if !base.Match(err, ErrFieldInclusion) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSTerminalState validates TerminalState returns an error if invalid from usabbrev
func TestBatchPOSTerminalState(t *testing.T) {
mockBatch := NewBatchPOS(mockBatchPOSHeader())
mockBatch.AddEntry(mockPOSEntryDetail())
mockAddenda02 := mockAddenda02()
mockAddenda02.TerminalState = "YY"
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02
mockBatch.Entries[0].AddendaRecordIndicator = 1
err := mockBatch.Create()
if !base.Match(err, ErrValidState) {
t.Errorf("%T: %s", err, err)
}
}
// testBatchPOSMixedDebitsAndCredits validates BatchPOS with mixed debits and credits
func testBatchPOSMixedDebitsAndCredits(t testing.TB) {
mockBatch := mockBatchPOSMixedDebitsAndCredits()
err := mockBatch.Create()
if !base.Match(err, nil) {
t.Errorf("%T: %s", err, err)
}
err = mockBatch.Validate()
if !base.Match(err, nil) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchPOSMixedDebitsAndCredits tests validating BatchPOS with mixed debits and credits
func TestBatchPOSMixedDebitsAndCredits(t *testing.T) {
testBatchPOSMixedDebitsAndCredits(t)
}
// BenchmarkBatchPOSMixedDebitsAndCredits benchmarks validating BatchPOS with mixed debits and credits
func BenchmarkBatchPOSMixedDebitsAndCredits(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchPOSMixedDebitsAndCredits(b)
}
}