shadow/tests/login/02_login_user/login.exp

21 lines
306 B
Plaintext
Raw Normal View History

#!/usr/bin/expect
set timeout 2
expect_after default {puts "\nFAIL"; exit 1}
spawn /bin/bash
expect "# "
send "login myuser\r"
expect "Password: "
send "myuserF00barbaz\r"
expect "$ "
send "id\r"
expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
expect "$ "
send "exit\r"
exit 0