lune/tests/net/serve.luau

22 lines
531 B
Lua

local RESPONSE = "Hello, lune!"
task.spawn(function()
net.serve(8080, function(request)
-- info("Request:", request)
-- info("Responding with", RESPONSE)
assert(request.path == "/some/path")
assert(request.query.key == "param2")
return RESPONSE
end)
end)
local response = net.request("http://127.0.0.1:8080/some/path?key=param1&key=param2").body
assert(response == RESPONSE, "Invalid response from server")
task.delay(1, function()
process.exit(0)
end)
task.delay(2, function()
error("Process did not exit")
end)