]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/lib-test-root
Final changes
[bacula/bacula] / regress / tests / lib-test-root
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory
4 #   then restore it.
5 #
6 MUID=`/usr/bin/id -u`
7 if [ $MUID != 0 ] ; then
8    echo " "
9    echo "You must be root to run this test."
10    echo "  ===== lib-test-root failed!!! ===== "
11    echo "  ===== lib-test-root failed!!! ===== " >>test.out
12    echo " "
13    exit 1
14 fi
15 cwd=`pwd`
16 scripts/copy-test-confs
17 scripts/cleanup
18 echo "/lib" >/tmp/file-list
19 bin/bacula stop 2>&1 >/dev/null
20 cd bin
21 ./drop_bacula_tables >/dev/null 2>&1
22 ./make_bacula_tables >/dev/null 2>&1
23 ./grant_bacula_privileges 2>&1 >/dev/null
24 cd ..
25 echo " "
26 echo " "
27 echo " === Starting /lib save/restore test ==="
28 echo " "
29 echo " "
30 bin/bacula start 2>&1 >/dev/null
31 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
32 @output /dev/null
33 messages
34 @output tmp/log1.out
35 label storage=File
36 TestVolume001
37 run job=NightlySave
38 yes
39 wait
40 messages
41 @# 
42 @# now do a restore
43 @#
44 @output tmp/log2.out
45 restore where=${cwd}/tmp/bacula-restores select    
46 unmark *
47 mark *
48 done
49 yes
50 wait
51 messages
52 @output
53 quit
54 END_OF_DATA
55 bin/bacula stop 2>&1 >/dev/null
56 cd /
57 ${cwd}/bin/testls -e ${cwd}/scripts/exclude-lib-test lib >${cwd}/tmp/original
58 cd ${cwd}/tmp/bacula-restores
59 ${cwd}/bin/testls -e ${cwd}/scripts/exclude-lib-test lib >${cwd}/tmp/restored
60 cd ${cwd}/tmp
61 sed s%.*lib/kbd/consolefonts$%lib/kbd/consolefonts% original >1
62 sort <1 >original
63 #
64 sed s%.*lib/kbd/consolefonts$%lib/kbd/consolefonts% restored >1
65 sort <1 >restored
66 rm -f 1
67 #
68 cd ${cwd}
69 diff tmp/original tmp/restored 2>&1 1>/dev/nul
70 if [ $? != 0 ] ; then
71    echo " "
72    echo " "
73    echo "  ===== lib-test-root failed!!! ===== "
74    echo "  ===== lib-test-root failed!!! ===== " >>test.out
75    echo " "
76 else
77    echo "  ===== lib-test-root OK ===== "
78    echo "  ===== lib-test-root OK ===== " >>test.out
79    scripts/cleanup
80 fi