From 35004af7d8f6ff19908fb89e25e532113afa26f4 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Wed, 9 Nov 2016 19:17:06 -0500 Subject: testing --- test/network/firemon-route.exp | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 test/network/firemon-route.exp (limited to 'test/network/firemon-route.exp') diff --git a/test/network/firemon-route.exp b/test/network/firemon-route.exp new file mode 100755 index 000000000..19a705778 --- /dev/null +++ b/test/network/firemon-route.exp @@ -0,0 +1,49 @@ +#!/usr/bin/expect -f + +set timeout 10 +spawn $env(SHELL) +match_max 100000 + +send -- "firejail --name=test1\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "Child process initialized" +} +sleep 1 + +spawn $env(SHELL) +send -- "firejail --name=test2\r" +expect { + timeout {puts "TESTING ERROR 1\n";exit} + "Child process initialized" +} +sleep 1 + +spawn $env(SHELL) +send -- "firemon --route\r" +expect { + timeout {puts "TESTING ERROR 2\n";exit} + "name=test1" +} +expect { + timeout {puts "TESTING ERROR 3\n";exit} + "0.0.0.0/0 via 192.168.1.1, dev eth0, metric 0" {puts "Debian testing\n";} + "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 1024" {puts "Centos 7 testing\n";} + "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 0" {puts "OpenSUSE testing\n";} + "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 100" {puts "Arch testing\n";} +} +expect { + timeout {puts "TESTING ERROR 4\n";exit} + "10.10.30.0/24, dev br1, scope link src 10.10.30.1" +} +expect { + timeout {puts "TESTING ERROR 5\n";exit} + "10.10.50.0/24, dev br3, scope link src 10.10.50.1" +} +expect { + timeout {puts "TESTING ERROR 6\n";exit} + "name=test2" +} +after 100 + +puts "\nalldone\n" -- cgit v1.2.3-70-g09d2