-
Notifications
You must be signed in to change notification settings - Fork 151
/
batchTEL_test.go
241 lines (214 loc) · 7.21 KB
/
batchTEL_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
// 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"
"github.com/stretchr/testify/require"
)
// mockBatchTELHeader creates a TEL batch header
func mockBatchTELHeader() *BatchHeader {
bh := NewBatchHeader()
bh.ServiceClassCode = DebitsOnly
bh.StandardEntryClassCode = TEL
bh.CompanyName = "Your Company, inc"
bh.CompanyIdentification = "121042882"
bh.CompanyEntryDescription = "Vndr Pay"
bh.ODFIIdentification = "12104288"
return bh
}
// mockTELEntryDetail creates a TEL entry detail
func mockTELEntryDetail() *EntryDetail {
entry := NewEntryDetail()
entry.TransactionCode = CheckingDebit
entry.SetRDFI("231380104")
entry.DFIAccountNumber = "744-5678-99"
entry.Amount = 5000000
entry.IdentificationNumber = "Phone 333-2222"
entry.IndividualName = "Wade Arnold"
entry.SetTraceNumber(mockBatchTELHeader().ODFIIdentification, 1)
entry.SetPaymentType("S")
return entry
}
// mockBatchTEL creates a TEL batch
func mockBatchTEL(t testing.TB) *BatchTEL {
mockBatch := NewBatchTEL(mockBatchTELHeader())
mockBatch.AddEntry(mockTELEntryDetail())
require.NoError(t, mockBatch.Create())
return mockBatch
}
// testBatchTELHeader creates a TEL batch header
func testBatchTELHeader(t testing.TB) {
batch, _ := NewBatch(mockBatchTELHeader())
err, ok := batch.(*BatchTEL)
if !ok {
t.Errorf("Expecting BatchTEL got %T", err)
}
}
// TestBatchTELHeader tests creating a TEL batch header
func TestBatchTELHeader(t *testing.T) {
testBatchTELHeader(t)
}
// BenchmarkBatchTELHeader benchmarks creating a TEL batch header
func BenchmarkBatchTELHeader(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELHeader(b)
}
}
// testBatchTELCreate validates batch create for an invalid service code
func testBatchTELCreate(t testing.TB) {
mockBatch := mockBatchTEL(t)
// Batch Header information is required to Create a batch.
mockBatch.GetHeader().ServiceClassCode = 0
err := mockBatch.Create()
if !base.Match(err, ErrConstructor) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELCreate tests validating batch create for an invalid service code
func TestBatchTELCreate(t *testing.T) {
testBatchTELCreate(t)
}
// BenchmarkBatchTELCreate benchmarks validating batch create for an invalid service code
func BenchmarkBatchTELCreate(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELCreate(b)
}
}
// testBatchTELAddendaCount validates addenda count for batch TEL
func testBatchTELAddendaCount(t testing.TB) {
mockBatch := mockBatchTEL(t)
// TEL can not have an addenda02
mockBatch.GetEntries()[0].Addenda02 = mockAddenda02()
mockBatch.Entries[0].AddendaRecordIndicator = 1
err := mockBatch.Validate()
if !base.Match(err, NewErrBatchCalculatedControlEquality(2, 1)) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELAddendaCount tests validating addenda count for batch TEL
func TestBatchTELAddendaCount(t *testing.T) {
testBatchTELAddendaCount(t)
}
// BenchmarkBatchTELAddendaCount benchmarks validating addenda count for batch TEL
func BenchmarkBatchTELAddendaCount(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELAddendaCount(b)
}
}
// testBatchTELSEC validates SEC code for batch TEL
func testBatchTELSEC(t testing.TB) {
mockBatch := mockBatchTEL(t)
mockBatch.Header.StandardEntryClassCode = RCK
err := mockBatch.Validate()
if !base.Match(err, ErrBatchSECType) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELSEC tests validating SEC code for batch TEL
func TestBatchTELSEC(t *testing.T) {
testBatchTELSEC(t)
}
// BenchmarkBatchTELSEC benchmarks validating SEC code for batch TEL
func BenchmarkBatchTELSEC(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELSEC(b)
}
}
// testBatchTELDebit validates Transaction code for TEL entry detail
func testBatchTELDebit(t testing.TB) {
mockBatch := mockBatchTEL(t)
mockBatch.GetEntries()[0].TransactionCode = CheckingCredit
err := mockBatch.Create()
if !base.Match(err, ErrBatchDebitOnly) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELDebit tests validating Transaction code for TEL entry detail
func TestBatchTELDebit(t *testing.T) {
testBatchTELDebit(t)
}
// BenchmarkBatchTELDebit benchmarks validating Transaction code for TEL entry detail
func BenchmarkBatchTELDebit(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELDebit(b)
}
}
// testBatchTELPaymentType validates that the entry detail
// payment type / discretionary data is either single or reoccurring
func testBatchTELPaymentType(t testing.TB) {
mockBatch := mockBatchTEL(t)
mockBatch.GetEntries()[0].DiscretionaryData = "AA"
err := mockBatch.Validate()
// TODO: are we expecting there to be no errors here?
if !base.Match(err, nil) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELPaymentType tests validating that the entry detail
// payment type / discretionary data is either single or reoccurring
func TestBatchTELPaymentType(t *testing.T) {
testBatchTELPaymentType(t)
}
// BenchmarkBatchTELPaymentTyp benchmarks validating that the entry detail
// payment type / discretionary data is either single or reoccurring
func BenchmarkBatchTELPaymentType(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
testBatchTELPaymentType(b)
}
}
// TestBatchTELAddendum98 validates Addenda98 returns an error
func TestBatchTELAddendum98(t *testing.T) {
mockBatch := NewBatchTEL(mockBatchTELHeader())
mockBatch.AddEntry(mockTELEntryDetail())
mockAddenda98 := mockAddenda98()
mockAddenda98.TypeCode = "05"
mockBatch.GetEntries()[0].Category = CategoryNOC
mockBatch.GetEntries()[0].Addenda98 = mockAddenda98
err := mockBatch.Create()
if !base.Match(err, ErrAddendaTypeCode) {
t.Errorf("%T: %s", err, err)
}
}
// TestBatchTELAddendum99 validates Addenda99 returns an error
func TestBatchTELAddendum99(t *testing.T) {
mockBatch := NewBatchTEL(mockBatchTELHeader())
mockBatch.AddEntry(mockTELEntryDetail())
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)
}
}
// TestBatchTELValidTranCodeForServiceClassCode validates a transactionCode based on ServiceClassCode
func TestBatchTELValidTranCodeForServiceClassCode(t *testing.T) {
mockBatch := mockBatchTEL(t)
mockBatch.GetHeader().ServiceClassCode = CreditsOnly
err := mockBatch.Create()
if !base.Match(err, NewErrBatchServiceClassTranCode(CreditsOnly, 27)) {
t.Errorf("%T: %s", err, err)
}
}