Testes reformulados.

This commit is contained in:
Diego Nehab 2002-07-08 21:56:01 +00:00
parent af181244d9
commit 7b99195649
2 changed files with 465 additions and 520 deletions

View file

@ -1,96 +1,24 @@
-----------------------------------------------------------------------------
-- LuaSocket automated test module
-- testsrvr.lua
-- This is the server module. It's completely controled by the client module
-- by the use of a control connection.
-----------------------------------------------------------------------------
HOST = HOST or "localhost"
PORT = PORT or "8080"
-----------------------------------------------------------------------------
-- Read command definitions
-----------------------------------------------------------------------------
HOST = HOST or "*"
assert(dofile("testcmd.lua"))
test_debug_mode()
-----------------------------------------------------------------------------
-- Start control connection
-----------------------------------------------------------------------------
server, err = bind(HOST, PORT)
if not server then
fail(err)
exit(1)
end
print("server: waiting for control connection...")
control = server:accept()
print("server: control connection stablished!")
-----------------------------------------------------------------------------
-- Executes a command, detecting any possible failures
-- Input
-- cmd: command to be executed
-- par: command parameters, if needed
-----------------------------------------------------------------------------
function execute_command(cmd, par)
if cmd == CONNECT then
print("server: waiting for data connection...")
data = server:accept()
data:timeout(10)
if not data then
fail("server: unable to start data connection!")
else
print("server: data connection stablished!")
end
elseif cmd == CLOSE then
print("server: closing connection with client...")
if data then
data:close()
data = nil
end
elseif cmd == ECHO_LINE then
str, err = data:receive()
if err then fail("server: " .. err) end
err = data:send(str, "\n")
if err then fail("server: " .. err) end
elseif cmd == ECHO_BLOCK then
str, err = data:receive(par)
print(format("server: received %d bytes", strlen(str)))
if err then fail("server: " .. err) end
print(format("server: sending %d bytes", strlen(str)))
err = data:send(str)
if err then fail("server: " .. err) end
elseif cmd == RECEIVE_BLOCK then
str, err = data:receive(par)
print(format("server: received %d bytes", strlen(str)))
elseif cmd == SEND_BLOCK then
print(format("server: sending %d bytes", strlen(str)))
err = data:send(str)
elseif cmd == ECHO_TIMEOUT then
str, err = data:receive(par)
if err then fail("server: " .. err) end
err = data:send(str)
if err then fail("server: " .. err) end
elseif cmd == COMMAND then
cmd, par = get_command()
send_command(cmd, par)
elseif cmd == EXIT then
print("server: exiting...")
exit(0)
elseif cmd == SYNC then
print("server: synchronizing...")
send_command(SYNC)
elseif cmd == SLEEP then
print("server: sleeping for " .. par .. " seconds...")
_sleep(par)
print("server: woke up!")
end
end
-----------------------------------------------------------------------------
-- Loop forever, accepting and executing commands
-----------------------------------------------------------------------------
server, error = bind(HOST, PORT)
if not server then print("server: " .. tostring(error)) exit() end
while 1 do
cmd, par = get_command()
if not cmd then fail("server: " .. par) end
print_command(cmd, par)
execute_command(cmd, par)
print("server: waiting for client connection...");
control = server:accept()
while 1 do
command, error = control:receive()
if error then
control:close()
print("server: closing connection...")
break
end
error = control:send("\n")
if error then
control:close()
print("server: closing connection...")
break
end
dostring(command)
end
end