blob: c826631cad9366e146d02e05c03d6592d6ca2dd5 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#!/bin/bash
. $(dirname $0)/../include.rc
. $(dirname $0)/../volume.rc
. $(dirname $0)/../cluster.rc
. $(dirname $0)/../snapshot.rc
V1="patchy2"
function create_volumes() {
$CLI_1 volume create $V0 $H1:$L1 &
PID_1=$!
$CLI_2 volume create $V1 $H2:$L2 $H3:$L3 &
PID_2=$!
wait $PID_1 $PID_2
}
function create_snapshots() {
$CLI_1 snapshot create ${V0}_snap ${V0}&
PID_1=$!
$CLI_1 snapshot create ${V1}_snap ${V1}&
PID_2=$!
wait $PID_1 $PID_2
}
function delete_snapshots() {
$CLI_1 snapshot delete ${V0}_snap &
PID_1=$!
$CLI_1 snapshot delete ${V1}_snap &
PID_2=$!
wait $PID_1 $PID_2
}
function restore_snapshots() {
$CLI_1 snapshot restore ${V0}_snap &
PID_1=$!
$CLI_1 snapshot restore ${V1}_snap &
PID_2=$!
wait $PID_1 $PID_2
}
cleanup;
#Create cluster with 3 nodes
TEST launch_cluster 3;
TEST setup_lvm 3
TEST $CLI_1 peer probe $H2;
TEST $CLI_1 peer probe $H3;
EXPECT_WITHIN 20 2 peer_count;
create_volumes
EXPECT 'Created' volinfo_field $V0 'Status';
EXPECT 'Created' volinfo_field $V1 'Status';
start_volumes 2
EXPECT 'Started' volinfo_field $V0 'Status';
EXPECT 'Started' volinfo_field $V1 'Status';
#Snapshot Operations
create_snapshots
TEST snapshot_exists 1 ${V0}_snap
TEST snapshot_exists 1 ${V1}_snap
TEST $CLI_1 snapshot config $V0 snap-max-hard-limit 100
TEST $CLI_1 snapshot config $V1 snap-max-hard-limit 100
TEST glusterfs -s $H1 --volfile-id=/snaps/${V0}_snap/${V0} $M0
sleep 2
TEST umount -f $M0
TEST glusterfs -s $H2 --volfile-id=/snaps/${V1}_snap/${V1} $M0
sleep 2
TEST umount -f $M0
#Clean up
stop_force_volumes 2
EXPECT 'Stopped' volinfo_field $V0 'Status';
EXPECT 'Stopped' volinfo_field $V1 'Status';
restore_snapshots
TEST ! snapshot_exists 1 ${V0}_snap
TEST ! snapshot_exists 1 ${V1}_snap
delete_volumes 2
TEST ! volume_exists $V0
TEST ! volume_exists $V1
cleanup;
|