2013-11-26 22:53:19 +00:00
#! /usr/bin/perl -w -I ..
#
# MySQL Database Server Tests via check_mysql
#
#
#
# These are the database permissions required for this test:
2023-10-18 07:29:37 +00:00
# GRANT SELECT ON $db.* TO $user@$host IDENTIFIED BY '$password';
2013-11-26 22:53:19 +00:00
# GRANT SUPER, REPLICATION CLIENT ON *.* TO $user@$host;
# Check with:
# mysql -u$user -p$password -h$host $db
use strict ;
use Test::More ;
use NPTest ;
use vars qw( $tests ) ;
plan skip_all = > "check_mysql not compiled" unless ( - x "check_mysql" ) ;
2013-11-26 22:55:28 +00:00
plan tests = > 15 ;
2013-11-26 22:53:19 +00:00
my $ bad_login_output = '/Access denied for user /' ;
2020-12-10 20:00:09 +00:00
my $ mysqlserver = getTestParameter ( "NP_MYSQL_SERVER" , "A MySQL Server hostname or IP with no slaves setup" ) ;
my $ mysqlsocket = getTestParameter ( "NP_MYSQL_SOCKET" , "Full path to a MySQL Server socket with no slaves setup" ) ;
2023-10-18 07:29:37 +00:00
my $ mysql_login_details = getTestParameter ( "NP_MYSQL_LOGIN_DETAILS" , "Command line parameters to specify login access (requires REPLICATION CLIENT privileges)" , "-u test -ptest" ) ;
2020-12-10 20:00:09 +00:00
my $ with_slave = getTestParameter ( "NP_MYSQL_WITH_SLAVE" , "MySQL server with slaves setup" ) ;
2023-10-18 07:29:37 +00:00
my $ with_slave_login = getTestParameter ( "NP_MYSQL_WITH_SLAVE_LOGIN" , "Login details for server with slave (requires REPLICATION CLIENT privileges)" , $ mysql_login_details || "-u test -ptest" ) ;
2013-11-26 22:53:19 +00:00
my $ result ;
SKIP: {
skip "No mysql server defined" , 5 unless $ mysqlserver ;
$ result = NPTest - > testCmd ( "./check_mysql -H $mysqlserver $mysql_login_details" ) ;
cmp_ok ( $ result - > return_code , '==' , 0 , "Login okay" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -H $mysqlserver -u dummy -pdummy" ) ;
cmp_ok ( $ result - > return_code , '==' , 2 , "Login failure" ) ;
like ( $ result - > output , $ bad_login_output , "Expected login failure message" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -S -H $mysqlserver $mysql_login_details" ) ;
cmp_ok ( $ result - > return_code , "==" , 1 , "No slaves defined" ) ;
like ( $ result - > output , "/No slaves defined/" , "Correct error message" ) ;
}
2013-11-26 22:55:28 +00:00
SKIP: {
skip "No mysql socket defined" , 5 unless $ mysqlsocket ;
$ result = NPTest - > testCmd ( "./check_mysql -s $mysqlsocket $mysql_login_details" ) ;
cmp_ok ( $ result - > return_code , '==' , 0 , "Login okay" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -s $mysqlsocket -u dummy -pdummy" ) ;
cmp_ok ( $ result - > return_code , '==' , 2 , "Login failure" ) ;
like ( $ result - > output , $ bad_login_output , "Expected login failure message" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -S -s $mysqlsocket $mysql_login_details" ) ;
cmp_ok ( $ result - > return_code , "==" , 1 , "No slaves defined" ) ;
like ( $ result - > output , "/No slaves defined/" , "Correct error message" ) ;
}
2013-11-26 22:53:19 +00:00
SKIP: {
skip "No mysql server with slaves defined" , 5 unless $ with_slave ;
$ result = NPTest - > testCmd ( "./check_mysql -H $with_slave $with_slave_login" ) ;
cmp_ok ( $ result - > return_code , '==' , 0 , "Login okay" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -S -H $with_slave $with_slave_login" ) ;
cmp_ok ( $ result - > return_code , "==" , 0 , "Slaves okay" ) ;
$ result = NPTest - > testCmd ( "./check_mysql -S -H $with_slave $with_slave_login -w 60" ) ;
cmp_ok ( $ result - > return_code , '==' , 0 , 'Slaves are not > 60 seconds behind' ) ;
$ result = NPTest - > testCmd ( "./check_mysql -S -H $with_slave $with_slave_login -w 60:" ) ;
cmp_ok ( $ result - > return_code , '==' , 1 , 'Alert warning if < 60 seconds behind' ) ;
like ( $ result - > output , "/^SLOW_SLAVE WARNING:/" , "Output okay" ) ;
}