summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1034085.t
blob: 7ccb4403ea9a3eb161e1aa03b8c28828decc717e (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
#!/bin/bash
#Test case: Check the creation of indices/xattrop dir as soon as brick comes up.

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

cleanup;

#Create a volume
TEST glusterd;
TEST pidof glusterd
TEST $CLI volume info;

TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}-{0,1};
EXPECT 'Created' volinfo_field $V0 'Status';

TEST mkdir -p $B0/${V0}-0/.glusterfs/indices/
TEST touch $B0/${V0}-0/.glusterfs/indices/xattrop

#Volume start should not work when xattrop dir not created
TEST ! $CLI volume start $V0;

TEST rm $B0/${V0}-0/.glusterfs/indices/xattrop

#Volume start should work now
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';

#Check for the existence of indices/xattrop dir
TEST [ -d $B0/${V0}-0/.glusterfs/indices/xattrop/ ];

cleanup;