]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/concurrent-jobs-test
New configure
[bacula/bacula] / regress / tests / concurrent-jobs-test
1 #!/bin/sh
2 #
3 # Run two jobs at the same time
4 #
5 cwd=`pwd`
6 scripts/copy-test-confs
7 scripts/cleanup
8 echo "${cwd}/tmp/largefile" >/tmp/file-list
9 if test -c /dev/urandom ; then
10 # Create 56MB file with random data
11    echo "Creating a 56MB file with random data ..."
12    dd if=/dev/urandom of=${cwd}/tmp/largefile bs=1024 count=55000
13 else
14    echo "Creating a 56MB file with bacula-dir data ..."
15    dd if=bin/bacula-dir of=${cwd}/tmp/1 bs=1024 count=1000
16    cat ${cwd}/tmp/1 ${cwd}/tmp/1 ${cwd}/tmp/1 ${cwd}/tmp/1 ${cwd}/tmp/1 >${cwd}/tmp/2
17    rm -f ${cwd}/tmp/1
18    cat ${cwd}/tmp/2 ${cwd}/tmp/2 ${cwd}/tmp/2 ${cwd}/tmp/2 ${cwd}/tmp/2 >>${cwd}/tmp/3
19    rm -f ${cwd}/tmp/2
20    cat ${cwd}/tmp/3 ${cwd}/tmp/3 ${cwd}/tmp/3 ${cwd}/tmp/3 ${cwd}/tmp/3 >${cwd}/tmp/largefile
21    rm -f ${cwd}/tmp/3
22 fi 
23
24 echo "largefile created"
25
26 echo " "
27 echo " "
28 echo " === Starting concurrent-jobs-test  ==="
29 echo " === Starting concurrent-jobs-test  ===" >>working/log
30 echo " "
31
32 bin/bacula start 2>&1 >/dev/null
33 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
34 @output /dev/null
35 messages
36 @output tmp/log1.out
37 label storage=File volume=TestVolume001
38 run job=CompressedTest level=Full yes
39 run job=CompressedTest level=Full yes
40 run job=CompressedTest level=Full yes
41 run job=CompressedTest level=Full yes
42 wait
43 messages
44 @# 
45 @# now do a restore
46 @#
47 @output tmp/log2.out
48 restore where=${cwd}/tmp/bacula-restores select storage=File
49 unmark *
50 mark *
51 done
52 yes
53 wait
54 messages
55 @output
56 quit
57 END_OF_DATA
58 scripts/check_for_zombie_jobs storage=File
59
60 bin/bacula stop 2>&1 >/dev/null
61 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
62 bstat=$?
63 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
64 rstat=$?
65 diff tmp/largefile  tmp/bacula-restores${cwd}/tmp/largefile 2>&1 >/dev/null
66 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
67    echo " "
68    echo " "
69    echo "  !!!!! concurrent-jobs-test Bacula source failed!!! !!!!! "
70    echo "  !!!!! concurrent-jobs-test failed!!! !!!!! " >>test.out
71    echo " "
72 else
73    echo "  ===== concurrent-jobs-test Bacula source OK ===== "
74    echo "  ===== concurrent-jobs-test OK ===== " >>test.out
75    scripts/cleanup
76 fi