summaryrefslogtreecommitdiff
path: root/tests/login/02_login_user/login.exp
blob: c8b9b34d331adce7ab9077f5ec72155452e10b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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