summaryrefslogtreecommitdiff
path: root/tests/login/03_login_check_tty/login.exp
blob: cb511242eabef852e09bbfe621e89a45a78bab9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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 "# expecting c--x-wx--T 88 424242/myuser 5/tty\r"
expect "$ "
send "stat -c '%A %t %u/%U %g/%G' `tty`\r"
expect "crw------- 88 424242/myuser 5/tty\r"
expect "$ "
send "exit\r"

exit 0