]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/weird-files2-test
755525c346870806f2028274e2d6ea955e7598ea
[bacula/bacula] / regress / tests / weird-files2-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 rm -rf weird-files2
15 cp -Rp weird-files weird-files2
16 echo "${cwd}/weird-files2" >/tmp/file-list
17 bin/bacula stop 2>&1 >/dev/null
18 cd bin
19 ./drop_bacula_tables >/dev/null 2>&1
20 ./make_bacula_tables >/dev/null 2>&1
21 ./grant_bacula_privileges 2>&1 >/dev/null
22 cd ..
23
24 echo " "
25 echo " "
26 echo " === Starting weird filenames2 test ==="
27 echo " === Starting weird filenames2 test ===" >>working/log
28 echo " "
29
30 bin/testls weird-files2 >${cwd}/tmp/original
31 bin/bacula start 2>&1 >/dev/null
32 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
33 @output /dev/null
34 messages
35 @output tmp/log1.out
36 label storage=File volume=TestVolume001
37 run job=NightlySave yes
38 wait
39 messages
40 @output
41 quit
42 END_OF_DATA
43 #
44 # Now mess up the a hard link, and a soft link
45 #
46 cd weird-files2
47 rm -f hard-file2
48 ln hard-file3 hard-file2
49 rm -f soft-file2
50 ln -s soft-file3 soft-file2
51 cd ${cwd}
52 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
53 @output /dev/null
54 messages
55 @# 
56 @# now do a restore
57 @#
58 @output tmp/log2.out
59 restore where= storage=File
60 5
61 done
62 yes
63 wait
64 messages
65 @output
66 quit
67 END_OF_DATA
68 bin/bacula stop 2>&1 >/dev/null
69 bin/testls weird-files2 >${cwd}/tmp/restored
70 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
71 bstat=$?
72 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
73 rstat=$?
74 diff ${cwd}/tmp/original ${cwd}/tmp/restored 2>&1 >/dev/null
75 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
76    echo " "
77    echo " "
78    echo "  !!!!! Weird files2 test failed!!! !!!!! "
79    echo "  !!!!! Weird files2 test failed!!! !!!!! " >>test.out
80    echo " "
81 else
82    echo "  ===== Weird files2 test OK ===== "
83    echo "  ===== Weird files2 test OK ===== " >>test.out
84    cd ${cwd}
85    scripts/cleanup
86    rm -rf weird-files2
87 fi