mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
0ec1397d03
mysql-test/lib/mtr_process.pl: Apply manually the merge from 5.0 mysql-test/mysql-test-run.pl: Apply manually the merge from 5.0 mysql-test/r/grant.result: A post-merge fix. mysql-test/r/im_cmd_line.result: A post-merge fix. mysql-test/r/im_instance_conf.result: A post-merge fix. mysql-test/r/sp.result: A post-merge fix. mysql-test/t/grant.test: A post-merge fix. mysql-test/t/im_cmd_line.imtest: A post-merge fix. mysql-test/t/im_instance_conf.imtest: A post-merge fix. sql/field.cc: A post-merge fix. sql/item_cmpfunc.cc: A post-merge fix. sql/sp_head.cc: A post-merge fix. sql/sp_head.h: A post-merge fix.
68 lines
1.9 KiB
Text
68 lines
1.9 KiB
Text
###########################################################################
|
|
#
|
|
# Tests for user-management command-line options.
|
|
#
|
|
###########################################################################
|
|
|
|
--source include/im_check_env.inc
|
|
|
|
###########################################################################
|
|
|
|
# List users so we are sure about starting conditions.
|
|
|
|
--echo --> Listing users...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --list-users 2>&1 >/dev/null
|
|
--echo
|
|
|
|
# Add a new user.
|
|
|
|
--echo ==> Adding user 'testuser'...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --add-user --username=testuser --password=abc 2>&1 >/dev/null
|
|
--echo
|
|
|
|
--echo --> IM password file:
|
|
--exec cat $IM_PASSWORD_PATH
|
|
--echo --> EOF
|
|
--echo
|
|
|
|
--echo --> Printing out line for 'testuser'...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --print-password-line --username=testuser --password=abc | tail -1
|
|
--echo
|
|
|
|
--echo --> Listing users...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --list-users 2>&1 >/dev/null
|
|
--echo
|
|
|
|
# Edit user's attributes.
|
|
|
|
--echo ==> Changing the password of 'testuser'...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --edit-user --username=testuser --password=xyz 2>&1 >/dev/null
|
|
--echo
|
|
|
|
--echo --> IM password file:
|
|
--exec cat $IM_PASSWORD_PATH
|
|
--echo --> EOF
|
|
--echo
|
|
|
|
--echo --> Printing out line for 'testuser'...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --print-password-line --username=testuser --password=xyz | tail -1
|
|
--echo
|
|
|
|
--echo --> Listing users...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --list-users 2>&1 >/dev/null
|
|
--echo
|
|
|
|
# Drop user.
|
|
|
|
--echo ==> Dropping user 'testuser'...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --drop-user --username=testuser 2>&1 >/dev/null
|
|
--echo
|
|
|
|
--echo --> IM password file:
|
|
--exec cat $IM_PASSWORD_PATH
|
|
--echo --> EOF
|
|
--echo
|
|
|
|
--echo --> Listing users...
|
|
--exec $IM_EXE --defaults-file="$IM_DEFAULTS_PATH" --list-users 2>&1 >/dev/null
|
|
--echo
|