1
0
liminix/tests/pppoe/getaddress.expect

36 lines
922 B
Plaintext
Raw Normal View History

2022-09-26 09:47:29 +00:00
set timeout 60
spawn socat unix-connect:vm/console -
2025-02-25 23:32:05 +00:00
expect "s6-linux-init"
2022-09-26 09:47:29 +00:00
send "\r\n"
expect "#"
2025-02-25 23:32:05 +00:00
send "PS1=\$(echo 'I1JFQURZIyA=' | base64 -d); stty -echo\n"
expect "#READY#"
2022-09-26 09:47:29 +00:00
set FINISHED 0
set EXIT "1"
2023-06-20 22:39:46 +00:00
while { $FINISHED < 10 } {
2025-02-25 23:32:05 +00:00
send "ip address show dev ppp0 | grep ppp0\n"
2022-09-26 09:47:29 +00:00
expect {
2023-06-20 22:39:46 +00:00
"192.168.100.1" { set FINISHED 20; set EXIT 0; }
2025-02-25 23:32:05 +00:00
"can't find device" { send_user "waiting ..." ; sleep 3 }
"DOWN" { send_user "waiting ..." ; sleep 3 }
2022-09-26 09:47:29 +00:00
}
set FINISHED [ expr $FINISHED + 1 ]
}
2025-02-25 23:32:05 +00:00
send "nft list set ip table-ip wan || touch /non/existent\n"
expect {
"ppp0" { puts "ppp0 found " }
"{ }" { puts "missing ifname"; exit 1 }
"No such file or directory" { exit 1 }
}
expect "#READY#"
2022-09-26 09:47:29 +00:00
2025-02-25 23:32:05 +00:00
send "nft list set ip table-ip lan || touch /non/existent\n"
expect {
"lan" { puts "lan found" }
"{ }" { puts "missing ifname"; exit 1 }
"No such file or directory" { exit 1 }
}
expect "#READY#"
2022-09-26 09:47:29 +00:00
exit $EXIT