58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
###
 | 
						|
## @file run_session_hang.sh
 | 
						|
## run a set of queries in the loop (see setmix.sql) using Perl client
 | 
						|
 | 
						|
rp=`realpath $0`
 | 
						|
export test_dir=`dirname $rp`
 | 
						|
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=$test_dir/ssl-cert/client-cert.pem --ssl-key=$test_dir/ssl-cert/client-key.pem"
 | 
						|
 | 
						|
echo "drop table if exists t1; create table t1(id integer primary key); " | mysql -u$node_user -p$node_password -h$maxscale_IP -P 4006 $ssl_options test
 | 
						|
 | 
						|
if [ $? -ne 0 ]
 | 
						|
then
 | 
						|
    echo "Failed to create table test.t1"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
res=0
 | 
						|
 | 
						|
$test_dir/session_hang/run_setmix.sh &
 | 
						|
perl $test_dir/session_hang/simpletest.pl
 | 
						|
if [ $? -ne 0 ]
 | 
						|
then
 | 
						|
	res=1
 | 
						|
fi
 | 
						|
 | 
						|
sleep 15
 | 
						|
 | 
						|
echo "show databases;" |  mysql -u$node_user -p$node_password -h$maxscale_IP -P 4006 $ssl_options
 | 
						|
if [ $? -ne 0 ]
 | 
						|
then
 | 
						|
    res=1
 | 
						|
fi
 | 
						|
 | 
						|
echo "Waiting for jobs"
 | 
						|
wait
 | 
						|
 | 
						|
if [ $res -eq 1 ]
 | 
						|
then
 | 
						|
    echo "Test FAILED"
 | 
						|
else
 | 
						|
    echo "Test PASSED"
 | 
						|
fi
 | 
						|
 | 
						|
$test_dir/copy_logs.sh run_session_hang
 | 
						|
 | 
						|
exit $res
 |