2022-09-26 09:47:29 +00:00
|
|
|
set timeout 60
|
|
|
|
|
2023-02-08 22:16:39 +00:00
|
|
|
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"
|
2023-03-18 19:16:27 +00:00
|
|
|
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"
|
2025-03-09 20:42:02 +00:00
|
|
|
while { $FINISHED < 20 } {
|
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 {
|
2025-03-09 20:42:02 +00:00
|
|
|
"192.168.100.1" { set FINISHED 200; 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-28 00:43:20 +00:00
|
|
|
expect "#READY#"
|
2025-03-09 20:42:02 +00:00
|
|
|
send "s6-svwait -U /run/service/wan.link.pppoe\n"
|
|
|
|
expect "#READY#"
|
|
|
|
|
|
|
|
set timeout 30
|
|
|
|
send "nft list set ip table-ip lan || touch /non/existent\n"
|
2025-02-25 23:32:05 +00:00
|
|
|
expect {
|
2025-03-09 20:42:02 +00:00
|
|
|
"lan" { puts "lan found" }
|
2025-02-25 23:32:05 +00:00
|
|
|
"{ }" { puts "missing ifname"; exit 1 }
|
|
|
|
"No such file or directory" { exit 1 }
|
|
|
|
}
|
2025-03-09 20:42:02 +00:00
|
|
|
|
2025-02-25 23:32:05 +00:00
|
|
|
expect "#READY#"
|
2022-09-26 09:47:29 +00:00
|
|
|
|
2025-03-09 20:42:02 +00:00
|
|
|
# if the test fails for no apparent reason, it is quite likely because
|
|
|
|
# the firewall hasn't had time to reload after the new interface
|
|
|
|
# appears and you just have to make this sleep longer. Ew, yes
|
|
|
|
send "sleep 10; nft list set ip table-ip wan || touch /non/existent\n"
|
2025-02-25 23:32:05 +00:00
|
|
|
expect {
|
2025-03-09 20:42:02 +00:00
|
|
|
"ppp0" { puts "ppp0 found " }
|
2025-02-25 23:32:05 +00:00
|
|
|
"{ }" { puts "missing ifname"; exit 1 }
|
|
|
|
"No such file or directory" { exit 1 }
|
2025-03-09 20:42:02 +00:00
|
|
|
timeout { exit 1 }
|
2025-02-25 23:32:05 +00:00
|
|
|
}
|
|
|
|
expect "#READY#"
|
2025-03-09 20:42:02 +00:00
|
|
|
|
2022-09-26 09:47:29 +00:00
|
|
|
exit $EXIT
|