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
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
. $(dirname $0)/../../traps.rc
. $(dirname $0)/../../ssl.rc
cleanup;
sed -e "s,@@HOSTNAME@@,${H0},g" -e "s,@@BRICKPATH@@,${B0}/brick1,g" \
-e "s,@@SSL@@,off,g" \
$(dirname ${0})/protocol-client-ssl.vol.in \
> $(dirname ${0})/protocol-client-ssl.vol
TEST create_self_signed_certs
TEST glusterd
TEST $CLI volume create $V0 $H0:$B0/brick1;
EXPECT 'Created' volinfo_field $V0 'Status';
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';
EXPECT_WITHIN $CHILD_UP_TIMEOUT "1" online_brick_count
logdir=`gluster --print-logdir`
TEST build_tester $(dirname $0)/gfapi-ssl-load-volfile-test.c -lgfapi
# Run test without I/O or management encryption
TEST $(dirname $0)/gfapi-ssl-load-volfile-test $H0 $V0 \
$(dirname ${0})/protocol-client-ssl.vol \
$logdir/gfapi-ssl-load-volfile-test.log
# Enable management encryption
touch $GLUSTERD_WORKDIR/secure-access
killall_gluster
TEST glusterd
EXPECT_WITHIN $CHILD_UP_TIMEOUT "1" online_brick_count
# Run test with management encryption (No I/O encryption)
TEST $(dirname $0)/gfapi-ssl-load-volfile-test $H0 $V0 \
$(dirname ${0})/protocol-client-ssl.vol \
$logdir/gfapi-ssl-load-volfile-test.log
# Enable I/O encryption
TEST $CLI volume set $V0 server.ssl on
killall_gluster
sed -e "s,@@HOSTNAME@@,${H0},g" -e "s,@@BRICKPATH@@,${B0}/brick1,g" \
-e "s,@@SSL@@,on,g" \
$(dirname ${0})/protocol-client-ssl.vol.in \
> $(dirname ${0})/protocol-client-ssl.vol
TEST glusterd
EXPECT_WITHIN $CHILD_UP_TIMEOUT "1" online_brick_count
# Run test without I/O or management encryption
TEST $(dirname $0)/gfapi-ssl-load-volfile-test $H0 $V0 \
$(dirname ${0})/protocol-client-ssl.vol \
$logdir/gfapi-ssl-load-volfile-test.log
cleanup_tester $(dirname $0)/gfapi-ssl-load-volfile-test
TEST $CLI volume stop $V0
TEST $CLI volume delete $V0
cleanup;
# NetBSD build scripts are not up to date therefore this test
# is failing in NetBSD. Therefore skipping the test in NetBSD
# as of now.
#G_TESTDEF_TEST_STATUS_NETBSD7=KNOWN_ISSUE,BUG=000000
|