shadow/tests/su/02/env_special-options_-l.exp
Serge Hallyn 8728bd87ed tests: print default timeout message to stderr
Signed-off-by: Serge Hallyn <serge@hallyn.com>
2023-02-09 09:55:04 -06:00

55 lines
1.1 KiB
Plaintext
Executable File

#!/usr/bin/expect
if {$argc == 1} {
set command [lindex $argv 0]
} else {
set command ""
}
set timeout 2
expect_after default {puts stderr "\nFAIL"; exit 1}
spawn /bin/bash
expect "# "
send "id\r"
expect "uid=0(root) gid=0(root) groups=0(root)\r"
expect "# "
send "export PATH=bar:\$PATH\r"
expect "# "
send "echo \"PATH=\\\"\$PATH\\\"\"\r"
expect "# "
#=============================================================================
#
# su -l, make a login shell
#
#=============================================================================
send "/bin/su - $command myuser\r"
expect "$ "
send "id\n"
expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
expect "$ "
send_user "\n# PATH should be '/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games'"
send "\r"
expect "$ "
send "echo \"PATH=\\\"\$PATH\\\"\"\r"
expect "PATH=\"/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games\"\r"
expect "$ "
send "echo \"'\$HOME'\$USER'\$LOGNAME'\$SHELL'\"\r"
expect "'/home/'myuser'myuser'/bin/sh'\r"
expect "$ "
send "exit\r"
expect "# "
puts "\nPASS"
exit 0