summaryrefslogtreecommitdiffstats
path: root/tests/bugs/snapshot/bug-1322772-real-path-fix-for-snapshot.t
blob: 68dc0bbe0f735a2c742db56836404dee8f238d23 (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
#!/bin/bash

. $(dirname $0)/../../volume.rc
. $(dirname $0)/../../snapshot.rc
. $(dirname $0)/../../include.rc
cleanup;

TEST verify_lvm_version
TEST init_n_bricks 1
TEST setup_lvm 1

TEST glusterd
TEST pidof glusterd

TEST $CLI volume create $V0 $H0:$L1
EXPECT 'Created' volinfo_field $V0 'Status'

TEST $CLI volume start $V0
EXPECT 'Started' volinfo_field $V0 'Status'

TEST $CLI snapshot create ${V0}_snap $V0

# Simulate a node reboot by unmounting the brick, snap_brick and followed by
# deleting the brick. Now once glusterd restarts, it should be able to construct
# and remount the snap brick
snap_brick=`gluster snap status | grep "Brick Path" | awk -F ":"  '{print $3}'`

pkill gluster
EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $L1
EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $snap_brick
rm -rf $snap_brick

TEST glusterd
TEST pidof glusterd