X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fdev-test-root;h=838d5d1028b02323c2480e14d602f63ffb498b55;hb=e0de4566ae440254fbe97de0eb04393fd3352d63;hp=8f21e22db52d60beb0659dc6d6d5f6d1c0c72d4f;hpb=0676023396c6212551d46d8ebc7409f0c3f1fad7;p=bacula%2Fbacula diff --git a/regress/tests/dev-test-root b/regress/tests/dev-test-root index 8f21e22db5..838d5d1028 100755 --- a/regress/tests/dev-test-root +++ b/regress/tests/dev-test-root @@ -3,65 +3,76 @@ # Run a simple backup of the Bacula build directory # then restore it. # -echo " " -echo " " -echo " === /dev save/restore test ===" -echo " " -echo " " -UID=`/usr/bin/id -u` -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 +@$out /dev/null messages -label storage=File -TestVolume001 -run job=NightlySave -yes +@$out ${cwd}/tmp/log1.out +label storage=File volume=TestVolume001 +run job=NightlySave yes wait messages @# @# now do a restore @# -restore -5 -done +@$out ${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 2>&1 >/dev/null +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 - cd ${cwd} + echo " ===== dev-test-root OK ===== " + echo " ===== dev-test-root OK ===== " >>test.out scripts/cleanup fi