From c964e17bfee2a8a83048a66c85154828de225f96 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Sun, 28 Oct 2018 05:50:04 +0000 Subject: [PATCH] pfctl test: Add a test for macro names with a space in it --- sbin/pfctl/tests/Makefile | 3 ++- sbin/pfctl/tests/macro.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100755 sbin/pfctl/tests/macro.sh diff --git a/sbin/pfctl/tests/Makefile b/sbin/pfctl/tests/Makefile index 675acac1d0f4..b4aa2de120b3 100644 --- a/sbin/pfctl/tests/Makefile +++ b/sbin/pfctl/tests/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ -ATF_TESTS_SH= pfctl_test +ATF_TESTS_SH= pfctl_test \ + macro SUBDIR+= files diff --git a/sbin/pfctl/tests/macro.sh b/sbin/pfctl/tests/macro.sh new file mode 100755 index 000000000000..194e101d2f84 --- /dev/null +++ b/sbin/pfctl/tests/macro.sh @@ -0,0 +1,28 @@ +# $FreeBSD$ + +atf_test_case "space" cleanup +space_head() +{ + atf_set descr "Test macros with spaces" +} + +space_body() +{ + echo \"this is\" = \"a variable\" > pf.conf + cat pf.conf + atf_check -o ignore -e ignore -s exit:1 pfctl -nvf pf.conf + + echo this = \"a variable\" > pf.conf + cat pf.conf + atf_check -o ignore -s exit:0 pfctl -nvf pf.conf +} + +space_cleanup() +{ + rm -f pf.conf +} + +atf_init_test_cases() +{ + atf_add_test_case "space" +}