tests: ifquery: add tests for checking the default netmasks
This commit is contained in:
parent
6730db5468
commit
e1fb4c6087
2 changed files with 20 additions and 1 deletions
5
tests/fixtures/without-netmask.interfaces
vendored
Normal file
5
tests/fixtures/without-netmask.interfaces
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
iface v6
|
||||||
|
address 2001:470:1f10::1
|
||||||
|
|
||||||
|
iface v4
|
||||||
|
address 203.0.113.2
|
|
@ -36,7 +36,9 @@ tests_init \
|
||||||
vlan_complex_learned_dependency \
|
vlan_complex_learned_dependency \
|
||||||
wireguard \
|
wireguard \
|
||||||
allow_undefined_positive \
|
allow_undefined_positive \
|
||||||
allow_undefined_negative
|
allow_undefined_negative \
|
||||||
|
default_netmask_v4 \
|
||||||
|
default_netmask_v6
|
||||||
|
|
||||||
noargs_body() {
|
noargs_body() {
|
||||||
atf_check -s exit:1 -e ignore ifquery -S/dev/null
|
atf_check -s exit:1 -e ignore ifquery -S/dev/null
|
||||||
|
@ -242,3 +244,15 @@ allow_undefined_negative_body() {
|
||||||
-e ignore \
|
-e ignore \
|
||||||
ifquery -i /dev/null -p address foo
|
ifquery -i /dev/null -p address foo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue