]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/auto-label-test
Update doc
[bacula/bacula] / regress / tests / auto-label-test
1 #!/bin/sh
2 #
3 #  Test if Bacula can automatically create a Volume label.
4 #
5
6 debug=0
7 if test "$debug" -eq 1 ; then
8   out="tee"
9 else
10   out="output"
11 fi
12 cwd=`pwd`
13 scripts/copy-test-confs
14 scripts/cleanup
15 echo "${cwd}/build" >/tmp/file-list
16
17 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
18 sed "s%# Label Format%  Label Format%" ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
19
20 echo " "
21 echo " "
22 echo " === Starting auto-label-test at `date +%R:%S` ==="
23 echo " === Starting auto-label-test at `date +%R:%S` ===" >>working/log
24 echo " "
25
26 cat <<END_OF_DATA >tmp/bconcmds
27 @output /dev/null
28 messages
29 @$out tmp/log1.out
30 status all
31 status all
32 list pools
33 messages
34 run job=CompressedTest storage=File yes
35 list pools
36 list volumes
37 wait
38 messages
39 @# 
40 @# now do a restore
41 @#
42 @$out tmp/log2.out
43 restore where=${cwd}/tmp/bacula-restores select storage=File
44 unmark *
45 mark *
46 count
47 ls *
48 dir *
49 find Makefile
50 pwd
51 lsmark
52 estimate
53 ?
54 help
55 done
56 yes
57 wait
58 messages
59 @$out
60 quit
61 END_OF_DATA
62
63 if test "$debug" -eq 1 ; then
64   bin/bacula start
65   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
66 else
67   bin/bacula start 2>&1 >/dev/null
68   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
69 fi
70
71 scripts/check_for_zombie_jobs storage=File
72
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 diff -r build tmp/bacula-restores${cwd}/build 2>&1 >/dev/null
79 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
80    echo " "
81    echo " "
82    echo "  !!!!! auto-label-test failed!!! !!!!! "
83    echo "  !!!!! auto-label-test failed!!! !!!!! " >>test.out
84    if [ $bstat != 0 -o $rstat != 0 ] ; then
85       echo "  !!!!! Bad Job termination status     !!!!! "
86       echo "  !!!!! Bad Job termination status     !!!!! " >>test.out
87    else
88       echo "  !!!!! Restored files differ          !!!!! "
89       echo "  !!!!! Restored files differ          !!!!! " >>test.out
90    fi
91    echo " "
92 else
93    echo "  ===== auto-label-test OK ===== "
94    echo "  ===== auto-label-test OK ===== " >>test.out
95    scripts/cleanup
96 fi