diff options
Diffstat (limited to 'cpp/src/tests/sasl_test_setup.sh')
-rwxr-xr-x | cpp/src/tests/sasl_test_setup.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cpp/src/tests/sasl_test_setup.sh b/cpp/src/tests/sasl_test_setup.sh new file mode 100755 index 0000000000..68858b2c0a --- /dev/null +++ b/cpp/src/tests/sasl_test_setup.sh @@ -0,0 +1,21 @@ +#! /bin/bash + +SASL_PW=/usr/sbin/saslpasswd2 +test -x $SASL_PW || { echo Skipping SASL test, saslpasswd2 not found; exit 0; } + +mkdir -p sasl_config + +# Create configuration file. +cat > sasl_config/qpidd.conf <<EOF +pwcheck_method: auxprop +auxprop_plugin: sasldb +sasldb_path: ./sasl_config/qpidd.sasldb +sql_select: dummy select +EOF + +# Populate temporary sasl db. +SASLTEST_DB=./sasl_config/qpidd.sasldb +rm -f $SASLTEST_DB +echo zig | $SASL_PW -c -p -f $SASLTEST_DB -u QPID zig +echo zag | $SASL_PW -c -p -f $SASLTEST_DB -u QPID zag + |