aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/2.5.exp
blob: a3a330643aa93fa165686c78b2be48c6059ac809 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/expect -f
#
# interface
#

set timeout 10
spawn $env(SHELL)
match_max 100000
set overlay [lindex $argv 0]
set chroot [lindex $argv 1]

#
# 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
#
if { $overlay == "overlay" } {
	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
#
if { $chroot == "chroot" } {
	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"