mirror of
https://github.com/gluster/glusterfs.git
synced 2026-02-05 06:47:35 +01:00
glfs_mgmt_init is only called for glfs_set_volfile_server, but secure_mgmt is also required to use glfs_set_volfile with SSL. fixes: #829 Change-Id: Ibc769fe634d805e085232f85ce6e1c48bf4acc66
77 lines
2.1 KiB
Bash
Executable File
77 lines
2.1 KiB
Bash
Executable File
#!/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
|