mariadb/mysql-test/t/ssl.test
msvensson@neptunus.(none) cb96f195c8 Improved testing of ssl and compression
- Added show status variable "compression" for checking that compression is turned on.
 - Updated show status variable "have_openssl" to be set to DISABLED if server supports ssl but it's not turned on to accept incoming ssl connections.  
 - Setup server to accept ssl connections from clients ig that is supported by server
 - New tests 
   - ssl - Run with ssl turned on
   - ssl_compress - Run with ssl and compression turned on
   - compress - Run with compression turned in 
 - Updated test 
   - openssl_1, rpl_openssl1 - Changed to run if server supports ssl
2005-10-04 15:43:55 +02:00

21 lines
351 B
Text

# Turn on ssl between the client and server
# and run a number of tests
-- source include/have_openssl.inc
enable_ssl;
# Reconnect to turn ssl on for
# default connection
disconnect default;
connect (default,localhost,root,,);
# Check ssl turned on
SHOW STATUS LIKE 'Ssl_cipher';
# Source select test case
-- source t/select.test
disable_ssl;