Whamcloud - gitweb
f0da27e437349ab2dae4e340df7b7cd4cd9c16ec
[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:-`dirname $0`/..}
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/${TESTSUITE}/[df][0-9]* # bug 13798 new t-f tdir staff
34 rm -rf $DIR/[df][0-9]*
35
36 test_0a() {
37     zconf_umount `hostname` $MOUNT -f
38     # needs to run during initial client->OST connection
39     #define OBD_FAIL_OST_ALL_REPLY_NET       0x211
40     do_facet ost "sysctl -w lustre.fail_loc=0x80000211"
41     zconf_mount `hostname` $MOUNT && df $MOUNT || error "0a mount fail"
42 }
43 run_test 0a "target handle mismatch (bug 5317) `date +%H:%M:%S`"
44
45 test_0b() {
46     fail ost1
47     cp /etc/profile  $DIR/$tfile
48     sync
49     diff /etc/profile $DIR/$tfile
50     rm -f $DIR/$tfile
51 }
52 run_test 0b "empty replay"
53
54 test_1() {
55     date > $DIR/$tfile
56     fail ost1
57     $CHECKSTAT -t file $DIR/$tfile || return 1
58     rm -f $DIR/$tfile
59 }
60 run_test 1 "touch"
61
62 test_2() {
63     for i in `seq 10`; do
64         echo "tag-$i" > $DIR/$tfile-$i
65     done 
66     fail ost1
67     for i in `seq 10`; do
68       grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
69     done 
70     rm -f $DIR/$tfile-*
71 }
72 run_test 2 "|x| 10 open(O_CREAT)s"
73
74 test_3() {
75     verify=$ROOT/tmp/verify-$$
76     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile &
77     ddpid=$!
78     sync &
79     fail ost1
80     wait $ddpid || return 1
81     cmp $verify $DIR/$tfile || return 2
82     rm -f $verify $DIR/$tfile
83 }
84 run_test 3 "Fail OST during write, with verification"
85
86 test_4() {
87     verify=$ROOT/tmp/verify-$$
88     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile
89     # invalidate cache, so that we're reading over the wire
90     cancel_lru_locks osc
91     cmp $verify $DIR/$tfile &
92     cmppid=$!
93     fail ost1
94     wait $cmppid || return 1
95     rm -f $verify $DIR/$tfile
96 }
97 run_test 4 "Fail OST during read, with verification"
98
99 test_5() {
100     [ -z "`which iozone 2> /dev/null`" ] && log "iozone missing" && return
101     FREE=`df -P -h $DIR | tail -n 1 | awk '{ print $3 }'`
102     case $FREE in
103     *T|*G) FREE=1G;;
104     esac
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    awk '{total+=$1} END {print total}' /proc/fs/lustre/osc/*-osc-*/kbytesfree
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 "sysctl -w lustre.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