From 1cb3f220153b733e9fe86fc0b5ed6d7dbe27670b Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sun, 22 Nov 2015 21:50:28 -0500 Subject: feature testing --- test/features/2.2.exp | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100755 test/features/2.2.exp (limited to 'test/features/2.2.exp') diff --git a/test/features/2.2.exp b/test/features/2.2.exp new file mode 100755 index 000000000..7dc1e6a7d --- /dev/null +++ b/test/features/2.2.exp @@ -0,0 +1,105 @@ +#!/usr/bin/expect -f +# +# DNS +# + +set timeout 10 +spawn $env(SHELL) +match_max 100000 + +# +# N +# +send -- "firejail --noprofile --dns=4.2.2.1\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "dig google.com\r" +expect { + timeout {puts "TESTING ERROR 1\n";exit} + "ANSWER SECTION" +} +expect { + timeout {puts "TESTING ERROR 1.1\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 1.2\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 1.3\n";exit} + "SERVER: 4.2.2.1" +} +after 100 +send -- "exit\r" +sleep 1 + + +# +# O +# +send -- "firejail --noprofile --dns=4.2.2.1 --overlay\r" +expect { + timeout {puts "TESTING ERROR 2\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "dig google.com\r" +expect { + timeout {puts "TESTING ERROR 3\n";exit} + "ANSWER SECTION" +} +expect { + timeout {puts "TESTING ERROR 3.1\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 3.2\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 3.3\n";exit} + "SERVER: 4.2.2.1" +} +after 100 +send -- "exit\r" +sleep 1 + +# +# C +# +send -- "firejail --noprofile --dns=4.2.2.1 --chroot=/tmp/chroot\r" +expect { + timeout {puts "TESTING ERROR 4\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "dig google.com\r" +expect { + timeout {puts "TESTING ERROR 5\n";exit} + "ANSWER SECTION" +} +expect { + timeout {puts "TESTING ERROR 5.1\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 5.2\n";exit} + "google.com" +} +expect { + timeout {puts "TESTING ERROR 5.3\n";exit} + "SERVER: 4.2.2.1" +} +after 100 +send -- "exit\r" +sleep 1 + + +puts "\nall done\n" -- cgit v1.2.3-54-g00ecf