-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathtest_form.lua
490 lines (412 loc) · 14.6 KB
/
test_form.lua
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
local lunit, RUN = lunit do
RUN = lunit and function()end or function ()
local res = lunit.run()
if res.errors + res.failed > 0 then
os.exit(-1)
end
return os.exit(0)
end
lunit = require "lunit"
end
local TEST_CASE = assert(lunit.TEST_CASE)
local skip = lunit.skip or function() end
local utils = require "utils"
-- Bug. libcurl 7.56.0 does not add `Content-Type: text/plain`
local text_plain = utils.is_curl_eq(7,56,0) and 'test/plain' or 'text/plain'
local curl = require "lcurl"
local _ENV = TEST_CASE'add_content' do
local post
function setup()
post = curl.form()
end
function teardown()
if post then post:free() end
post = nil
end
local function F(...)
local data = assert_string(post:get())
post:free()
post = nil
return data
end
function test_01()
assert_equal(post, post:add_content('name01', 'value01'))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue01\r\n", data)
assert_match('name="name01"', data)
end
function test_02()
assert_equal(post, post:add_content('name02', 'value02', text_plain))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue02\r\n", data)
assert_match('name="name02"', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_03()
assert_equal(post, post:add_content('name03', 'value03', {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue03\r\n", data)
assert_match('name="name03"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_04()
assert_equal(post, post:add_content('name04', 'value04', text_plain, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue04\r\n", data)
assert_match('name="name04"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_error()
assert_error(function() post:add_content() end)
assert_error(function() post:add_stream(nil) end)
assert_error(function() post:add_stream('name01') end)
end
end
local _ENV = TEST_CASE'add_buffer' do
local post
function setup()
post = curl.form()
end
function teardown()
if post then post:free() end
post = nil
end
function test_01()
assert_equal(post, post:add_buffer('name01', 'file01', 'value01'))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue01\r\n", data)
assert_match('name="name01"', data)
assert_match('filename="file01"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
end
function test_02()
assert_equal(post, post:add_buffer('name02', 'file02', 'value02', text_plain))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue02\r\n", data)
assert_match('name="name02"', data)
assert_match('filename="file02"', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
end
function test_03()
assert_equal(post, post:add_buffer('name03', 'file03', 'value03', {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue03\r\n", data)
assert_match('name="name03"', data)
assert_match('filename="file03"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_04()
assert_equal(post, post:add_buffer('name04', 'file04', 'value04', text_plain, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue04\r\n", data)
assert_match('name="name04"', data)
assert_match('filename="file04"', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_05()
assert_equal(post, post:add_buffer('name05', 'file05', 'value05', nil, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
assert_match("\r\n\r\nvalue05\r\n", data)
assert_match('name="name05"', data)
assert_match('filename="file05"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_error()
assert_error(function() post:add_buffer() end)
assert_error(function() post:add_buffer(nil) end)
assert_error(function() post:add_buffer('name01') end)
assert_error(function() post:add_buffer('name02', 'file02') end)
assert_error(function() post:add_buffer('name03', 'file03', nil) end)
assert_error(function() post:add_buffer('name04', nil, 'value04') end)
end
end
local _ENV = TEST_CASE'add_stream' do
local post
local dummy = function()end
local stream = function() return 128, dummy end
function setup()
post = curl.form()
end
function teardown()
if post then post:free() end
post = nil
end
function test_01()
assert_equal(post, post:add_stream('name01', stream()))
local data = assert_string(post:get())
assert_match('name="name01"', data)
assert_not_match('filename', data)
end
function test_02()
assert_equal(post, post:add_stream('name02', 'file02', stream()))
local data = assert_string(post:get())
assert_match('name="name02"', data)
assert_match('filename="file02"', data)
end
function test_03()
assert_equal(post, post:add_stream('name03', 'file03', text_plain, stream()))
local data = assert_string(post:get())
assert_match('name="name03"', data)
assert_match('filename="file03"', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_04()
assert_equal(post, post:add_stream('name04', 'file04', text_plain, {"Content-Encoding: gzip"}, stream()))
local data = assert_string(post:get())
assert_match('name="name04"', data)
assert_match('filename="file04"', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_05()
assert_equal(post, post:add_stream('name05', 'file05', {"Content-Encoding: gzip"}, stream()))
local data = assert_string(post:get())
assert_match('name="name05"', data)
assert_match('filename="file05"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_06()
assert_equal(post, post:add_stream('name06', {"Content-Encoding: gzip"}, stream()))
local data = assert_string(post:get())
assert_match('name="name06"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_07()
assert_equal(post, post:add_stream('name07', 'file07', nil, {"Content-Encoding: gzip"}, stream()))
local data = assert_string(post:get())
assert_match('name="name07"', data)
assert_match('filename="file07"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_08()
assert_equal(post, post:add_stream('name08', nil, nil, {"Content-Encoding: gzip"}, stream()))
local data = assert_string(post:get())
assert_match('name="name08"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_09()
assert_equal(post, post:add_stream('name09', nil, nil, nil, stream()))
local data = assert_string(post:get())
assert_match('name="name09"', data)
end
function test_error()
assert_error(function() post:add_stream('name01', dummy) end)
assert_error(function() post:add_stream('name02', 10) end)
assert_error(function() post:add_stream('name03', "10", dummy) end)
end
function test_add_several()
assert_equal(post, post:add_stream('name01', stream()))
assert_equal(post, post:add_stream('name02', 'file02', stream()))
local data = assert_string(post:get())
assert_match('name="name01"', data)
assert_match('name="name02"', data)
assert_match('filename="file02"', data)
end
end
local _ENV = TEST_CASE'add_file' do
local post
local form_file = "file.form"
local form_path = "./" .. form_file
local form_data = "some values"
local function mkfile(P, data)
local f, e = io.open(P, "w+b")
if not f then return nil, err end
if data then assert(f:write(data)) end
f:close()
return P
end
local function check_form(data)
assert_match('name="nameXX"', data)
assert_match("\r\n\r\n" .. form_data .."\r\n", data)
end
function setup()
post = curl.form()
assert(mkfile(form_path, form_data))
end
function teardown()
if post then post:free() end
post = nil
os.remove(form_file)
end
function test_01()
assert_equal(post, post:add_file('nameXX', form_path))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
end
function test_02()
assert_equal(post, post:add_file('nameXX', form_path, text_plain))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_03()
assert_equal(post, post:add_file('nameXX', form_path, text_plain, 'renamedfile'))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. 'renamedfile' .. '"', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_04()
assert_equal(post, post:add_file('nameXX', form_path, nil, 'renamedfile'))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. 'renamedfile' .. '"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
end
function test_05()
assert_equal(post, post:add_file('nameXX', form_path, text_plain, 'renamedfile', {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. 'renamedfile' .. '"', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_05()
assert_equal(post, post:add_file('nameXX', form_path, text_plain, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_not_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_06()
assert_equal(post, post:add_file('nameXX', form_path, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_07()
assert_equal(post, post:add_file('nameXX', form_path, nil, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_08()
assert_equal(post, post:add_file('nameXX', form_path, nil, nil, {"Content-Encoding: gzip"}))
local data = assert_string(post:get())
check_form(data)
assert_match('filename="' .. form_file .. '"', data)
assert_match('Content%-Type: application/octet%-stream\r\n', data)
assert_match('Content%-Encoding: gzip\r\n', data)
end
function test_error()
assert_error(function()
assert_equal(post, post:add_file('nameXX', text_plain, form_path))
post:get()
end)
end
end
local _ENV = TEST_CASE'get' do
local post
function setup()
post = curl.form()
end
function teardown()
if post then post:free() end
post = nil
end
local function check_form(data)
assert_match("\r\n\r\nvalueXX\r\n", data)
assert_match('name="nameXX"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_writer_01()
local t = {}
local function writer(str, ...)
assert_equal(0, select("#", ...))
t[#t+1] = str
end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
assert_equal(post, post:get(writer))
check_form(table.concat(t))
end
function test_writer_02()
local t = {}
local function writer(str, ...)
assert_equal(0, select("#", ...))
t[#t+1] = str
return true
end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
assert_equal(post, post:get(writer))
check_form(table.concat(t))
end
function test_writer_03()
local t = {}
local function writer(str, ...)
assert_equal(0, select("#", ...))
t[#t+1] = str
return #str
end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
assert_equal(post, post:get(writer))
check_form(table.concat(t))
end
function test_writer_context()
local t = {}
local function writer(T, str, ...)
assert_equal(t, T)
assert_equal(0, select("#", ...))
T[#T+1] = str
end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
assert_equal(post, post:get(writer, t))
local data = table.concat(t)
assert_match("\r\n\r\nvalueXX\r\n", data)
assert_match('name="nameXX"', data)
assert_match('Content%-Encoding: gzip\r\n', data)
assert_match('Content%-Type: ' .. text_plain .. '\r\n', data)
end
function test_abort_01()
local err = {}
local function writer() return nil, err end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
local _, e = assert_nil(post:get(writer))
assert_equal(err, e)
end
function test_abort_02()
local function writer() return 0 end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
local _, e = assert_nil(post:get(writer))
assert_nil(e)
end
function test_abort_03()
local function writer() return nil end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
local _, e = assert_nil(post:get(writer))
assert_nil(e)
end
function test_abort_04()
local function writer() return false end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
local _, e = assert_nil(post:get(writer))
assert_nil(e)
end
function test_error()
local err = {}
local function writer() error("WRITEERROR") end
assert_equal(post, post:add_content('nameXX', 'valueXX', text_plain, {"Content-Encoding: gzip"}))
assert_error_match("WRITEERROR", function()
post:get(writer)
end)
end
end
RUN()