]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/source-addr-test
Backport from BEE
[bacula/bacula] / regress / tests / source-addr-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory
4 #   then restore it.
5 #
6 TestName="source-addr-test"
7 JobName=backup
8 . scripts/functions
9
10 scripts/cleanup
11 scripts/copy-confs
12
13 #
14 # Zap out any schedule in default conf file so that
15 #  it doesn't start during our test
16 #
17 outf="tmp/sed_tmp"
18 echo "s%  Schedule =%# Schedule =%g" >${outf}
19 cp $scripts/bacula-dir.conf $tmp/1
20 sed -f ${outf} $tmp/1 >$scripts/bacula-dir.conf
21
22 PATH=$PATH:/sbin:/usr/sbin
23 #
24 # Deduce a primary IP address by examining
25 #  the interface defined by INTERFACE=
26 #
27 os=`uname`
28 INTERFACE=lo
29 if [ $os = 'FreeBSD' ]; then
30    INTERFACE=bge0
31    IP=`ifconfig ${INTERFACE} | perl -ne '/inet (.+?) / && print $1'`
32 elif [ $os = 'Linux' ]; then
33 #  INTERFACE=eth0
34    INTERFACE=lo
35    IP=`ifconfig ${INTERFACE} | perl -ne '/inet (addr:)?(.+?) / && print $2'`
36 fi
37
38 if [ "$IP" = '' ]; then
39     echo "Can't detect ip address"
40     exit 0
41 fi
42
43 outf="tmp/sed_tmp"
44 echo "s/PidDirectory/DirSourceAddress=$IP; PidDirectory/g" > $outf
45 echo "s/Address =/Address = \"127.0.0.1\" #/g" >> $outf 
46 cp $scripts/bacula-dir.conf $tmp/1
47 sed -f ${outf} ${cwd}/tmp/1 > $scripts/bacula-dir.conf 
48
49 # Set source address on the FD as well
50 echo "s/Pid Directory/FDSourceAddress=$IP; Pid Directory/g" >$outf
51 cp $scripts/bacula-fd.conf $tmp/2
52 sed -f ${outf} ${cwd}/tmp/2 > $scripts/bacula-fd.conf
53
54 DIRPORT=$BASEPORT
55 FDPORT=$(($BASEPORT + 1))
56 SDPORT=$(($BASEPORT + 2))
57
58 change_jobname BackupClient1 $JobName
59 start_test
60
61 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
62 @output /dev/null
63 messages
64 @$out ${cwd}/tmp/log1.out
65 @#label volume=TestVolume001 storage=File1 pool=File slot=1 drive=0
66 @#setdebug level=100 storage=File1
67 setbandwidth client limit=1000
68 run job=$JobName yes
69 @sleep 3
70 messages
71 quit
72 END_OF_DATA
73
74 run_bacula
75
76 sleep 5
77 print_debug "Detecting connections to SD sourced from ${IP}"
78 netstat -tan | grep -E "127\.0\.0\.1(.|:)$SDPORT .* ${IP}" > $tmp/log3.out
79 if [ $? -ne 0 ]; then
80    stat=2
81    print_debug "Couldn't detect a connection to the SD sourced from SourceAddress ${IP}" 
82 fi
83
84 print_debug "and connections to FD sourced from ${IP}"
85 netstat -tan | grep -E "127\.0\.0\.1(.|:)$FDPORT .* ${IP}" >> $tmp/log3.out
86 if [ $? -ne 0 ]; then
87    stat=2
88    print_debug "Couldn't detect a connection to the FD sourced from SourceAddress ${IP}"
89 fi
90
91 if [ "$stat" = 2 ] ; then
92    netstat -tan
93 fi
94
95 if [ "$debug" = 1 ] ; then
96     cat $tmp/log3.out
97 fi
98
99 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
100 @output /dev/null
101 setbandwidth client limit=1000000
102 wait
103 messages
104 @# 
105 @# now do a restore
106 @#
107 @$out ${cwd}/tmp/log2.out  
108 restore where=${cwd}/tmp/bacula-restores select all done
109 yes
110 wait
111 messages
112 quit
113 END_OF_DATA
114
115 run_bconsole
116 check_for_zombie_jobs storage=File1
117 stop_bacula
118 check_two_logs
119 check_restore_diff
120
121 if [ "$stat" = 2 ]; then
122     print_debug `cat $tmp/log3.out`
123     bstat=$stat
124 fi
125
126 end_test