From 5035659fe3533972d79055d8ab828b0ea24d51ba Mon Sep 17 00:00:00 2001 From: netblue30 Date: Mon, 23 Nov 2015 08:47:25 -0500 Subject: feature testing --- test/features/2.5.exp | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100755 test/features/2.5.exp (limited to 'test/features/2.5.exp') diff --git a/test/features/2.5.exp b/test/features/2.5.exp new file mode 100755 index 000000000..4ba1f5a28 --- /dev/null +++ b/test/features/2.5.exp @@ -0,0 +1,104 @@ +#!/usr/bin/expect -f +# +# interface +# + +set timeout 10 +spawn $env(SHELL) +match_max 100000 + +# +# N +# +send -- "firejail --noprofile --interface=eth0.5\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "/sbin/ifconfig\r" +expect { + timeout {puts "TESTING ERROR 1.4\n";exit} + "eth0.5" +} +expect { + timeout {puts "TESTING ERROR 1.5n";exit} + "Link" +} +expect { + timeout {puts "TESTING ERROR 1.6\n";exit} + "10.10.205.10" +} +expect { + timeout {puts "TESTING ERROR 1.7\n";exit} + "UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1" +} +after 100 +send -- "exit\r" +sleep 1 + +# +# O +# +send -- "firejail --noprofile --overlay --interface=eth0.6\r" +expect { + timeout {puts "TESTING ERROR 2\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "/sbin/ifconfig\r" +expect { + timeout {puts "TESTING ERROR 3.4\n";exit} + "eth0.6" +} +expect { + timeout {puts "TESTING ERROR 3.5n";exit} + "Link" +} +expect { + timeout {puts "TESTING ERROR 3.6\n";exit} + "10.10.206.10" +} +expect { + timeout {puts "TESTING ERROR 3.7\n";exit} + "UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1" +} +after 100 +send -- "exit\r" +sleep 1 + +# +# C +# +send -- "firejail --noprofile --chroot=/tmp/chroot --interface=eth0.7\r" +expect { + timeout {puts "TESTING ERROR 4\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "/sbin/ifconfig\r" +expect { + timeout {puts "TESTING ERROR 5.4\n";exit} + "eth0.7" +} +expect { + timeout {puts "TESTING ERROR 5.5n";exit} + "Link" +} +expect { + timeout {puts "TESTING ERROR 5.6\n";exit} + "10.10.207.10" +} +expect { + timeout {puts "TESTING ERROR 5.7\n";exit} + "UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1" +} +after 100 +send -- "exit\r" +sleep 1 + + +puts "\nall done\n" -- cgit v1.2.3-70-g09d2