X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fdev-test-root;h=0d005e56b7f0a21d970504406586f00152e9288f;hb=ebba96a2482b01553cd098c0770ee2b42ce634ce;hp=9e50dd41329e8cb6cb981d26f3beabe41f99abe5;hpb=a11c5d95137a82a90b2f86980bbbb34cf233ff66;p=bacula%2Fbacula diff --git a/regress/tests/dev-test-root b/regress/tests/dev-test-root index 9e50dd4132..0d005e56b7 100755 --- a/regress/tests/dev-test-root +++ b/regress/tests/dev-test-root @@ -3,63 +3,77 @@ # Run a simple backup of the Bacula build directory # then restore it. # -echo " " -echo " " -echo " === /dev save/restore test ===" -echo " " -echo " " -if [ $UID != 0 ] ; then - echo " " - echo "You must be root to run this test." - echo " ===== dev test failed!!! ===== " - echo " ===== dev test failed!!! ===== " >>test.out - echo " " - exit 1 -fi -cwd=`pwd` + +TestName="dev-test-root" +. scripts/functions + +require_root + +scripts/cleanup scripts/copy-test-confs -echo "/dev" >/tmp/file-list -rm -rf /tmp/TestVolume001 /tmp/bacula-restores -bin/bacula stop 2>&1 >/dev/null -bin/drop_sqlite_tables -bin/make_sqlite_tables -bin/bacula start 2>&1 >/dev/null -bin/console -c bin/console.conf <${cwd}/tmp/file-list + +start_test + +cat <${cwd}/tmp/bconcmds @output /dev/null messages -label storage=File -TestVolume001 -run job=NightlySave -yes +@output ${cwd}/tmp/log1.out +label storage=File volume=TestVolume001 +run job=NightlySave yes wait messages @# @# now do a restore @# -restore -5 -done +@output ${cwd}/tmp/log2.out +restore where=${cwd}/tmp/bacula-restores select all done yes -@sleep 1 wait messages @output quit END_OF_DATA -bin/bacula stop 2>&1 >/dev/null + +run_bacula +check_for_zombie_jobs storage=File +stop_bacula + +# More cleanup needed below + cd / ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test dev >${cwd}/tmp/original -cd /tmp/bacula-restores +cd ${cwd}/tmp/bacula-restores ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test dev >${cwd}/tmp/restored -diff ${cwd}/tmp/original ${cwd}/tmp/restored +cd ${cwd}/tmp +# +# Use sed to cut out parts that *always* change +# +cat >sed.scr <1 +sed -f sed.scr 1 | sort >original +# +mv -f restored 1 +sed -f sed.scr 1 | sort >restored +rm -f sed.scr +# +cd ${cwd} +diff ${cwd}/tmp/original ${cwd}/tmp/restored 2>&1 1>/dev/null if [ $? != 0 ] ; then echo " " echo " " - echo " ===== dev test failed!!! ===== " - echo " ===== dev test failed!!! ===== " >>test.out + echo " ===== !!!! dev-test-root failed !!!! ===== " + echo " ===== !!!! dev-test-root failed !!!! ===== " >>test.out echo " " else - echo " ===== dev test OK ===== " - echo " ===== dev test OK ===== " >>test.out + echo " ===== dev-test-root OK ===== " + echo " ===== dev-test-root OK ===== " >>test.out scripts/cleanup fi