2002-07-08 23:54:28 +02:00
|
|
|
-- needs Alias from /home/c/diego/tec/luasocket/test to
|
2004-01-16 08:06:31 +01:00
|
|
|
-- "/luasocket-test" and "/luasocket-test/"
|
2002-07-08 23:54:28 +02:00
|
|
|
-- needs ScriptAlias from /home/c/diego/tec/luasocket/test/cgi
|
2004-01-16 08:06:31 +01:00
|
|
|
-- to "/luasocket-test-cgi" and "/luasocket-test-cgi/"
|
|
|
|
-- needs "AllowOverride AuthConfig" on /home/c/diego/tec/luasocket/test/auth
|
2004-05-28 08:16:43 +02:00
|
|
|
|
|
|
|
require("luasocket")
|
|
|
|
require("http")
|
|
|
|
|
2004-03-22 05:15:03 +01:00
|
|
|
dofile("testsupport.lua")
|
2004-01-19 01:24:41 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
local host, proxy, request, response, index_file
|
|
|
|
local ignore, expect, index, prefix, cgiprefix, index_crlf
|
2004-01-19 01:24:41 +01:00
|
|
|
|
2004-03-21 08:50:15 +01:00
|
|
|
socket.http.TIMEOUT = 10
|
2004-01-19 19:22:51 +01:00
|
|
|
|
2004-01-19 01:24:41 +01:00
|
|
|
local t = socket.time()
|
|
|
|
|
2004-03-16 07:42:53 +01:00
|
|
|
host = host or "diego.student.princeton.edu"
|
2004-01-19 19:22:51 +01:00
|
|
|
proxy = proxy or "http://localhost:3128"
|
2004-01-19 01:24:41 +01:00
|
|
|
prefix = prefix or "/luasocket-test"
|
|
|
|
cgiprefix = cgiprefix or "/luasocket-test-cgi"
|
2004-01-21 02:09:50 +01:00
|
|
|
index_file = "test/index.html"
|
2004-01-19 01:24:41 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
-- read index with CRLF convention
|
|
|
|
index = readfile(index_file)
|
2004-01-19 01:24:41 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
local check_result = function(response, expect, ignore)
|
2001-09-25 23:34:43 +02:00
|
|
|
for i,v in response do
|
|
|
|
if not ignore[i] then
|
2004-01-16 08:06:31 +01:00
|
|
|
if v ~= expect[i] then
|
2004-03-21 08:50:15 +01:00
|
|
|
local f = io.open("err", "w")
|
|
|
|
f:write(tostring(v), "\n\n versus\n\n", tostring(expect[i]))
|
|
|
|
f:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
fail(i .. " differs!")
|
|
|
|
end
|
2001-09-25 23:34:43 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
for i,v in expect do
|
|
|
|
if not ignore[i] then
|
2004-01-16 08:06:31 +01:00
|
|
|
if v ~= response[i] then
|
2004-03-21 08:50:15 +01:00
|
|
|
local f = io.open("err", "w")
|
|
|
|
f:write(tostring(response[i]), "\n\n versus\n\n", tostring(v))
|
2004-01-21 02:09:50 +01:00
|
|
|
v = string.sub(type(v) == "string" and v or "", 1, 70)
|
2004-03-21 08:50:15 +01:00
|
|
|
f:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
fail(i .. " differs!")
|
|
|
|
end
|
2001-09-25 23:34:43 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
print("ok")
|
|
|
|
end
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
local check_request = function(request, expect, ignore)
|
2004-03-21 08:50:15 +01:00
|
|
|
local t
|
|
|
|
if not request.sink then
|
|
|
|
request.sink, t = ltn12.sink.table(t)
|
|
|
|
end
|
|
|
|
request.source = request.source or
|
|
|
|
(request.body and ltn12.source.string(request.body))
|
2004-01-21 02:09:50 +01:00
|
|
|
local response = socket.http.request(request)
|
2004-03-21 08:50:15 +01:00
|
|
|
if t and table.getn(t) > 0 then response.body = table.concat(t) end
|
2004-01-21 02:09:50 +01:00
|
|
|
check_result(response, expect, ignore)
|
|
|
|
end
|
|
|
|
|
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing request uri correctness: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
local forth = cgiprefix .. "/request-uri?" .. "this+is+the+query+string"
|
2004-01-16 08:06:31 +01:00
|
|
|
local back, h, c, e = socket.http.get("http://" .. host .. forth)
|
2004-01-19 19:22:51 +01:00
|
|
|
if not back then fail(e) end
|
2004-01-19 01:24:41 +01:00
|
|
|
back = socket.url.parse(back)
|
|
|
|
if similar(back.query, "this+is+the+query+string") then print("ok")
|
2004-03-16 07:42:53 +01:00
|
|
|
else fail(back.query) end
|
2001-01-25 22:59:39 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing query string correctness: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
forth = "this+is+the+query+string"
|
2004-01-21 02:09:50 +01:00
|
|
|
back = socket.http.get("http://" .. host .. cgiprefix ..
|
|
|
|
"/query-string?" .. forth)
|
2001-09-25 23:34:43 +02:00
|
|
|
if similar(back, forth) then print("ok")
|
|
|
|
else fail("failed!") end
|
2001-01-25 22:59:39 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing document retrieval: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. prefix .. "/index.html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-01-19 01:24:41 +01:00
|
|
|
io.write("testing redirect loop: ")
|
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. cgiprefix .. "/redirect-loop"
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 302
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1,
|
|
|
|
body = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
2004-01-16 08:06:31 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
io.write("testing post method: ")
|
|
|
|
-- wanted to test chunked post, but apache doesn't support it...
|
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. cgiprefix .. "/cat",
|
|
|
|
method = "POST",
|
|
|
|
body = index,
|
|
|
|
-- remove content-length header to send chunked body
|
|
|
|
headers = { ["content-length"] = string.len(index) }
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-01-19 01:24:41 +01:00
|
|
|
io.write("testing proxy with post method: ")
|
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. cgiprefix .. "/cat",
|
|
|
|
method = "POST",
|
|
|
|
body = index,
|
|
|
|
headers = { ["content-length"] = string.len(index) },
|
2004-01-19 19:22:51 +01:00
|
|
|
proxy= proxy
|
2004-01-19 01:24:41 +01:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
io.write("testing simple post function: ")
|
2004-01-19 01:24:41 +01:00
|
|
|
back = socket.http.post("http://" .. host .. cgiprefix .. "/cat", index)
|
2004-03-22 05:15:03 +01:00
|
|
|
assert(back == index)
|
2004-01-16 08:06:31 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-03-16 07:42:53 +01:00
|
|
|
io.write("testing ltn12.(sink|source).file: ")
|
2004-01-21 02:09:50 +01:00
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. cgiprefix .. "/cat",
|
|
|
|
method = "POST",
|
2004-03-16 07:42:53 +01:00
|
|
|
source = ltn12.source.file(io.open(index_file, "r")),
|
|
|
|
sink = ltn12.sink.file(io.open(index_file .. "-back", "w")),
|
2004-01-21 02:09:50 +01:00
|
|
|
headers = { ["content-length"] = string.len(index) }
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
2004-03-21 08:50:15 +01:00
|
|
|
check_request(request, expect, ignore)
|
2004-01-21 02:09:50 +01:00
|
|
|
back = readfile(index_file .. "-back")
|
2004-03-22 05:15:03 +01:00
|
|
|
assert(back == index)
|
2004-01-21 02:09:50 +01:00
|
|
|
os.remove(index_file .. "-back")
|
|
|
|
|
|
|
|
------------------------------------------------------------------------
|
2004-03-16 07:42:53 +01:00
|
|
|
io.write("testing ltn12.(sink|source).chain and mime.(encode|decode): ")
|
2004-01-21 02:09:50 +01:00
|
|
|
|
|
|
|
local function b64length(len)
|
|
|
|
local a = math.ceil(len/3)*4
|
|
|
|
local l = math.ceil(a/76)
|
|
|
|
return a + l*2
|
|
|
|
end
|
|
|
|
|
2004-03-16 07:42:53 +01:00
|
|
|
local source = ltn12.source.chain(
|
|
|
|
ltn12.source.file(io.open(index_file, "r")),
|
|
|
|
ltn12.filter.chain(
|
|
|
|
mime.encode("base64"),
|
|
|
|
mime.wrap("base64")
|
2004-01-21 02:09:50 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2004-03-16 07:42:53 +01:00
|
|
|
local sink = ltn12.sink.chain(
|
|
|
|
mime.decode("base64"),
|
|
|
|
ltn12.sink.file(io.open(index_file .. "-back", "w"))
|
2004-01-21 02:09:50 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. cgiprefix .. "/cat",
|
|
|
|
method = "POST",
|
2004-03-16 07:42:53 +01:00
|
|
|
source = source,
|
|
|
|
sink = sink,
|
2004-01-21 02:09:50 +01:00
|
|
|
headers = { ["content-length"] = b64length(string.len(index)) }
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
body_cb = 1,
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
2004-03-21 08:50:15 +01:00
|
|
|
check_request(request, expect, ignore)
|
2004-01-21 02:09:50 +01:00
|
|
|
back = readfile(index_file .. "-back")
|
2004-03-22 05:15:03 +01:00
|
|
|
assert(back == index)
|
2004-01-21 02:09:50 +01:00
|
|
|
os.remove(index_file .. "-back")
|
|
|
|
|
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing http redirection: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. prefix
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2004-01-19 01:24:41 +01:00
|
|
|
io.write("testing proxy with redirection: ")
|
|
|
|
request = {
|
|
|
|
url = "http://" .. host .. prefix,
|
2004-01-19 19:22:51 +01:00
|
|
|
proxy = proxy
|
2004-01-19 01:24:41 +01:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing automatic auth failure: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://really:wrong@" .. host .. prefix .. "/auth/index.html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 401
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
body = 1,
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing http redirection failure: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. prefix,
|
2004-01-19 01:24:41 +01:00
|
|
|
redirect = false
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 301
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
body = 1,
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing host not found: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
|
|
|
url = "http://wronghost/does/not/exist"
|
|
|
|
}
|
2002-12-03 08:20:34 +01:00
|
|
|
local c, e = socket.connect("wronghost", 80)
|
2001-09-25 23:34:43 +02:00
|
|
|
expect = {
|
|
|
|
error = e
|
|
|
|
}
|
|
|
|
ignore = {}
|
|
|
|
check_request(request, expect, ignore)
|
2001-01-25 22:59:39 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing invalid url: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = host .. prefix
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
2002-12-03 08:20:34 +01:00
|
|
|
local c, e = socket.connect("", 80)
|
2001-09-25 23:34:43 +02:00
|
|
|
expect = {
|
|
|
|
error = e
|
|
|
|
}
|
|
|
|
ignore = {}
|
|
|
|
check_request(request, expect, ignore)
|
2001-01-25 22:59:39 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing document not found: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. "/wrongdocument.html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 404
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
body = 1,
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing auth failure: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. prefix .. "/auth/index.html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 401
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
body = 1,
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing manual basic auth: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. prefix .. "/auth/index.html",
|
2001-09-25 23:34:43 +02:00
|
|
|
headers = {
|
2004-03-16 07:42:53 +01:00
|
|
|
authorization = "Basic " .. (mime.b64("luasocket:password"))
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 200,
|
|
|
|
body = index
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing automatic basic auth: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://luasocket:password@" .. host .. prefix .. "/auth/index.html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 200,
|
|
|
|
body = index
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing auth info overriding: ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://really:wrong@" .. host .. prefix .. "/auth/index.html",
|
2001-09-25 23:34:43 +02:00
|
|
|
user = "luasocket",
|
|
|
|
password = "password"
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
code = 200,
|
|
|
|
body = index
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing cgi output retrieval (probably chunked...): ")
|
2001-09-25 23:34:43 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "http://" .. host .. cgiprefix .. "/cat-index-html"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
body = index,
|
|
|
|
code = 200
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
status = 1,
|
|
|
|
headers = 1
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing wrong scheme: ")
|
2001-09-26 22:29:18 +02:00
|
|
|
request = {
|
2003-03-28 23:41:26 +01:00
|
|
|
url = "wrong://" .. host .. cgiprefix .. "/cat",
|
2001-09-26 22:29:18 +02:00
|
|
|
method = "GET"
|
|
|
|
}
|
|
|
|
expect = {
|
|
|
|
error = "unknown scheme 'wrong'"
|
|
|
|
}
|
|
|
|
ignore = {
|
|
|
|
}
|
|
|
|
check_request(request, expect, ignore)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2001-09-25 23:34:43 +02:00
|
|
|
local body
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing simple get function: ")
|
2003-03-28 23:41:26 +01:00
|
|
|
body = socket.http.get("http://" .. host .. prefix .. "/index.html")
|
2004-03-22 05:15:03 +01:00
|
|
|
assert(body == index)
|
2004-03-26 07:05:20 +01:00
|
|
|
print("ok")
|
2001-09-25 23:34:43 +02:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2002-12-03 08:20:34 +01:00
|
|
|
io.write("testing HEAD method: ")
|
2004-01-18 01:04:20 +01:00
|
|
|
socket.http.TIMEOUT = 1
|
2003-03-20 01:24:44 +01:00
|
|
|
response = socket.http.request {
|
2001-09-25 23:34:43 +02:00
|
|
|
method = "HEAD",
|
2004-01-18 01:04:20 +01:00
|
|
|
url = "http://www.cs.princeton.edu/~diego/"
|
2001-09-25 23:34:43 +02:00
|
|
|
}
|
2004-03-22 05:15:03 +01:00
|
|
|
assert(response and response.headers)
|
2004-03-26 07:05:20 +01:00
|
|
|
print("ok")
|
2001-01-25 22:59:39 +01:00
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
------------------------------------------------------------------------
|
2001-01-25 22:59:39 +01:00
|
|
|
print("passed all tests")
|
2001-06-09 00:40:09 +02:00
|
|
|
|
2003-05-25 03:54:13 +02:00
|
|
|
print(string.format("done in %.2fs", socket.time() - t))
|