summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1040934.t
blob: 547f6c3bcaaf4f57953aeb7b464fd0e82dc12c5b (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
#!/bin/bash

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

cleanup;

TEST launch_cluster 2
TEST setup_lvm 2

TEST $CLI_1 peer probe $H2
EXPECT_WITHIN 20 1 peer_count

TEST $CLI_1 volume create $V0 replica 2 $H1:$L1 $H2:$L2
EXPECT 'Created' volinfo_field $V0 'Status'

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

TEST $CLI_1 snapshot create $V0 -n ${V0}_snap
PID_1=$!
wait $PID_1

TEST snapshot_exists ${V0}_snap
TEST mount -t glusterfs $H1:/snaps/${V0}_snap/$V0 $M0
cd $M0
TEST ! touch a

TEST $CLI_1 snapshot delete $V0 -s ${V0}_snap
PID_1=$!
wait $PID_1

TEST ! snapshot_exists ${V0}_snap

cleanup;