ifupdown-ng/tests/ifup_test

109 lines
2.9 KiB
Text
Raw Normal View History

2020-07-24 05:58:46 +00:00
#!/usr/bin/env atf-sh
. $(atf_get_srcdir)/test_env.sh
tests_init \
noargs \
lo_always_auto \
dual_stack \
static_ipv4 \
static_ipv4_netmask \
2020-07-24 05:58:46 +00:00
static_ipv6 \
static_ipv6_netmask \
2020-07-24 05:58:46 +00:00
inet_dhcp \
2020-07-24 11:04:33 +00:00
use_dhcp \
2020-07-24 05:58:46 +00:00
alias_eth0_home \
alias_eth0_work \
bonded_bridge
2020-07-24 05:58:46 +00:00
noargs_body() {
atf_check -s exit:1 -e ignore ifup -S/dev/null
}
lo_always_auto_body() {
atf_check -s exit:0 -e ignore -o match:'ip link set up dev lo' \
ifup -S/dev/null -i/dev/null -n -a
}
dual_stack_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0.interfaces -n -a
2020-07-24 05:58:46 +00:00
}
static_ipv4_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4.interfaces -n -a
2020-07-24 05:58:46 +00:00
}
static_ipv4_netmask_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v4-netmask.interfaces -n -a
}
2020-07-24 05:58:46 +00:00
static_ipv6_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6.interfaces -n -a
2020-07-24 05:58:46 +00:00
}
static_ipv6_netmask_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/static-eth0-v6-netmask.interfaces -n -a
}
2020-07-24 05:58:46 +00:00
inet_dhcp_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/dhcp' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/dhcp-eth0.interfaces -n -a
2020-07-24 11:04:33 +00:00
}
use_dhcp_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev lo' \
-o match:'ip link set up dev eth0' \
-o match:'executors/dhcp' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/use-dhcp-eth0.interfaces -n -a
2020-07-24 05:58:46 +00:00
}
alias_eth0_home_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev wlan0' \
-o match:'executors/dhcp' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=home
2020-07-24 05:58:46 +00:00
}
alias_eth0_work_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev wlan0' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/alias-home-work.interfaces -n wlan0=work
2020-07-24 05:58:46 +00:00
}
bonded_bridge_body() {
atf_check -s exit:0 -e ignore \
-o match:'ip link set up dev eth0' \
-o match:'ip link set up dev eth1' \
-o match:'ip link set up dev bond0' \
-o match:'ip link set up dev br0' \
-o match:'executors/bond' \
-o match:'executors/bridge' \
-o match:'executors/static' \
2020-07-25 08:50:24 +00:00
ifup -S/dev/null -E $EXECUTORS -i $FIXTURES/bonded-bridge.interfaces -n br0
}