summaryrefslogtreecommitdiffstats
path: root/tests/bugs/replicate/bug-1335652.t
blob: 653a1b05ce20f40c0b72eb6b1924688cf63a29da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
cleanup;

TEST glusterd
TEST pidof glusterd
TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{0,1,2}
TEST $CLI volume set $V0 shard on
TEST $CLI volume set $V0 self-heal-daemon off
TEST $CLI volume set $V0 data-self-heal off
TEST $CLI volume set $V0 entry-self-heal off
TEST $CLI volume set $V0 metadata-self-heal off
TEST $CLI volume start $V0

TEST glusterfs --volfile-id=$V0 --volfile-server=$H0 $M0;

#Kill the zero'th brick so that 1st and 2nd get marked dirty
TEST kill_brick $V0 $H0 $B0/${V0}0

TEST dd if=/dev/urandom of=$M0/file bs=10MB count=20

#At any point value of dirty should not be greater than 0 on source bricks
EXPECT "000000000000000000000000" get_hex_xattr trusted.afr.dirty $B0/${V0}1/.shard
EXPECT "000000000000000000000000" get_hex_xattr trusted.afr.dirty $B0/${V0}2/.shard

rm -rf $M0/file;

cleanup;