-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain_test.go
312 lines (245 loc) · 6.82 KB
/
main_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
// Testing requires the node package lambda-test
// Download from github link:
package main
import (
"aws-lambda-barcode-generator/lib/osutil"
"encoding/json"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
type lambdaInputTest struct {
Width interface{} `json:"width,omitempty"`
Height interface{} `json:"height,omitempty"`
Message *string `json:"message,omitempty"`
Type *string `json:"type,omitempty"`
}
type lambdaOutput struct {
Response *interface{} `json:"response,omitempty"`
Error *string `json:"errorMessage,omitempty"`
}
// Tests will be called on the compiled binary so ensure we are running the latest version
func TestBuild(t *testing.T) {
assert := assert.New(t)
_, err := osutil.Run("", "go build")
assert.Nil(err, fmt.Sprintf("Build failed: %v", err))
}
func TestMissingHeight(t *testing.T) {
width := 200
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'height' field is missing.")
}
func TestMissingWidth(t *testing.T) {
height := 200
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'width' field is missing.")
}
func TestMissingMessage(t *testing.T) {
height := 200
width := 200
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'message' field is missing.")
}
func TestMissingType(t *testing.T) {
height := 200
width := 200
message := "Test"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'type' field is missing.")
}
func TestInvalidType(t *testing.T) {
height := 200
width := 200
message := "Test"
ctype := "test"
l := lambdaInputTest{
Height: &height,
Width: &width,
Type: &ctype,
Message: &message,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: Invalid barcode type. Type needs to be: 'qr', 'pdf417'.")
}
func TestInvalidHeight(t *testing.T) {
height := "testnotallowed"
width := 200
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Contains(*resp.Error, "400 Bad Request: Invalid Request - cannot marshal JSON input.")
}
func TestInvalidWidth(t *testing.T) {
height := 200
width := "testnotallowed"
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Contains(*resp.Error, "400 Bad Request: Invalid Request - cannot marshal JSON input.")
}
func TestMinimumHeight(t *testing.T) {
height := 149
width := 200
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'height' needs to be a minimum of 150.")
}
func TestMaximumHeight(t *testing.T) {
height := 3001
width := 200
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'height' can be a maximum of 3000.")
}
func TestMinimumWidth(t *testing.T) {
height := 200
width := 149
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'width' needs to be a minimum of 150.")
}
func TestMaximumWidth(t *testing.T) {
height := 200
width := 3001
message := "Test"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: 'width' can be a maximum of 3000.")
}
func TestMaximalMessageLength(t *testing.T) {
height := 200
width := 200
message := ""
ctype := "qr"
for i := 0; i <= 100; i++ {
message += "abcdefgh"
}
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: Your message is too large, it can be a maximum of 600 bytes.")
}
func TestSuccesfulBarcode(t *testing.T) {
height := 200
width := 600
message := "測試這個"
ctype := "qr"
l := lambdaInputTest{
Height: &height,
Width: &width,
Message: &message,
Type: &ctype,
}
runLambda(l, 10)
/*resp, err := runLambda(l, 10)
assert := assert.New(t)
assert.Nil(err, fmt.Sprintf("lambda-test returned an unexpected error: %v", err))
assert.Equal(*resp.Error, "400 Bad Request: Your message is too large, it can be a maximum of 600 bytes.")*/
}
// Helper method, runs lambda-test and passes in the JSON
func runLambda(request lambdaInputTest, timeout int) (*lambdaOutput, error) {
requestJSON, err := json.Marshal(request)
if err != nil {
return nil, err
}
response, err := osutil.Run("", fmt.Sprintf("lambda-test -e %v -t %v", string(requestJSON), timeout))
responseObject := &lambdaOutput{}
if err != nil {
return nil, err
} else {
json.Unmarshal(response, responseObject)
}
return responseObject, nil
}