]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/source-addr-test
227007d21cf2a608720f9fea3c376f447e5a1188
[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 if [ $os = 'FreeBSD' ]; then
29    INTERFACE=bge0
30    IP=`ifconfig ${INTERFACE} | perl -ne '/inet (.+?) / && print $1'`
31 elif [ $os = 'Linux' ]; then
32    INTERFACE=eth0
33    IP=`ifconfig ${INTERFACE} | perl -ne '/inet addr:(.+?) / && print $1'`
34 fi
35
36 if [ "$IP" = '' ]; then
37     echo "Can't detect ip address"
38     exit 0
39 fi
40
41 outf="tmp/sed_tmp"
42 echo "s/PidDirectory/DirSourceAddress=$IP; PidDirectory/g" > $outf
43 echo "s/Address =/Address = 127.0.0.1 #/g" >> $outf 
44 cp $scripts/bacula-dir.conf $tmp/1
45 sed -f ${outf} ${cwd}/tmp/1 > $scripts/bacula-dir.conf 
46
47 # Set source address on the FD as well
48 echo "s/Pid Directory/FDSourceAddress=$IP; Pid Directory/g" >$outf
49 cp $scripts/bacula-fd.conf $tmp/2
50 sed -f ${outf} ${cwd}/tmp/2 > $scripts/bacula-fd.conf
51
52 DIRPORT=$BASEPORT
53 FDPORT=$(($BASEPORT + 1))
54 SDPORT=$(($BASEPORT + 2))
55
56 change_jobname BackupClient1 $JobName
57 start_test
58
59 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
60 @$out /dev/null
61 messages
62 @$out ${cwd}/tmp/log1.out
63 @#label volume=TestVolume001 storage=File pool=File
64 @#setdebug level=100 storage=File
65 run job=$JobName yes
66 @sleep 3
67 messages
68 quit
69 END_OF_DATA
70
71 run_bacula
72
73 sleep 5
74 print_debug "Detecting connections to SD sourced from ${IP}"
75 netstat -tan | grep -E "127.0.0.1(.|:)$SDPORT .* ${IP}" > $tmp/log3.out
76 if [ $? -ne 0 ]; then
77    stat=2
78    print_debug "Couldn't detect a connection to the SD sourced from SourceAddress ${IP}" 
79 fi
80
81 print_debug "and connections to FD sourced from ${IP}"
82 netstat -tan | grep -E "127.0.0.1(.|:)$FDPORT .* ${IP}" >> $tmp/log3.out
83 if [ $? -ne 0 ]; then
84    stat=2
85    print_debug "Couldn't detect a connection to the FD sourced from SourceAddress ${IP}"
86 fi
87
88 if [ "$stat" = 2 ] ; then
89    netstat -tan
90 fi
91
92 if [ "$debug" = 1 ] ; then
93     cat $tmp/log3.out
94 fi
95
96 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
97 @$out /dev/null
98 messages
99 @$out ${cwd}/tmp/log1.out
100 label volume=TestVolume001 storage=File pool=File
101 @#setdebug level=100 storage=File
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=File
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