]> git.ipfire.org Git - thirdparty/libnftnl.git/commitdiff
tests: add tests for the masq expression
authorArturo Borrero <arturo.borrero.glez@gmail.com>
Thu, 2 Oct 2014 11:58:42 +0000 (13:58 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 3 Oct 2014 12:04:31 +0000 (14:04 +0200)
The masq expression is lacking of tests. Let's add some.

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
tests/Makefile.am
tests/jsonfiles/68-rule-masq.json [new file with mode: 0644]
tests/nft-expr_masq-test.c [new file with mode: 0644]
tests/test-script.sh
tests/xmlfiles/79-rule-masq.xml [new file with mode: 0644]

index 7942bc0b1b8af8f809520c74f1287e430fe4e830..d4f44af964f92af2ca83e8d1f2cd491b3c5d2b7a 100644 (file)
@@ -20,6 +20,7 @@ check_PROGRAMS =      nft-parsing-test                \
                        nft-expr_lookup-test            \
                        nft-expr_log-test               \
                        nft-expr_match-test             \
+                       nft-expr_masq-test              \
                        nft-expr_meta-test              \
                        nft-expr_nat-test               \
                        nft-expr_payload-test           \
@@ -75,6 +76,9 @@ nft_expr_log_test_LDADD = ../src/libnftnl.la ${LIBMNL_LIBS}
 nft_expr_match_test_SOURCES = nft-expr_match-test.c
 nft_expr_match_test_LDADD = ../src/libnftnl.la ${LIBMNL_LIBS}
 
+nft_expr_masq_test_SOURCES = nft-expr_masq-test.c
+nft_expr_masq_test_LDADD = ../src/libnftnl.la ${LIBMNL_LIBS}
+
 nft_expr_meta_test_SOURCES = nft-expr_meta-test.c
 nft_expr_meta_test_LDADD = ../src/libnftnl.la ${LIBMNL_LIBS}
 
diff --git a/tests/jsonfiles/68-rule-masq.json b/tests/jsonfiles/68-rule-masq.json
new file mode 100644 (file)
index 0000000..758f5ca
--- /dev/null
@@ -0,0 +1 @@
+{"nftables":[{"rule":{"family":"ip6","table":"nat","chain":"postrouting","handle":4,"expr":[{"type":"masq","flags":12}]}}]}
diff --git a/tests/nft-expr_masq-test.c b/tests/nft-expr_masq-test.c
new file mode 100644 (file)
index 0000000..58db7f5
--- /dev/null
@@ -0,0 +1,89 @@
+/*
+ * (C) 2013 by Ana Rey Botello <anarey@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <linux/netfilter/nf_tables.h>
+#include <libmnl/libmnl.h>
+#include <libnftnl/rule.h>
+#include <libnftnl/expr.h>
+
+static int test_ok = 1;
+
+static void print_err(const char *msg)
+{
+       test_ok = 0;
+       printf("\033[31mERROR:\e[0m %s\n", msg);
+}
+
+static void cmp_nft_rule_expr(struct nft_rule_expr *rule_a,
+                             struct nft_rule_expr *rule_b)
+{
+       if (nft_rule_expr_get_u32(rule_a, NFT_EXPR_MASQ_FLAGS) !=
+           nft_rule_expr_get_u32(rule_b, NFT_EXPR_MASQ_FLAGS))
+               print_err("Expr NFT_EXPR_MASQ_FLAGS mismatches");
+}
+
+int main(int argc, char *argv[])
+{
+       struct nft_rule *a, *b;
+       struct nft_rule_expr *ex;
+       struct nlmsghdr *nlh;
+       char buf[4096];
+       struct nft_rule_expr_iter *iter_a, *iter_b;
+       struct nft_rule_expr *rule_a, *rule_b;
+
+       a = nft_rule_alloc();
+       b = nft_rule_alloc();
+       if (a == NULL || b == NULL)
+               print_err("OOM");
+       ex = nft_rule_expr_alloc("nat");
+       if (ex == NULL)
+               print_err("OOM");
+
+       nft_rule_expr_set_u32(ex, NFT_EXPR_MASQ_FLAGS, 0x1234568);
+
+       nft_rule_add_expr(a, ex);
+
+       nlh = nft_rule_nlmsg_build_hdr(buf, NFT_MSG_NEWRULE, AF_INET, 0, 1234);
+       nft_rule_nlmsg_build_payload(nlh, a);
+
+       if (nft_rule_nlmsg_parse(nlh, b) < 0)
+               print_err("parsing problems");
+
+       iter_a = nft_rule_expr_iter_create(a);
+       iter_b = nft_rule_expr_iter_create(b);
+       if (iter_a == NULL || iter_b == NULL)
+               print_err("OOM");
+
+       rule_a = nft_rule_expr_iter_next(iter_a);
+       rule_b = nft_rule_expr_iter_next(iter_b);
+       if (rule_a == NULL || rule_b == NULL)
+               print_err("OOM");
+
+       cmp_nft_rule_expr(rule_a, rule_b);
+
+       if (nft_rule_expr_iter_next(iter_a) != NULL ||
+           nft_rule_expr_iter_next(iter_b) != NULL)
+               print_err("More 1 expr.");
+
+       nft_rule_expr_iter_destroy(iter_a);
+       nft_rule_expr_iter_destroy(iter_b);
+       nft_rule_free(a);
+       nft_rule_free(b);
+
+       if (!test_ok)
+               exit(EXIT_FAILURE);
+
+       printf("%s: \033[32mOK\e[0m\n", argv[0]);
+       return EXIT_SUCCESS;
+}
index 44725d8f957c2ad4cea50e7fadd91587ae1d2582..93caeb8665cee8d780baa05b4d8d49f982e28729 100755 (executable)
@@ -10,6 +10,7 @@
 ./nft-expr_log-test
 ./nft-expr_lookup-test
 ./nft-expr_match-test
+./nft-expr_masq-test
 ./nft-expr_meta-test
 ./nft-expr_nat-test
 ./nft-expr_payload-test
diff --git a/tests/xmlfiles/79-rule-masq.xml b/tests/xmlfiles/79-rule-masq.xml
new file mode 100644 (file)
index 0000000..303f2f2
--- /dev/null
@@ -0,0 +1 @@
+<nftables><rule><family>ip6</family><table>nat</table><chain>postrouting</chain><handle>4</handle><expr type="masq"><flags>12</flags></expr></rule></nftables>