-
Notifications
You must be signed in to change notification settings - Fork 53
/
result_test.go
214 lines (172 loc) · 5.37 KB
/
result_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
// Copyright 2015 go-swagger maintainers
//
// Licensed 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 validate
import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// Test AddError() uniqueness
func TestResult_AddError(t *testing.T) {
r := Result{}
r.AddErrors(errors.New("one error"))
r.AddErrors(errors.New("another error"))
r.AddErrors(errors.New("one error"))
r.AddErrors(errors.New("one error"))
r.AddErrors(errors.New("one error"))
r.AddErrors(errors.New("one error"), errors.New("another error"))
assert.Len(t, r.Errors, 2)
assert.Contains(t, r.Errors, errors.New("one error"))
assert.Contains(t, r.Errors, errors.New("another error"))
}
func TestResult_AddNilError(t *testing.T) {
r := Result{}
r.AddErrors(nil)
assert.Empty(t, r.Errors)
errArray := []error{errors.New("one Error"), nil, errors.New("another error")}
r.AddErrors(errArray...)
assert.Len(t, r.Errors, 2)
}
func TestResult_AddWarnings(t *testing.T) {
r := Result{}
r.AddErrors(errors.New("one Error"))
assert.Len(t, r.Errors, 1)
assert.Empty(t, r.Warnings)
r.AddWarnings(errors.New("one Warning"))
assert.Len(t, r.Errors, 1)
assert.Len(t, r.Warnings, 1)
}
func TestResult_Merge(t *testing.T) {
r := Result{}
r.AddErrors(errors.New("one Error"))
r.AddWarnings(errors.New("one Warning"))
r.Inc()
assert.Len(t, r.Errors, 1)
assert.Len(t, r.Warnings, 1)
assert.Equal(t, 1, r.MatchCount)
// Merge with same
r2 := Result{}
r2.AddErrors(errors.New("one Error"))
r2.AddWarnings(errors.New("one Warning"))
r2.Inc()
r.Merge(&r2)
assert.Len(t, r.Errors, 1)
assert.Len(t, r.Warnings, 1)
assert.Equal(t, 2, r.MatchCount)
// Merge with new
r3 := Result{}
r3.AddErrors(errors.New("new Error"))
r3.AddWarnings(errors.New("new Warning"))
r3.Inc()
r.Merge(&r3)
assert.Len(t, r.Errors, 2)
assert.Len(t, r.Warnings, 2)
assert.Equal(t, 3, r.MatchCount)
}
func errorFixture() (Result, Result, Result) {
r := Result{}
r.AddErrors(errors.New("one Error"))
r.AddWarnings(errors.New("one Warning"))
r.Inc()
// same
r2 := Result{}
r2.AddErrors(errors.New("one Error"))
r2.AddWarnings(errors.New("one Warning"))
r2.Inc()
// new
r3 := Result{}
r3.AddErrors(errors.New("new Error"))
r3.AddWarnings(errors.New("new Warning"))
r3.Inc()
return r, r2, r3
}
func TestResult_MergeAsErrors(t *testing.T) {
r, r2, r3 := errorFixture()
assert.Len(t, r.Errors, 1)
assert.Len(t, r.Warnings, 1)
assert.Equal(t, 1, r.MatchCount)
r.MergeAsErrors(&r2, &r3)
assert.Len(t, r.Errors, 4) // One Warning added to Errors
assert.Len(t, r.Warnings, 1)
assert.Equal(t, 3, r.MatchCount)
}
func TestResult_MergeAsWarnings(t *testing.T) {
r, r2, r3 := errorFixture()
assert.Len(t, r.Errors, 1)
assert.Len(t, r.Warnings, 1)
assert.Equal(t, 1, r.MatchCount)
r.MergeAsWarnings(&r2, &r3)
assert.Len(t, r.Errors, 1) // One Warning added to Errors
assert.Len(t, r.Warnings, 4)
assert.Equal(t, 3, r.MatchCount)
}
func TestResult_IsValid(t *testing.T) {
r := Result{}
assert.True(t, r.IsValid())
assert.False(t, r.HasErrors())
r.AddWarnings(errors.New("one Warning"))
assert.True(t, r.IsValid())
assert.False(t, r.HasErrors())
r.AddErrors(errors.New("one Error"))
assert.False(t, r.IsValid())
assert.True(t, r.HasErrors())
}
func TestResult_HasWarnings(t *testing.T) {
r := Result{}
assert.False(t, r.HasWarnings())
r.AddErrors(errors.New("one Error"))
assert.False(t, r.HasWarnings())
r.AddWarnings(errors.New("one Warning"))
assert.True(t, r.HasWarnings())
}
func TestResult_HasErrorsOrWarnings(t *testing.T) {
r := Result{}
r2 := Result{}
assert.False(t, r.HasErrorsOrWarnings())
r.AddErrors(errors.New("one Error"))
assert.True(t, r.HasErrorsOrWarnings())
r2.AddWarnings(errors.New("one Warning"))
assert.True(t, r2.HasErrorsOrWarnings())
r.Merge(&r2)
assert.True(t, r.HasErrorsOrWarnings())
}
func TestResult_keepRelevantErrors(t *testing.T) {
r := Result{}
r.AddErrors(errors.New("one Error"))
r.AddErrors(errors.New("IMPORTANT!Another Error"))
r.AddWarnings(errors.New("one warning"))
r.AddWarnings(errors.New("IMPORTANT!Another warning"))
assert.Len(t, r.keepRelevantErrors().Errors, 1)
assert.Len(t, r.keepRelevantErrors().Warnings, 1)
}
func TestResult_AsError(t *testing.T) {
r := Result{}
require.NoError(t, r.AsError())
r.AddErrors(errors.New("one Error"))
r.AddErrors(errors.New("additional Error"))
res := r.AsError()
require.Error(t, res)
assert.Contains(t, res.Error(), "validation failure list:") // Expected from pkg errors
assert.Contains(t, res.Error(), "one Error") // Expected from pkg errors
assert.Contains(t, res.Error(), "additional Error") // Expected from pkg errors
}
// Test methods which suppport a call on a nil instance
func TestResult_NilInstance(t *testing.T) {
var r *Result
assert.True(t, r.IsValid())
assert.False(t, r.HasErrors())
assert.False(t, r.HasWarnings())
assert.False(t, r.HasErrorsOrWarnings())
}