2010-11-18 16:33:48 +00:00
|
|
|
#!/usr/bin/lua
|
|
|
|
-- a heavy duty test.
|
|
|
|
-- makes thousends of random changes to the source tree
|
|
|
|
require("posix")
|
|
|
|
dofile("tests/testlib.lua")
|
|
|
|
|
2011-01-26 12:02:43 +00:00
|
|
|
cwriteln("****************************************************************");
|
2012-02-17 08:12:01 +00:00
|
|
|
cwriteln(" Testing default.rsyncssh with random data activity");
|
2011-01-26 12:02:43 +00:00
|
|
|
cwriteln("****************************************************************");
|
2012-02-17 08:12:01 +00:00
|
|
|
cwriteln("( this test needs passwordless ssh localhost access )");
|
|
|
|
cwriteln("( for current user )");
|
2011-01-26 11:05:53 +00:00
|
|
|
|
2010-11-30 20:08:20 +00:00
|
|
|
local tdir, srcdir, trgdir = mktemps()
|
2010-11-24 19:21:43 +00:00
|
|
|
|
2012-02-17 08:12:01 +00:00
|
|
|
-- makes some startup data
|
|
|
|
churn(srcdir, 100)
|
2010-11-24 21:26:41 +00:00
|
|
|
|
2010-11-24 19:21:43 +00:00
|
|
|
local logs = {}
|
2010-12-16 12:44:00 +00:00
|
|
|
logs = {"-log", "Delay" }
|
2010-11-24 20:34:56 +00:00
|
|
|
|
2010-11-28 20:16:56 +00:00
|
|
|
local pid = spawn("./lsyncd", "-nodaemon", "-delay", "5",
|
2010-11-24 20:34:56 +00:00
|
|
|
"-rsyncssh", srcdir, "localhost", trgdir,
|
|
|
|
unpack(logs))
|
2010-11-18 16:33:48 +00:00
|
|
|
|
2010-11-18 16:59:50 +00:00
|
|
|
cwriteln("waiting for Lsyncd to startup")
|
2010-11-18 16:33:48 +00:00
|
|
|
posix.sleep(1)
|
|
|
|
|
2010-12-16 12:56:46 +00:00
|
|
|
churn(srcdir, 100)
|
2010-11-18 16:33:48 +00:00
|
|
|
|
2010-11-18 16:59:50 +00:00
|
|
|
cwriteln("waiting for Lsyncd to finish its jobs.")
|
2010-11-28 23:39:18 +00:00
|
|
|
posix.sleep(10)
|
2010-11-18 16:33:48 +00:00
|
|
|
|
2010-11-20 22:51:53 +00:00
|
|
|
cwriteln("killing the Lsyncd daemon")
|
|
|
|
posix.kill(pid)
|
|
|
|
local _, exitmsg, lexitcode = posix.wait(lpid)
|
|
|
|
cwriteln("Exitcode of Lsyncd = ", exitmsg, " ", lexitcode)
|
2010-11-18 16:33:48 +00:00
|
|
|
|
2010-11-18 16:59:50 +00:00
|
|
|
exitcode = os.execute("diff -r "..srcdir.." "..trgdir)
|
2010-11-22 14:54:50 +00:00
|
|
|
cwriteln("Exitcode of diff = '", exitcode, "'")
|
|
|
|
if exitcode ~= 0 then
|
|
|
|
os.exit(1)
|
2010-11-20 22:51:53 +00:00
|
|
|
else
|
2010-11-22 14:54:50 +00:00
|
|
|
os.exit(0)
|
2010-11-20 22:51:53 +00:00
|
|
|
end
|
2010-11-18 16:33:48 +00:00
|
|
|
|
2010-11-22 14:54:50 +00:00
|
|
|
|