updated for luasocket 1.4
This commit is contained in:
parent
b319e6a1e8
commit
d36460a249
2 changed files with 402 additions and 91 deletions
137
test/ftptest.lua
137
test/ftptest.lua
|
@ -1,34 +1,121 @@
|
|||
function mysetglobal (varname, oldvalue, newvalue)
|
||||
print("changing " .. varname)
|
||||
%rawset(%globals(), varname, newvalue)
|
||||
end
|
||||
function mygetglobal (varname, newvalue)
|
||||
print("checking " .. varname)
|
||||
return %rawget(%globals(), varname)
|
||||
end
|
||||
settagmethod(tag(nil), "setglobal", mysetglobal)
|
||||
settagmethod(tag(nil), "getglobal", mygetglobal)
|
||||
|
||||
assert(dofile("../lua/ftp.lua"))
|
||||
assert(dofile("../lua/buffer.lua"))
|
||||
assert(dofile("auxiliar.lua"))
|
||||
assert(dofile("../lua/url.lua"))
|
||||
assert(dofile("../lua/concat.lua"))
|
||||
assert(dofile("../lua/code.lua"))
|
||||
|
||||
pdir = "/home/i/diego/public/html/luasocket/test/"
|
||||
ldir = "/home/luasocket/"
|
||||
adir = "/home/ftp/test/"
|
||||
local similar = function(s1, s2)
|
||||
return strlower(gsub(s1, "%s", "")) == strlower(gsub(s2, "%s", ""))
|
||||
end
|
||||
|
||||
-- needs an accound luasocket:password
|
||||
-- and a copy of /home/i/diego/public/html/luasocket/test in ~ftp/test
|
||||
local capture = function(cmd)
|
||||
readfrom("| " .. cmd)
|
||||
local s = read("*a")
|
||||
readfrom()
|
||||
return s
|
||||
end
|
||||
|
||||
print("testing authenticated upload")
|
||||
bf = readfile(pdir .. "index.html")
|
||||
e = ftp_put("ftp://luasocket:password@localhost/index.html", bf, "b")
|
||||
assert(not e, e)
|
||||
assert(compare(ldir .. "index.html", bf), "files differ")
|
||||
remove(ldir .. "index.html")
|
||||
local readfile = function(name)
|
||||
local f = readfrom(name)
|
||||
if not f then return nil end
|
||||
local s = read("*a")
|
||||
readfrom()
|
||||
return s
|
||||
end
|
||||
|
||||
print("testing authenticated download")
|
||||
f, e = ftp_get("ftp://luasocket:password@localhost/test/index.html", "b")
|
||||
assert(f, e)
|
||||
assert(compare(pdir .. "index.html", f), "files differ")
|
||||
local check = function(v, e, o)
|
||||
e = e or "failed!"
|
||||
o = o or "ok"
|
||||
if v then print(o)
|
||||
else print(e) exit() end
|
||||
end
|
||||
|
||||
print("testing anonymous download")
|
||||
f, e = ftp_get("ftp://localhost/test/index.html", "b")
|
||||
assert(f, e)
|
||||
assert(compare(adir .. "index.html", f), "files differ")
|
||||
-- needs an account luasocket:password
|
||||
-- and some directories and files in ~ftp
|
||||
|
||||
print("testing directory listing")
|
||||
f, e = ftp_get("ftp://localhost/test/")
|
||||
assert(f, e)
|
||||
assert(f == "index.html\r\n", "files differ")
|
||||
local index, err, saved, back, expected
|
||||
|
||||
local t = _time()
|
||||
|
||||
index = readfile("index.html")
|
||||
|
||||
write("testing file upload: ")
|
||||
remove("/home/ftp/dir1/index.up.html")
|
||||
err = FTP.put("ftp://localhost/dir1/index.up.html;type=i", index)
|
||||
saved = readfile("/home/ftp/dir1/index.up.html")
|
||||
check(not err and saved == index, err)
|
||||
|
||||
write("testing file download: ")
|
||||
back, err = FTP.get("ftp://localhost/dir1/index.up.html;type=i")
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing no directory changes: ")
|
||||
back, err = FTP.get("ftp://localhost/index.html;type=i")
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing multiple directory changes: ")
|
||||
back, err = FTP.get("ftp://localhost/dir1/dir2/dir3/dir4/dir5/dir6/index.html;type=i")
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing authenticated upload: ")
|
||||
remove("/home/luasocket/index.up.html")
|
||||
err = FTP.put("ftp://luasocket:password@localhost/index.up.html;type=i", index)
|
||||
saved = readfile("/home/luasocket/index.up.html")
|
||||
check(not err and saved == index, err)
|
||||
|
||||
write("testing authenticated download: ")
|
||||
back, err = FTP.get("ftp://luasocket:password@localhost/index.up.html;type=i")
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing weird-character translation: ")
|
||||
back, err = FTP.get("ftp://luasocket:password@localhost/%2fhome/ftp/dir1/index.html;type=i")
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing parameter overriding: ")
|
||||
back, err = FTP.get {
|
||||
url = "//stupid:mistake@localhost/dir1/index.html",
|
||||
user = "luasocket",
|
||||
password = "password",
|
||||
type = "i"
|
||||
}
|
||||
check(not err and back == index, err)
|
||||
|
||||
write("testing invalid url: ")
|
||||
back, err = FTP.get("localhost/dir1/index.html;type=i")
|
||||
local c, e = connect("", 21)
|
||||
check(not back and err == e, err)
|
||||
|
||||
write("testing directory listing: ")
|
||||
expected = capture("ls -F /home/ftp/dir1 | grep -v /")
|
||||
back, err = FTP.get("ftp://localhost/dir1;type=d")
|
||||
check(similar(back, expected))
|
||||
|
||||
write("testing home directory listing: ")
|
||||
expected = capture("ls -F /home/ftp | grep -v /")
|
||||
back, err = FTP.get("ftp://localhost/")
|
||||
check(back and similar(back, expected), nil, err)
|
||||
|
||||
write("testing upload denial: ")
|
||||
err = FTP.put("ftp://localhost/index.up.html;type=a", index)
|
||||
check(err, err)
|
||||
|
||||
write("testing authentication failure: ")
|
||||
err = FTP.put("ftp://luasocket:wrong@localhost/index.html;type=a", index)
|
||||
check(err, err)
|
||||
|
||||
write("testing wrong file: ")
|
||||
back, err = FTP.get("ftp://localhost/index.wrong.html;type=a")
|
||||
check(err, err)
|
||||
|
||||
print("passed all tests")
|
||||
print(format("done in %.2fs", _time() - t))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue