tests: convert ifup/ifdown tests to test with mock executors

This commit is contained in:
Ariadne Conill 2020-07-26 03:12:02 -06:00
parent e29e552cc2
commit c1e1d30a58
4 changed files with 26 additions and 46 deletions

1
tests/executors/bond Symbolic link
View file

@ -0,0 +1 @@
mock-executor

1
tests/executors/bridge Symbolic link
View file

@ -0,0 +1 @@
mock-executor

View file

@ -29,10 +29,7 @@ dual_stack_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'del 203.0.113.2/24 dev eth0' \ -o match:'executors/static' \
-o match:'del 2001:db8:1000:2::2/64 dev eth0' \
-o match:'default via 203.0.113.1' \
-o match:'default via 2001:db8:1000:2::1' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0.interfaces -n -a
} }
@ -40,8 +37,7 @@ static_ipv4_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'del 203.0.113.2/24 dev eth0' \ -o match:'executors/static' \
-o match:'default via 203.0.113.1' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4.interfaces -n -a
} }
@ -49,8 +45,7 @@ static_ipv4_netmask_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'del 203.0.113.2/29 dev eth0' \ -o match:'executors/static' \
-o match:'default via 203.0.113.1' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4-netmask.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4-netmask.interfaces -n -a
} }
@ -58,8 +53,7 @@ static_ipv6_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'del 2001:db8:1000:2::2/64 dev eth0' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6.interfaces -n -a
} }
@ -67,8 +61,7 @@ static_ipv6_netmask_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'del 2001:db8:1000:2::2/112 dev eth0' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6-netmask.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6-netmask.interfaces -n -a
} }
@ -76,7 +69,7 @@ inet_dhcp_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/dhcp-eth0.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/dhcp-eth0.interfaces -n -a
} }
@ -84,14 +77,14 @@ use_dhcp_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev lo' \ -o match:'ip link set down dev lo' \
-o match:'ip link set down dev eth0' \ -o match:'ip link set down dev eth0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/use-dhcp-eth0.interfaces -n -a ifdown -S/dev/null -E $EXECUTORS -i $FIXTURES/use-dhcp-eth0.interfaces -n -a
} }
alias_eth0_home_body() { alias_eth0_home_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev wlan0' \ -o match:'ip link set down dev wlan0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifdown -S $FIXTURES/alias-home.ifstate \ ifdown -S $FIXTURES/alias-home.ifstate \
-E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0 -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0
} }
@ -99,10 +92,7 @@ alias_eth0_home_body() {
alias_eth0_work_body() { alias_eth0_work_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set down dev wlan0' \ -o match:'ip link set down dev wlan0' \
-o match:'del 203.0.113.2/24 dev wlan0' \ -o match:'executors/static' \
-o match:'del 2001:db8:1000:2::2/64 dev wlan0' \
-o match:'default via 203.0.113.1' \
-o match:'default via 2001:db8:1000:2::1' \
ifdown -S $FIXTURES/alias-work.ifstate \ ifdown -S $FIXTURES/alias-work.ifstate \
-E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0 -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0
} }
@ -113,10 +103,9 @@ bonded_bridge_body() {
-o match:'ip link set down dev eth1' \ -o match:'ip link set down dev eth1' \
-o match:'ip link set down dev bond0' \ -o match:'ip link set down dev bond0' \
-o match:'ip link set down dev br0' \ -o match:'ip link set down dev br0' \
-o match:'del 203.0.113.2/24 dev br0' \ -o match:'executors/bond' \
-o match:'del 2001:db8:1000:2::2/64 dev br0' \ -o match:'executors/bridge' \
-o match:'default via 203.0.113.1' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifdown -S $FIXTURES/bonded-bridge.ifstate \ ifdown -S $FIXTURES/bonded-bridge.ifstate \
-E $EXECUTORS -i $FIXTURES/bonded-bridge.interfaces -n br0 -E $EXECUTORS -i $FIXTURES/bonded-bridge.interfaces -n br0
} }

View file

@ -29,10 +29,7 @@ dual_stack_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'add 203.0.113.2/24 dev eth0' \ -o match:'executors/static' \
-o match:'add 2001:db8:1000:2::2/64 dev eth0' \
-o match:'default via 203.0.113.1' \
-o match:'default via 2001:db8:1000:2::1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0.interfaces -n -a
} }
@ -40,8 +37,7 @@ static_ipv4_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'add 203.0.113.2/24 dev eth0' \ -o match:'executors/static' \
-o match:'default via 203.0.113.1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4.interfaces -n -a
} }
@ -49,8 +45,7 @@ static_ipv4_netmask_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'add 203.0.113.2/29 dev eth0' \ -o match:'executors/static' \
-o match:'default via 203.0.113.1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4-netmask.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4-netmask.interfaces -n -a
} }
@ -58,8 +53,7 @@ static_ipv6_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'add 2001:db8:1000:2::2/64 dev eth0' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6.interfaces -n -a
} }
@ -67,8 +61,7 @@ static_ipv6_netmask_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'add 2001:db8:1000:2::2/112 dev eth0' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6-netmask.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6-netmask.interfaces -n -a
} }
@ -76,7 +69,7 @@ inet_dhcp_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/dhcp-eth0.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/dhcp-eth0.interfaces -n -a
} }
@ -84,24 +77,21 @@ use_dhcp_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \ -o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \ -o match:'ip link set up dev eth0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/use-dhcp-eth0.interfaces -n -a ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/use-dhcp-eth0.interfaces -n -a
} }
alias_eth0_home_body() { alias_eth0_home_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev wlan0' \ -o match:'ip link set up dev wlan0' \
-o match:'dhc' \ -o match:'executors/dhcp' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=home ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=home
} }
alias_eth0_work_body() { alias_eth0_work_body() {
atf_check -s exit:0 -e ignore \ atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev wlan0' \ -o match:'ip link set up dev wlan0' \
-o match:'add 203.0.113.2/24 dev wlan0' \ -o match:'executors/static' \
-o match:'add 2001:db8:1000:2::2/64 dev wlan0' \
-o match:'default via 203.0.113.1' \
-o match:'default via 2001:db8:1000:2::1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=work ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=work
} }
@ -111,9 +101,8 @@ bonded_bridge_body() {
-o match:'ip link set up dev eth1' \ -o match:'ip link set up dev eth1' \
-o match:'ip link set up dev bond0' \ -o match:'ip link set up dev bond0' \
-o match:'ip link set up dev br0' \ -o match:'ip link set up dev br0' \
-o match:'add 203.0.113.2/24 dev br0' \ -o match:'executors/bond' \
-o match:'add 2001:db8:1000:2::2/64 dev br0' \ -o match:'executors/bridge' \
-o match:'default via 203.0.113.1' \ -o match:'executors/static' \
-o match:'default via 2001:db8:1000:2::1' \
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/bonded-bridge.interfaces -n br0 ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/bonded-bridge.interfaces -n br0
} }