-
Notifications
You must be signed in to change notification settings - Fork 0
/
generators_test.go
217 lines (166 loc) · 6.4 KB
/
generators_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
package meh
import (
"errors"
"github.com/stretchr/testify/suite"
"testing"
)
// NewInternalErrFromErrSuite tests NewInternalErrFromErr.
type NewInternalErrFromErrSuite struct {
suite.Suite
}
func (suite *NewInternalErrFromErrSuite) TestOK() {
originalErr := errors.New("yo")
message := "Hello World!"
details := Details{"hello": "world"}
err := NewInternalErrFromErr(originalErr, message, details).(*Error)
suite.Equal(ErrInternal, err.Code, "should have set correct code")
suite.Equal(originalErr, err.WrappedErr, "should have applied the original error")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewInternalErrFromErr(t *testing.T) {
suite.Run(t, new(NewInternalErrFromErrSuite))
}
// NewInternalErrSuite tests NewInternalErr.
type NewInternalErrSuite struct {
suite.Suite
}
func (suite *NewInternalErrSuite) TestOK() {
message := "Hello World!"
details := Details{"hello": "world"}
err := NewInternalErr(message, details).(*Error)
suite.Equal(ErrInternal, err.Code, "should have set correct error code")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewInternalErr(t *testing.T) {
suite.Run(t, new(NewInternalErrSuite))
}
// NewBadInputErrFromErrSuite tests NewBadInputErrFromErr.
type NewBadInputErrFromErrSuite struct {
suite.Suite
}
func (suite *NewBadInputErrFromErrSuite) TestOK() {
originalErr := errors.New("yo")
message := "Hello World!"
details := Details{"hello": "world"}
err := NewBadInputErrFromErr(originalErr, message, details).(*Error)
suite.Equal(ErrBadInput, err.Code, "should have set correct error code")
suite.Equal(originalErr, err.WrappedErr, "should have applied the original error")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewBadInputErrFromErr(t *testing.T) {
suite.Run(t, new(NewBadInputErrFromErrSuite))
}
// NewBadInputErrSuite tests NewBadInputErr.
type NewBadInputErrSuite struct {
suite.Suite
}
func (suite *NewBadInputErrSuite) TestOK() {
message := "Hello World!"
details := Details{"hello": "world"}
err := NewBadInputErr(message, details).(*Error)
suite.Equal(ErrBadInput, err.Code, "should have set correct error code")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewBadInputErr(t *testing.T) {
suite.Run(t, new(NewBadInputErrSuite))
}
// NewNotFoundErrSuite tests NewNotFoundErr.
type NewNotFoundErrSuite struct {
suite.Suite
}
func (suite *NewNotFoundErrSuite) TestOK() {
message := "Hello World!"
details := Details{"hello": "world"}
err := NewNotFoundErr(message, details).(*Error)
suite.Equal(ErrNotFound, err.Code, "should have set correct error code")
suite.Equal(message, err.Message, "should not have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewNotFoundErr(t *testing.T) {
suite.Run(t, new(NewNotFoundErrSuite))
}
// NewNotFoundErrFromErrSuite tests NewNotFoundErrFromErr.
type NewNotFoundErrFromErrSuite struct {
suite.Suite
}
func (suite *NewNotFoundErrFromErrSuite) TestOK() {
originalErr := errors.New("yo")
message := "Hello World!"
details := Details{"hello": "world"}
err := NewNotFoundErrFromErr(originalErr, message, details).(*Error)
suite.Equal(ErrNotFound, err.Code, "should have set correct error code")
suite.Equal(originalErr, err.WrappedErr, "should have applied the original error")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewNotFoundErrFromErr(t *testing.T) {
suite.Run(t, new(NewNotFoundErrFromErrSuite))
}
// NewUnauthorizedErrSuite tests NewUnauthorizedErr.
type NewUnauthorizedErrSuite struct {
suite.Suite
}
func (suite *NewUnauthorizedErrSuite) TestOK() {
message := "Hello World!"
details := Details{"hello": "world"}
err := NewUnauthorizedErr(message, details).(*Error)
suite.Equal(ErrUnauthorized, err.Code, "should have set correct error code")
suite.Equal(message, err.Message, "should not have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewUnauthorizedErr(t *testing.T) {
suite.Run(t, new(NewUnauthorizedErrSuite))
}
// NewUnauthorizedErrFromErrSuite tests NewUnauthorizedErrFromErr.
type NewUnauthorizedErrFromErrSuite struct {
suite.Suite
}
func (suite *NewUnauthorizedErrFromErrSuite) TestOK() {
originalErr := errors.New("yo")
message := "Hello World!"
details := Details{"hello": "world"}
err := NewUnauthorizedErrFromErr(originalErr, message, details).(*Error)
suite.Equal(ErrUnauthorized, err.Code, "should have set correct error code")
suite.Equal(originalErr, err.WrappedErr, "should have applied the original error")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewUnauthorizedErrFromErr(t *testing.T) {
suite.Run(t, new(NewUnauthorizedErrFromErrSuite))
}
// NewForbiddenErrSuite tests NewForbiddenErr.
type NewForbiddenErrSuite struct {
suite.Suite
}
func (suite *NewForbiddenErrSuite) TestOK() {
message := "Hello World!"
details := Details{"hello": "world"}
err := NewForbiddenErr(message, details).(*Error)
suite.Equal(ErrForbidden, err.Code, "should have set correct error code")
suite.Equal(message, err.Message, "should not have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewForbiddenErr(t *testing.T) {
suite.Run(t, new(NewForbiddenErrSuite))
}
// NewForbiddenErrFromErrSuite tests NewForbiddenErrFromErr.
type NewForbiddenErrFromErrSuite struct {
suite.Suite
}
func (suite *NewForbiddenErrFromErrSuite) TestOK() {
originalErr := errors.New("yo")
message := "Hello World!"
details := Details{"hello": "world"}
err := NewForbiddenErrFromErr(originalErr, message, details).(*Error)
suite.Equal(ErrForbidden, err.Code, "should have set correct error code")
suite.Equal(originalErr, err.WrappedErr, "should have applied the original error")
suite.Equal(message, err.Message, "should have applied message")
suite.Equal(details, err.Details, "should have applied details")
}
func TestNewForbiddenErrFromErr(t *testing.T) {
suite.Run(t, new(NewForbiddenErrFromErrSuite))
}