]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/weird-files-test
Final changes
[bacula/bacula] / regress / tests / weird-files-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory
4 #   then restore it.
5 #
6 if test ! -d weird-files ; then
7    echo " "
8    echo "Weird files not configured. Test not run."
9    exit 0
10 fi
11 cwd=`pwd`
12 scripts/copy-test-confs
13 scripts/cleanup
14 #
15 # Note, we save the weird-files directory twice on purpose
16 #  because this causes problems with hard linked files 
17 #  that are only saved once.  In 1.33, Bacula now deals
18 #  with this situation.
19 #
20 echo "${cwd}/weird-files" >/tmp/file-list
21 echo "${cwd}/weird-files" >>/tmp/file-list
22
23 echo " "
24 echo " "
25 echo " === Starting weird filenames test ==="
26 echo " === Starting weird filenames test ===" >>working/log
27 echo " "
28
29 # bin/bacula start 2>&1 >/dev/null
30 bin/bacula start
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 all storage=File done
46 yes
47 wait
48 messages
49 @output
50 quit
51 END_OF_DATA
52 scripts/check_for_zombie_jobs storage=File 
53 bin/bacula stop 2>&1 >/dev/null
54 ${cwd}/bin/testls weird-files | sort >${cwd}/tmp/original
55 cd tmp/bacula-restores${cwd}
56 ${cwd}/bin/testls weird-files | sort >${cwd}/tmp/restored
57 cd ${cwd}
58 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
59 bstat=$?
60 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
61 rstat=$?
62 diff ${cwd}/tmp/original ${cwd}/tmp/restored 2>&1 >/dev/null
63 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
64    echo " "
65    echo " "
66    echo "  !!!!! Weird files test failed!!! !!!!! "
67    echo "  !!!!! Weird files test failed!!! !!!!! " >>test.out
68    echo " "
69 else
70    echo "  ===== Weird files test OK ===== "
71    echo "  ===== Weird files test OK ===== " >>test.out
72    cd ${cwd}
73    scripts/cleanup
74 fi