summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1620580.t
blob: 0c74d4a60893751d7f3193fe250428b1913aa1c8 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/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
TEST ! touch $M0/file1

# 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 ! touch $M0/file2

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

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

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


cleanup