summaryrefslogtreecommitdiffstats
path: root/tests/basic/glusterd/thin-arbiter-volume-probe.t
blob: acc6943806d5b4213a192d83d89edc7669f03394 (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
#!/bin/bash

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

#This tests if the thin-arbiter-count is transferred to the other peer.
function check_peers {
        $CLI_1 peer status | grep 'Peer in Cluster (Connected)' | wc -l
}

cleanup;

TEST launch_cluster 2;
TEST $CLI_1 peer probe $H2;

EXPECT_WITHIN $PROBE_TIMEOUT 1 check_peers

kill_glusterd 2
$CLI_1 volume create $V0 replica 2 thin-arbiter 1 $H0:$B0/b{1..3}
TEST $glusterd_2
EXPECT_WITHIN $PROBE_TIMEOUT 1 check_peers
EXPECT "1 x 2 = 2" volinfo_field_1 $V0 "Number of Bricks"
EXPECT "1 x 2 = 2" volinfo_field_2 $V0 "Number of Bricks"

cleanup;