blob: 526f8f20612deb29d35f2566fb18300dc51d4a06 (
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
|
#!/bin/bash
## Testcase:
## Avoid creating any EMPTY changelog(over the changelog rollover time)
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
. $(dirname $0)/../../changelog.rc
cleanup;
## override current changelog rollover-time
## to avoid sleeping for long duration.
CL_RO_TIME=5
## Start and create a volume
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume create $V0 $H0:$B0/$V0"1";
## Verify volume is created
EXPECT "$V0" volinfo_field $V0 'Volume Name';
EXPECT 'Created' volinfo_field $V0 'Status';
## Start volume and verify
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';
## Set changelog ON
TEST $CLI volume set $V0 changelog.changelog on;
EXPECT 1 count_changelog_files $B0/${V0}1
## Set changelog rollover time
TEST $CLI volume set $V0 changelog.rollover-time $CL_RO_TIME;
## Wait for changelog rollover time
sleep $CL_RO_TIME
## NO additional empty changelogs created
EXPECT 1 count_changelog_files $B0/${V0}1
|