Whamcloud - gitweb
8dd9d9d9da52e122eaa393c33b97c14c014c6669
[fs/lustre-release.git] / lustre / tests / replay-ost-single.sh
1 #!/bin/bash
2
3 set -e
4
5 PTLDEBUG=${PTLDEBUG:--1}
6 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
7 SETUP=${SETUP:-""}
8 CLEANUP=${CLEANUP:-""}
9 . $LUSTRE/tests/test-framework.sh
10 init_test_env $@
11 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
12
13 ostfailover_HOST=${ostfailover_HOST:-$ost_HOST}
14 #failover= must be defined in OST_MKFS_OPTIONS if ostfailover_HOST != ost_HOST
15
16 # Tests that fail on uml
17 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
18 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 6"
19
20 # Skip these tests
21 # BUG NUMBER: 
22 ALWAYS_EXCEPT="$REPLAY_OST_SINGLE_EXCEPT"
23
24 #                                       
25 [ "$SLOW" = "no" ] && EXCEPT_SLOW=""
26
27 # It is replay-ost-single, after all
28 OSTCOUNT=1
29
30 build_test_filter
31
32 REFORMAT=--reformat cleanup_and_setup_lustre
33 rm -rf $DIR/[df][0-9]*
34
35 test_0a() {
36     zconf_umount `hostname` $MOUNT -f
37     # needs to run during initial client->OST connection
38     #define OBD_FAIL_OST_ALL_REPLY_NET       0x211
39     do_facet ost "lctl set_param fail_loc=0x80000211"
40     zconf_mount `hostname` $MOUNT && df $MOUNT || error "0a mount fail"
41 }
42 run_test 0a "target handle mismatch (bug 5317) `date +%H:%M:%S`"
43
44 test_0b() {
45     fail ost1
46     cp /etc/profile  $DIR/$tfile
47     sync
48     diff /etc/profile $DIR/$tfile
49     rm -f $DIR/$tfile
50 }
51 run_test 0b "empty replay"
52
53 test_1() {
54     date > $DIR/$tfile
55     fail ost1
56     $CHECKSTAT -t file $DIR/$tfile || return 1
57     rm -f $DIR/$tfile
58 }
59 run_test 1 "touch"
60
61 test_2() {
62     for i in `seq 10`; do
63         echo "tag-$i" > $DIR/$tfile-$i
64     done 
65     fail ost1
66     for i in `seq 10`; do
67       grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
68     done 
69     rm -f $DIR/$tfile-*
70 }
71 run_test 2 "|x| 10 open(O_CREAT)s"
72
73 test_3() {
74     verify=$ROOT/tmp/verify-$$
75     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile &
76     ddpid=$!
77     sync &
78     fail ost1
79     wait $ddpid || return 1
80     cmp $verify $DIR/$tfile || return 2
81     rm -f $verify $DIR/$tfile
82 }
83 run_test 3 "Fail OST during write, with verification"
84
85 test_4() {
86     verify=$ROOT/tmp/verify-$$
87     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile
88     # invalidate cache, so that we're reading over the wire
89     cancel_lru_locks osc
90     cmp $verify $DIR/$tfile &
91     cmppid=$!
92     fail ost1
93     wait $cmppid || return 1
94     rm -f $verify $DIR/$tfile
95 }
96 run_test 4 "Fail OST during read, with verification"
97
98 test_5() {
99     [ -z "`which iozone 2> /dev/null`" ] && log "iozone missing" && return
100     FREE=`df -P $DIR | tail -n 1 | awk '{ print $4/2 }'`
101     GB=1048576  # 1048576KB == 1GB
102     if (( FREE > GB )); then
103         FREE=$GB
104     fi
105     IOZONE_OPTS="-i 0 -i 1 -i 2 -+d -r 4 -s $FREE"
106     iozone $IOZONE_OPTS -f $DIR/$tfile &
107     PID=$!
108     
109     sleep 8
110     fail ost1
111     wait $PID
112     RC=$?
113     log "iozone rc=$RC"
114     rm -f $DIR/$tfile
115     [ $RC -ne 0 ] && return $RC || true
116 }
117 run_test 5 "Fail OST during iozone"
118
119 kbytesfree() {
120    lctl get_param -n osc.*-osc-*.kbytesfree | awk '{total+=$1} END {print total}'
121 }
122
123 test_6() {
124     f=$DIR/$tfile
125     rm -f $f
126     sync && sleep 2 && sync     # wait for delete thread
127     before=`kbytesfree`
128     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 28
129     lfs getstripe $f
130     sync
131     sleep 2                                     # ensure we have a fresh statfs
132     sync
133 #define OBD_FAIL_MDS_REINT_NET_REP       0x119
134     do_facet mds "lctl set_param fail_loc=0x80000119"
135     after_dd=`kbytesfree`
136     log "before: $before after_dd: $after_dd"
137     (( $before > $after_dd )) || return 1
138     rm -f $f
139     fail ost1
140     $CHECKSTAT -t file $f && return 2 || true
141     sync
142     # let the delete happen
143     sleep 5
144     after=`kbytesfree`
145     log "before: $before after: $after"
146     (( $before <= $after + 40 )) || return 3    # take OST logs into account
147 }
148 run_test 6 "Fail OST before obd_destroy"
149
150 test_7() {
151     f=$DIR/$tfile
152     rm -f $f
153     sync && sleep 5 && sync     # wait for delete thread
154     before=`kbytesfree`
155     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 4
156     sync
157     sleep 2                                     # ensure we have a fresh statfs
158     sync
159     after_dd=`kbytesfree`
160     log "before: $before after_dd: $after_dd"
161     (( $before > $after_dd )) || return 1
162     replay_barrier ost1
163     rm -f $f
164     fail ost1
165     $CHECKSTAT -t file $f && return 2 || true
166     sync
167     # let the delete happen
168     sleep 5
169     after=`kbytesfree`
170     log "before: $before after: $after"
171     (( $before <= $after + 40 )) || return 3    # take OST logs into account
172 }
173 run_test 7 "Fail OST before obd_destroy"
174
175 equals_msg `basename $0`: test complete, cleaning up
176 check_and_cleanup_lustre
177 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG || true