
Some of the scripts assumed that other scripts would be located in the same directory where the current script was executed. Also fixed the SSL connection creation which depended on an obsolete environment variable causing all out-of-source SSL tests to fail.
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
###
|
|
## @file bug562.sh Regression case for the bug "Wrong error message for Access denied error"
|
|
## - try to connect with bad credestials directly to MariaDB server and via Maxscale
|
|
## - compare error messages
|
|
|
|
rp=`realpath $0`
|
|
export src_dir=`dirname $rp`
|
|
export test_dir=`pwd`
|
|
export test_name=`basename $rp`
|
|
|
|
$test_dir/non_native_setup $test_name
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo "configuring maxscale failed"
|
|
exit 1
|
|
fi
|
|
export ssl_options="--ssl-cert=$src_dir/ssl-cert/client-cert.pem --ssl-key=$src_dir/ssl-cert/client-key.pem"
|
|
|
|
mariadb_err=`mysql -u no_such_user -psome_pwd -h $node_001_network $ssl_option --socket=$node_000_socket test 2>&1`
|
|
maxscale_err=`mysql -u no_such_user -psome_pwd -h $maxscale_IP -P 4006 $ssl_options test 2>&1`
|
|
|
|
echo "MariaDB message"
|
|
echo "$mariadb_err"
|
|
echo " "
|
|
echo "Maxscale message"
|
|
echo "$maxscale_err"
|
|
|
|
res=0
|
|
#echo "$maxscale_err" | grep "$mariadb_err"
|
|
echo "$maxscale_err" |grep "ERROR 1045 (28000): Access denied for user 'no_such_user'@'"
|
|
if [ "$?" != 0 ]; then
|
|
echo "Maxscale message is not ok!"
|
|
echo "Message: $maxscale_err"
|
|
res=1
|
|
else
|
|
echo "Messages are same"
|
|
res=0
|
|
fi
|
|
|
|
$src_dir/copy_logs.sh bug562
|
|
exit $res
|