summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1620580.t
blob: bc113d462e745400eb4c6305fe7e24e499b230e9 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash

. $(dirname $0)/../include.rc
. $(dirname $0)/../volume.rc

cleanup;

## Start glusterd
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume info;

## Lets create volume
TEST $CLI volume create $V0 $H0:$B0/${V0}{1,2};

## Verify volume is created
EXPECT "$V0" volinfo_field $V0 'Volume Name';
EXPECT 'Created' volinfo_field $V0 'Status';
## Start volume and verify
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';
TEST glusterfs -s $H0 --volfile-id=$V0 $M0

#do some operation on mount, so that kill_brick is guaranteed to be
#done _after_ first lookup on root

TEST ls $M0
TEST touch $M0/file

TEST $CLI volume stop $V0
TEST $CLI volume delete $V0

# Case of Same volume name, but different bricks
TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{3,4};
TEST $CLI volume start $V0;

# Give time for 'reconnect' to happen
sleep 4

TEST ! ls $M0

# Case of Same brick, but different volume (ie, recreated).
TEST $CLI volume create $V1 $H0:$B0/${V0}{1,2};
TEST $CLI volume start $V1;

# Give time for 'reconnect' to happen
sleep 4
TEST ! ls $M0
TEST ! stat $M0/file

cleanup