forked from moov-io/ach
-
Notifications
You must be signed in to change notification settings - Fork 1
/
file_test.go
165 lines (148 loc) · 3.94 KB
/
file_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
// Copyright 2017 The ACH Authors
// Use of this source code is governed by an Apache License
// license that can be found in the LICENSE file.
package ach
import (
"testing"
)
func mockFilePPD() *File {
mockFile := NewFile()
mockFile.SetHeader(mockFileHeader())
mockBatch := mockBatchPPD()
mockFile.AddBatch(mockBatch)
if err := mockFile.Create(); err != nil {
panic(err)
}
return mockFile
}
func TestFileError(t *testing.T) {
err := &FileError{FieldName: "mock", Msg: "test message"}
if err.Error() != "mock test message" {
t.Error("FileError Error has changed formatting")
}
}
// TestFileBatchCount if calculated count is different from control
func TestFileBatchCount(t *testing.T) {
file := mockFilePPD()
// More batches than the file control count.
file.AddBatch(mockBatchPPD())
if err := file.Validate(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "BatchCount" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileEntryAddenda(t *testing.T) {
file := mockFilePPD()
// more entries than the file control
file.Control.EntryAddendaCount = 5
if err := file.Validate(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "EntryAddendaCount" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileDebitAmount(t *testing.T) {
file := mockFilePPD()
// inequality in total debit amount
file.Control.TotalDebitEntryDollarAmountInFile = 63
if err := file.Validate(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "TotalDebitEntryDollarAmountInFile" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileCreditAmount(t *testing.T) {
file := mockFilePPD()
// inequality in total debit amount
file.Control.TotalCreditEntryDollarAmountInFile = 63
if err := file.Validate(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "TotalCreditEntryDollarAmountInFile" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileEntryHash(t *testing.T) {
file := mockFilePPD()
file.AddBatch(mockBatchPPD())
file.Create()
file.Control.EntryHash = 63
if err := file.Validate(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "EntryHash" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileBlockCount10(t *testing.T) {
file := NewFile().SetHeader(mockFileHeader())
batch := NewBatchPPD()
batch.SetHeader(mockBatchHeader())
batch.AddEntry(mockEntryDetail())
batch.AddEntry(mockEntryDetail())
batch.AddEntry(mockEntryDetail())
batch.AddEntry(mockEntryDetail())
batch.AddEntry(mockEntryDetail())
batch.AddEntry(mockEntryDetail())
batch.Create()
file.AddBatch(batch)
if err := file.Create(); err != nil {
t.Errorf("%T: %s", err, err)
}
// ensure with 10 records in file we don't get 2 for a block count
if file.Control.BlockCount != 1 {
t.Error("BlockCount on 10 records is not equal to 1")
}
// make 11th record which should produce BlockCount of 2
file.Batches[0].AddEntry(mockEntryDetail())
file.Batches[0].Create() // File.Build does not re-build Batches
if err := file.Create(); err != nil {
t.Errorf("%T: %s", err, err)
}
if file.Control.BlockCount != 2 {
t.Error("BlockCount on 11 records is not equal to 2")
}
}
func TestFileBuildBadFileHeader(t *testing.T) {
file := NewFile().SetHeader(FileHeader{})
if err := file.Create(); err != nil {
if e, ok := err.(*FieldError); ok {
if e.Msg != msgFieldInclusion {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}
func TestFileBuildNoBatch(t *testing.T) {
file := NewFile().SetHeader(mockFileHeader())
if err := file.Create(); err != nil {
if e, ok := err.(*FileError); ok {
if e.FieldName != "Batchs" {
t.Errorf("%T: %s", err, err)
}
} else {
t.Errorf("%T: %s", err, err)
}
}
}