blob: f6fa9f729c9611a157e1ef6ae16321888151146d (
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
96
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
. $(dirname $0)/../../snapshot.rc
. $(dirname $0)/../../fileio.rc
. $(dirname $0)/../../nfs.rc
cleanup;
function check_entry_point_exists ()
{
local entry_point=$1;
local _path=$2;
ls -a $_path | grep $entry_point;
if [ $? -eq 0 ]; then
echo 'Y';
else
echo 'N';
fi
}
TEST init_n_bricks 3;
TEST setup_lvm 3;
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume create $V0 $H0:$L1 $H0:$L2 $H0:$L3;
TEST $CLI volume start $V0;
TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 --xlator-option *-snapview-client.snapdir-entry-path=/dir $M0;
TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $N0;
for i in {1..10} ; do echo "file" > $M0/file$i ; done
for i in {11..20} ; do echo "file" > $M0/file$i ; done
mkdir $M0/dir;
for i in {1..10} ; do echo "file" > $M0/dir/file$i ; done
mkdir $M0/dir1;
mkdir $M0/dir2;
for i in {1..10} ; do echo "foo" > $M0/dir1/foo$i ; done
for i in {1..10} ; do echo "foo" > $M0/dir2/foo$i ; done
for i in {11..20} ; do echo "foo" > $M0/dir1/foo$i ; done
for i in {11..20} ; do echo "foo" > $M0/dir2/foo$i ; done
TEST $CLI snapshot create snap1 $V0;
TEST $CLI snapshot activate snap1;
TEST $CLI volume set $V0 features.uss enable;
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'Y' check_if_snapd_exist
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $M0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $N0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $M0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $N0/dir1
TEST $CLI volume set $V0 features.show-snapshot-directory enable;
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'Y' check_entry_point_exists ".snaps" $M0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir1
TEST $CLI volume set $V0 features.show-snapshot-directory disable;
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir1
EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir1
cleanup;
|