mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 15a291e4e0
			
		
	
	
	15a291e4e0
	
	
	
		
			
			* fix paths to work when installed and not only from the source dir
* don't use a cnf file (no need to restart the server for this)
* set MYSQL_HOST to a valid hostname when testing an invalid MARIADB_HOST
* use invalid ip to have clients fail quickly and not waste time
  on resolving the invalid hostname
followup for eedbb901e5
		
	
			
		
			
				
	
	
		
			87 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| -- source include/have_log_bin.inc
 | |
| 
 | |
| # Set up environment varibles for client programs
 | |
| # The environment variables for client programs have default options file
 | |
| # They interfere with the MTR test so I am creating new variables for them
 | |
| 
 | |
| --let MARIADBADMIN = $EXE_MYSQL-admin
 | |
| --let MARIADBBINLOG = $EXE_MYSQL-binlog
 | |
| --let MARIADBCHECK = $EXE_MYSQL-check
 | |
| --let MARIADBDUMP = $EXE_MYSQL-dump
 | |
| --let MARIADBIMPORT = $EXE_MYSQL-import
 | |
| --let MARIADBSHOW = $EXE_MYSQL-show
 | |
| --let MARIADBSLAP = $EXE_MYSQL-slap
 | |
| 
 | |
| # Creating a table for the client programs
 | |
| USE test;
 | |
| CREATE TABLE pet (name VARCHAR(20));
 | |
| 
 | |
| # Creating a data file for mysqlimport
 | |
| write_file $MYSQL_TMP_DIR/pet;
 | |
| buster
 | |
| bob
 | |
| EOF
 | |
| 
 | |
| # Options for client program
 | |
| --let $options = --user=root --port=$MASTER_MYPORT --disable-ssl-verify-server-cert
 | |
| 
 | |
| # Positive test for client program with MARIADB_HOST
 | |
| --let MARIADB_HOST=localhost
 | |
| --let MYSQL_HOST=nonexistent-server
 | |
| --echo $MARIADB_HOST
 | |
| 
 | |
| --exec $EXE_MYSQL $options -e "SHOW DATABASES;" > /dev/null 2>&1
 | |
| --exec $MARIADBADMIN $options processlist > /dev/null 2>&1
 | |
| --exec $MARIADBBINLOG $options --read-from-remote-server master-bin.000001 > /dev/null 2>&1
 | |
| --exec $MARIADBCHECK $options -c --databases test > /dev/null 2>&1
 | |
| --exec $MARIADBDUMP $options test > $MYSQL_TMP_DIR/tmp.sql > /dev/null 2>&1
 | |
| --exec $MARIADBIMPORT $options test --local $MYSQL_TMP_DIR/pet > /dev/null 2>&1
 | |
| --exec $MARIADBSHOW $options test > /dev/null 2>&1
 | |
| --exec $MARIADBSLAP $options > /dev/null 2>&1
 | |
| 
 | |
| #Set up negative test with invalid server
 | |
| --echo ****************
 | |
| --let MARIADB_HOST=255.255.255.255
 | |
| --let MYSQL_HOST=localhost
 | |
| --echo $MARIADB_HOST
 | |
| 
 | |
| # Now run the same command as in the postive test case
 | |
| # Client programs are expected to fail since the server does not exist
 | |
| # Some client program fails with error 1 and some fails wtih error 2
 | |
| 
 | |
| --error 1
 | |
| --exec $EXE_MYSQL $options -e "SHOW DATABASES;" > /dev/null 2>&1
 | |
| 
 | |
| --error 1
 | |
| --exec $MARIADBADMIN $options processlist > /dev/null 2>&1
 | |
| 
 | |
| --error 1
 | |
| --exec $MARIADBBINLOG $options --read-from-remote-server master-bin.000001 > /dev/null 2>&1
 | |
| 
 | |
| --error 2
 | |
| --exec $MARIADBCHECK $options -c --databases test > /dev/null 2>&1
 | |
| 
 | |
| --error 2
 | |
| --exec $MARIADBDUMP $options test > $MYSQL_TMP_DIR/tmp.sql > /dev/null 2>&1
 | |
| 
 | |
| --error 1
 | |
| --exec $MARIADBIMPORT $options test $MYSQL_TMP_DIR/pet > /dev/null 2>&1
 | |
| 
 | |
| --error 1
 | |
| --exec $MARIADBSLAP $options > /dev/null 2>&1
 | |
| 
 | |
| # Run the same command but with '--host' to verify command line input overrides env variable
 | |
| --exec $EXE_MYSQL $options --host localhost -e "SHOW DATABASES;" > /dev/null 2>&1
 | |
| --exec $MARIADBADMIN $options --host localhost processlist > /dev/null 2>&1
 | |
| --exec $MARIADBBINLOG $options --host localhost --read-from-remote-server master-bin.000001 > /dev/null 2>&1
 | |
| --exec $MARIADBCHECK $options --host localhost -c --databases test > /dev/null 2>&1
 | |
| --exec $MARIADBDUMP $options --host localhost test > $MYSQL_TMP_DIR/tmp.sql > /dev/null 2>&1
 | |
| --exec $MARIADBIMPORT $options --host localhost test --local $MYSQL_TMP_DIR/pet > /dev/null 2>&1
 | |
| --exec $MARIADBSHOW $options --host localhost test > /dev/null 2>&1
 | |
| --exec $MARIADBSLAP $options --host localhost > /dev/null 2>&1
 | |
| 
 | |
| # Clean up
 | |
| --echo Done
 | |
| DROP TABLE pet;
 | |
| --remove_file $MYSQL_TMP_DIR/tmp.sql
 | |
| --remove_file $MYSQL_TMP_DIR/pet
 |