mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
afde33fc6f
Post change of 8447edb747
, --plugin-dir
is set in the default my.cnf file under [client]. The value is automatically
detected during mtr startup.
37 lines
904 B
Text
37 lines
904 B
Text
let $PAM_PLUGIN_VERSION= $AUTH_PAM_SO;
|
|
--source pam_init.inc
|
|
|
|
show variables like 'pam_use_%';
|
|
|
|
--write_file $MYSQLTEST_VARDIR/tmp/pam_good.txt
|
|
not very secret challenge
|
|
9225
|
|
select user(), current_user(), database();
|
|
EOF
|
|
|
|
--echo #
|
|
--echo # same test as in pam.test now fails
|
|
--echo #
|
|
--error 1
|
|
--exec $MYSQL_TEST -u test_pam < $MYSQLTEST_VARDIR/tmp/pam_good.txt
|
|
--error 1
|
|
--exec $MYSQL_TEST -u test_pam -p'something' < $MYSQLTEST_VARDIR/tmp/pam_good.txt
|
|
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/pam_good.txt
|
|
|
|
--echo #
|
|
--echo # success
|
|
--echo #
|
|
--exec $MYSQL -u test_pam -p'cleartext good' -e 'select user(), current_user(), database()'
|
|
|
|
--echo #
|
|
--echo # failure
|
|
--echo #
|
|
--error 1
|
|
--exec $MYSQL -u test_pam -p'cleartext bad' -e 'select user(), current_user(), database()'
|
|
|
|
drop user test_pam;
|
|
drop user pam_test;
|
|
let $count_sessions= 1;
|
|
--source include/wait_until_count_sessions.inc
|
|
uninstall plugin pam;
|