-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest.lua
More file actions
506 lines (456 loc) · 10.1 KB
/
test.lua
File metadata and controls
506 lines (456 loc) · 10.1 KB
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
require("http_server")
-- Configuration ----------------------------------------------------------------
local PORT = 8082
local BASE = "http://127.0.0.1:" .. PORT
-- Test runner ------------------------------------------------------------------
local tests = {}
local results = {passed = 0, failed = 0}
local function check(name, cond, detail)
if cond then
print(string.format("[PASS] %s", name))
results.passed = results.passed + 1
else
print(string.format("[FAIL] %s | %s", name, detail or ""))
results.failed = results.failed + 1
end
end
local function eq(label, expected, actual)
check(label, expected == actual, ("expected %s, got %s"):format(tostring(expected), tostring(actual)))
end
local function add_test(name, fn)
table.insert(tests, {name = name, fn = fn})
end
local function run_tests()
local i = 0
local function next()
i = i + 1
if i > #tests then
print(string.format("\n=== Results: %d passed, %d failed ===", results.passed, results.failed))
return
end
print(string.format("\n[%d/%d] %s", i, #tests, tests[i].name))
tests[i].fn(next)
end
next()
end
-- Server setup
local app = HttpServer.New()
-- Global middleware: flag that it ran
app:use(
"/",
function(req, res)
req.middlewareRan = true
end
)
-- CORS middleware (adds Allow-Origin header; handles OPTIONS)
app:use("/", HttpServer.cors())
-- JSON body-parsing middleware
app:use("/", HttpServer.json())
-- Path-scoped middleware that intercepts and responds (tests early-exit)
app:use(
"/protected",
function(req, res)
res.status(401).send("Unauthorized")
return true
end
)
-- Routes -----------------------------------------------------------------------
app:get(
"/hello",
function(req, res)
res.send("Hello, World!")
end
)
app:post(
"/echo",
function(req, res)
res.send(req.body)
end
)
app:put(
"/resource",
function(req, res)
res.send(req.body)
end
)
app:patch(
"/resource",
function(req, res)
res.send("patched:" .. req.body)
end
)
app:delete(
"/resource",
function(req, res)
res.sendStatus(204)
end
)
app:get(
"/greet/:name",
function(req, res)
res.send("Hello, " .. req.params.name .. "!")
end
)
app:get(
"/greet/:first/:last",
function(req, res)
res.send(req.params.first .. " " .. req.params.last)
end
)
app:get(
"/search",
function(req, res)
res.send(req.query or "")
end
)
app:post(
"/json",
function(req, res)
if type(req.body) == "table" then
res.send(tostring(req.body.key or "no-key"))
else
res.status(400).send("body not parsed")
end
end
)
app:get(
"/teapot",
function(req, res)
res.status(418).send("I'm a teapot")
end
)
app:get(
"/custom-headers",
function(req, res)
res.set("X-Custom", "yes").send("ok")
end
)
app:get(
"/middleware-test",
function(req, res)
res.send(req.middlewareRan and "yes" or "no")
end
)
-- Route that should be blocked by /protected middleware
app:get(
"/protected/secret",
function(req, res)
res.send("secret")
end
)
-- Responds to any HTTP verb
app:all(
"/any",
function(req, res)
res.send(req.method)
end
)
app:listen(PORT)
print("HTTP server listening on port " .. PORT)
-- Test cases ------------------------------------------------------------------
-- 1: Basic GET
add_test(
'GET /hello → 200 "Hello, World!"',
function(next)
HttpClient.Download(
{
Url = BASE .. "/hello",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "Hello, World!", data)
next()
end
}
)
end
)
-- 2: POST body echo
add_test(
"POST /echo → echoes body",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/echo",
Method = "POST",
Data = "ping",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "ping", data)
next()
end
}
)
end
)
-- 3: PUT body echo
add_test(
"PUT /resource → echoes body",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/resource",
Method = "PUT",
Data = "updated",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "updated", data)
next()
end
}
)
end
)
-- 4: PATCH body echo
add_test(
"PATCH /resource → prefixed body",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/resource",
Method = "PATCH",
Data = "fix",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "patched:fix", data)
next()
end
}
)
end
)
-- 5: DELETE → 204
add_test(
"DELETE /resource → 204 No Content",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/resource",
Method = "DELETE",
Data = "",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 204, code)
next()
end
}
)
end
)
-- 6: Route param (single)
add_test(
"GET /greet/:name → uses route param",
function(next)
HttpClient.Download(
{
Url = BASE .. "/greet/Alice",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "Hello, Alice!", data)
next()
end
}
)
end
)
-- 7: Route params (multiple)
add_test(
"GET /greet/:first/:last → uses both route params",
function(next)
HttpClient.Download(
{
Url = BASE .. "/greet/John/Doe",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "John Doe", data)
next()
end
}
)
end
)
-- 8: Query string
add_test(
"GET /search?q=hello → raw query string in req.query",
function(next)
HttpClient.Download(
{
Url = BASE .. "/search?q=hello",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "q=hello", data)
next()
end
}
)
end
)
-- 9: JSON middleware parses body when Content-Type matches
add_test(
"POST /json + application/json → body decoded as table",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/json",
Method = "POST",
Headers = {["Content-Type"] = "application/json"},
Data = '{"key":"value"}',
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "value", data)
next()
end
}
)
end
)
-- 10: JSON middleware skips when Content-Type absent
add_test(
"POST /json without Content-Type → body not parsed",
function(next)
HttpClient.Upload(
{
Url = BASE .. "/json",
Method = "POST",
Data = '{"key":"value"}',
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 400, code)
eq("body", "body not parsed", data)
next()
end
}
)
end
)
-- 11: Custom status code
add_test(
"GET /teapot → 418",
function(next)
HttpClient.Download(
{
Url = BASE .. "/teapot",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 418, code)
next()
end
}
)
end
)
-- 12: Global middleware ran before route handler
add_test(
"GET /middleware-test → global middleware ran",
function(next)
HttpClient.Download(
{
Url = BASE .. "/middleware-test",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("middleware flag", "yes", data)
next()
end
}
)
end
)
-- 13: Path-scoped middleware intercepts before route handler
add_test(
"GET /protected/secret → 401 intercepted by /protected middleware",
function(next)
HttpClient.Download(
{
Url = BASE .. "/protected/secret",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 401, code)
eq("body", "Unauthorized", data)
next()
end
}
)
end
)
-- 14: CORS OPTIONS preflight (HttpClient doesn't support OPTIONS; use raw TcpSocket)
add_test(
"OPTIONS /hello → 204 CORS preflight",
function(next)
local sock = TcpSocket.New()
sock.Connected = function()
sock:Write("OPTIONS /hello HTTP/1.1\r\nHost: 127.0.0.1:" .. PORT .. "\r\nContent-Length: 0\r\n\r\n")
end
sock.Data = function()
local data = sock:Read(sock.BufferLength)
local code = tonumber(data:match("HTTP/%d%.%d (%d+)"))
sock:Disconnect()
eq("status", 204, code)
next()
end
sock.Closed = function()
end
sock:Connect("127.0.0.1", PORT)
end
)
-- 15: app:all matches GET
add_test(
'GET /any → echoes verb "GET"',
function(next)
HttpClient.Download(
{
Url = BASE .. "/any",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "GET", data)
next()
end
}
)
end
)
-- 16: app:all matches POST
add_test(
'POST /any → echoes verb "POST"',
function(next)
HttpClient.Upload(
{
Url = BASE .. "/any",
Method = "POST",
Data = "",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 200, code)
eq("body", "POST", data)
next()
end
}
)
end
)
-- 17: 404 for unknown route
add_test(
"GET /nonexistent → 404 default handler",
function(next)
HttpClient.Download(
{
Url = BASE .. "/nonexistent",
Timeout = 5,
EventHandler = function(_, code, data, err)
eq("status", 404, code)
next()
end
}
)
end
)
-- Kick off after the server socket is ready ------------------------------------
Timer.CallAfter(run_tests, 0.5)