diff --git a/tests/fixtures/without-netmask.interfaces b/tests/fixtures/without-netmask.interfaces new file mode 100644 index 0000000..7537c67 --- /dev/null +++ b/tests/fixtures/without-netmask.interfaces @@ -0,0 +1,5 @@ +iface v6 + address 2001:470:1f10::1 + +iface v4 + address 203.0.113.2 diff --git a/tests/ifquery_test b/tests/ifquery_test index e095255..9c5b2c7 100755 --- a/tests/ifquery_test +++ b/tests/ifquery_test @@ -34,7 +34,9 @@ tests_init \ vlan_explicit_learned_dependency \ vlan_guessed_learned_dependency \ vlan_complex_learned_dependency \ - wireguard + wireguard \ + default_netmask_v4 \ + default_netmask_v6 noargs_body() { atf_check -s exit:1 -e ignore ifquery -S/dev/null @@ -226,3 +228,15 @@ wireguard_body() { -o match:"use wireguard" \ ifquery -E $EXECUTORS_LINUX -i $FIXTURES/wireguard.interfaces wg0 } + +default_netmask_v4_body() { + atf_check -s exit:0 \ + -o match:"203.0.113.2/24" \ + ifquery -i $FIXTURES/without-netmask.interfaces -p address v4 +} + +default_netmask_v6_body() { + atf_check -s exit:0 \ + -o match:"2001:470:1f10::1/64" \ + ifquery -i $FIXTURES/without-netmask.interfaces -p address v6 +}