summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-1170548-dont-display-deactivated-snapshots.t
blob: 4c2e568ae4d47aa7b3f4af92d0a60422c7e88bf6 (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
#!/bin/bash

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

cleanup;

TEST init_n_bricks 2
TEST setup_lvm 2
TEST glusterd;

TEST $CLI volume create $V0 $H0:$L1 $H0:$L2
TEST $CLI volume start $V0

# enable uss and mount the volume
TEST $CLI volume set $V0 features.uss enable
TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0

# create 10 snapshots and check if all are being reflected
# in the USS world
TEST gluster snapshot config activate-on-create enable
for i in {1..10}; do $CLI snapshot create snap$i $V0; done
EXPECT 10 uss_count_snap_displayed $M0

# snapshots should not be displayed after deactivation
for i in {1..10}; do $CLI snapshot deactivate snap$i --mode=script; done
EXPECT 0 uss_count_snap_displayed $M0

# activate all the snapshots and check if all the activated snapshots
# are displayed again
for i in {1..10}; do $CLI snapshot activate snap$i --mode=script; done
EXPECT 10 uss_count_snap_displayed $M0

cleanup;