]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/decremental-test
Add test to script + correct kern.conf
[bacula/bacula] / regress / tests / decremental-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory then create some           
4 #   new files, do a Decremental and restore those two files.
5 #
6 cwd=`pwd`
7 scripts/copy-test-confs
8 scripts/cleanup
9 echo "${cwd}/tmp/build" >/tmp/file-list
10 mkdir ${cwd}/tmp/build
11 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
12 cd ${cwd}/tmp
13 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
14 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
15 cd ${cwd}
16 bin/bacula stop  2>&1 >/dev/null
17 cd bin
18 ./drop_bacula_tables >/dev/null 2>&1
19 ./make_bacula_tables >/dev/null 2>&1
20 ./grant_bacula_privileges 2>&1 >/dev/null
21 cd ..
22
23 echo " "
24 echo " "
25 echo " === Starting decremental-test ==="
26 echo " === Starting decremental-test ===" >>working/log
27 echo " "
28
29 bin/bacula start 2>&1 >/dev/null
30 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
31 @output /dev/null
32 messages
33 @output tmp/log1.out
34 label storage=File volume=TestVolume001
35 label storage=File volume=TestVolume002
36 run job=CompressedTest yes
37 wait
38 messages
39 quit
40 END_OF_DATA
41 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
42 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
43 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
44 @output /dev/null
45 messages
46 @output tmp/log1.out
47 @# Force decremental on the second Volume
48 update volume=TestVolume001 VolStatus=Used
49 run level=decremental job=CompressedTest yes
50 wait
51 messages
52 @output
53 END_OF_DATA
54 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
55 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
56 @output /dev/null
57 messages
58 @output tmp/log1.out
59 run level=incremental job=CompressedTest yes
60 wait
61 messages
62 @# 
63 @# now do a restore
64 @#
65 @output tmp/log2.out
66 restore where=${cwd}/tmp/bacula-restores storage=File file=<${cwd}/tmp/restore-list
67 yes
68 wait
69 messages
70 @output
71 quit
72 END_OF_DATA
73 bin/bacula stop 2>&1 >/dev/null
74 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
75 bstat=$?
76 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
77 rstat=$?
78 #
79 # Delete .c files because we will only restored the txt files
80 #
81 rm -f tmp/build/*.c
82 diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null
83 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
84    echo " "
85    echo " "
86    echo "  !!!!! decremental-test Bacula source failed!!! !!!!! "
87    echo "  !!!!! decremental-test failed!!! !!!!! " >>test.out
88    echo " "
89 else
90    echo "  ===== decremental-test Bacula source OK ===== "
91    echo "  ===== decremental-test OK ===== " >>test.out
92    scripts/cleanup
93 fi