aboutsummaryrefslogtreecommitdiffstats
path: root/test/stress/net_macvlan.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-12-07 21:14:23 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-12-07 21:14:23 -0500
commitc6ea2db9110feb68fe181188384c31254cdec945 (patch)
treea9a942e7ce10ff3d0bde168fcceb51c38f7f3b4b /test/stress/net_macvlan.exp
parentfixes (diff)
downloadfirejail-c6ea2db9110feb68fe181188384c31254cdec945.tar.gz
firejail-c6ea2db9110feb68fe181188384c31254cdec945.tar.zst
firejail-c6ea2db9110feb68fe181188384c31254cdec945.zip
testing
Diffstat (limited to 'test/stress/net_macvlan.exp')
-rwxr-xr-xtest/stress/net_macvlan.exp93
1 files changed, 93 insertions, 0 deletions
diff --git a/test/stress/net_macvlan.exp b/test/stress/net_macvlan.exp
new file mode 100755
index 000000000..6ea4a6adf
--- /dev/null
+++ b/test/stress/net_macvlan.exp
@@ -0,0 +1,93 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2016 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10# check the existing address
11spawn $env(SHELL)
12send -- "firejail --net=eth0 --ip=192.168.1.60\r"
13expect {
14 timeout {puts "TESTING ERROR 1.1\n";puts "Please open a sandbox on 192.168.1.60\n";exit}
15 "192.168.1.60 is interface eth0 address"
16}
17
18
19
20# grab 30 ip addresses
21set MAXi 229
22set i 200
23while { $i <= $MAXi } {
24 spawn $env(SHELL)
25 send -- "firejail --net=eth0 --ip=192.168.1.$i\r"
26 expect {
27 timeout {puts "TESTING ERROR 0\n";exit}
28 "Child process initialized"
29 }
30 incr i
31 after 100
32}
33
34
35# check an existing address
36spawn $env(SHELL)
37send -- "firejail --net=eth0 --ip=192.168.1.200\r"
38expect {
39 timeout {puts "TESTING ERROR 1\n";exit}
40 "the address 192.168.1.200 is already in use"
41}
42
43
44set MAXi 254
45set i 2
46while { $i <= $MAXi } {
47 spawn $env(SHELL)
48 send -- "firejail --net=eth0\r"
49 expect {
50 timeout {puts "TESTING ERROR 2.1\n";exit}
51 "192.168.1.60" {puts "TESTING ERROR 2.2\n";exit}
52 "192.168.1.200" {puts "TESTING ERROR 3\n";exit}
53 "192.168.1.201" {puts "TESTING ERROR 3\n";exit}
54 "192.168.1.202" {puts "TESTING ERROR 3\n";exit}
55 "192.168.1.203" {puts "TESTING ERROR 3\n";exit}
56 "192.168.1.204" {puts "TESTING ERROR 3\n";exit}
57 "192.168.1.205" {puts "TESTING ERROR 3\n";exit}
58 "192.168.1.206" {puts "TESTING ERROR 3\n";exit}
59 "192.168.1.207" {puts "TESTING ERROR 3\n";exit}
60 "192.168.1.208" {puts "TESTING ERROR 3\n";exit}
61 "192.168.1.209" {puts "TESTING ERROR 3\n";exit}
62 "192.168.1.210" {puts "TESTING ERROR 3\n";exit}
63 "192.168.1.211" {puts "TESTING ERROR 3\n";exit}
64 "192.168.1.212" {puts "TESTING ERROR 3\n";exit}
65 "192.168.1.213" {puts "TESTING ERROR 3\n";exit}
66 "192.168.1.214" {puts "TESTING ERROR 3\n";exit}
67 "192.168.1.215" {puts "TESTING ERROR 3\n";exit}
68 "192.168.1.216" {puts "TESTING ERROR 3\n";exit}
69 "192.168.1.217" {puts "TESTING ERROR 3\n";exit}
70 "192.168.1.218" {puts "TESTING ERROR 3\n";exit}
71 "192.168.1.219" {puts "TESTING ERROR 3\n";exit}
72 "192.168.1.220" {puts "TESTING ERROR 3\n";exit}
73 "192.168.1.221" {puts "TESTING ERROR 3\n";exit}
74 "192.168.1.222" {puts "TESTING ERROR 3\n";exit}
75 "192.168.1.223" {puts "TESTING ERROR 3\n";exit}
76 "192.168.1.224" {puts "TESTING ERROR 3\n";exit}
77 "192.168.1.225" {puts "TESTING ERROR 3\n";exit}
78 "192.168.1.226" {puts "TESTING ERROR 3\n";exit}
79 "192.168.1.227" {puts "TESTING ERROR 3\n";exit}
80 "192.168.1.228" {puts "TESTING ERROR 3\n";exit}
81 "192.168.1.229" {puts "TESTING ERROR 3\n";exit}
82 "Child process initialized"
83 }
84 puts "************ $i ******************\n"
85 incr i
86 after 100
87# sleep 1
88}
89send -- "exit\r"
90after 100
91
92puts "\n"
93