From: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
To: netfilter-devel@vger.kernel.org
Subject: [libnftables PATCH 1/3] tests: fix error reporting
Date: Mon, 30 Sep 2013 17:05:52 +0200 [thread overview]
Message-ID: <20130930150551.32124.23680.stgit@nfdev.cica.es> (raw)
The testbench was not reporting errors properly.
With this patch, "1" is returned to the shell if the test failed (instead of
returning "0" unconditionally). Textual reporting is also fixed.
In case of compilation without some parsing support, returning error (i.e 1)
is the expected behaviour.
Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
0 files changed
diff --git a/tests/nft-parsing-test.c b/tests/nft-parsing-test.c
index ecde0e2..4e3b508 100644
--- a/tests/nft-parsing-test.c
+++ b/tests/nft-parsing-test.c
@@ -50,23 +50,23 @@ static void print_detail_error(char *a, char *b)
if (k < 0)
k = 0;
- fprintf(stderr, "from file: ");
+ printf("\nfrom file: ");
for (i = k; i < from + 10; i++)
- fprintf(stderr, "%c", a[i]);
+ printf("%c", a[i]);
- fprintf(stderr, "\nfrom snprintf: ");
+ printf("\nfrom snprintf: ");
for (i = k; i < from + 10; i++)
- fprintf(stderr, "%c", b[i]);
+ printf("%c", b[i]);
/* Don't look twice below this comment ;-) */
- fprintf(stderr, "\n ");
+ printf("\n ");
for (i = k; i < from + 10; i++) {
if (i == from)
- fprintf(stderr, "^");
+ printf("^");
else
- fprintf(stderr, " ");
+ printf(" ");
}
- fprintf(stderr, "\n");
+ printf("\n");
}
}
@@ -144,8 +144,7 @@ static int compare_test(uint32_t type, void *input, const char *filename)
if (strncmp(orig, out, strlen(out)) == 0)
return 0;
- printf("validating %s: ", filename);
- printf("\033[31mFAILED\e[0m\n");
+ errno = EBADMSG;
print_detail_error(orig, out);
return -1;
}
@@ -177,7 +176,7 @@ static int test_json(const char *filename)
if (nft_table_parse(t, NFT_TABLE_PARSE_JSON, json) == 0)
ret = compare_test(TEST_JSON_TABLE, t, filename);
else
- goto failparsing;
+ ret = -1;
nft_table_free(t);
}
@@ -187,7 +186,7 @@ static int test_json(const char *filename)
if (nft_chain_parse(c, NFT_CHAIN_PARSE_JSON, json) == 0)
ret = compare_test(TEST_JSON_CHAIN, c, filename);
else
- goto failparsing;
+ ret = -1;
nft_chain_free(c);
}
@@ -197,7 +196,7 @@ static int test_json(const char *filename)
if (nft_rule_parse(r, NFT_RULE_PARSE_JSON, json) == 0)
ret = compare_test(TEST_JSON_RULE, r, filename);
else
- goto failparsing;
+ ret = -1;
nft_rule_free(r);
}
@@ -207,7 +206,7 @@ static int test_json(const char *filename)
if (nft_set_parse(s, NFT_SET_PARSE_JSON, json) == 0)
ret = compare_test(TEST_JSON_SET, s, filename);
else
- goto failparsing;
+ ret = -1;
nft_set_free(s);
}
@@ -216,13 +215,6 @@ static int test_json(const char *filename)
free(json);
json_decref(root);
return ret;
-
-failparsing:
- printf("parsing %s: ", filename);
- printf("\033[31mFAILED\e[0m (%s)\n", strerror(errno));
- free(json);
- json_decref(root);
- return -1;
#else
errno = EOPNOTSUPP;
return -1;
@@ -245,12 +237,16 @@ static int test_xml(const char *filename)
tree = mxmlLoadFile(NULL, fp, MXML_NO_CALLBACK);
fclose(fp);
- if (tree == NULL)
+ if (tree == NULL) {
+ printf("Unable to build XML tree.");
return -1;
+ }
xml = mxmlSaveAllocString(tree, MXML_NO_CALLBACK);
- if (xml == NULL)
+ if (xml == NULL) {
+ printf("Unable to save alloc string from XML tree.");
return -1;
+ }
/* Check what parsing should be done */
if (strcmp(tree->value.opaque, "table") == 0) {
@@ -259,7 +255,7 @@ static int test_xml(const char *filename)
if (nft_table_parse(t, NFT_TABLE_PARSE_XML, xml) == 0)
ret = compare_test(TEST_XML_TABLE, t, filename);
else
- goto failparsing;
+ ret = -1;
nft_table_free(t);
}
@@ -269,7 +265,7 @@ static int test_xml(const char *filename)
if (nft_chain_parse(c, NFT_CHAIN_PARSE_XML, xml) == 0)
ret = compare_test(TEST_XML_CHAIN, c, filename);
else
- goto failparsing;
+ ret = -1;
nft_chain_free(c);
}
@@ -279,7 +275,7 @@ static int test_xml(const char *filename)
if (nft_rule_parse(r, NFT_RULE_PARSE_XML, xml) == 0)
ret = compare_test(TEST_XML_RULE, r, filename);
else
- goto failparsing;
+ ret = -1;
nft_rule_free(r);
}
@@ -289,18 +285,14 @@ static int test_xml(const char *filename)
if (nft_set_parse(s, NFT_SET_PARSE_XML, xml) == 0)
ret = compare_test(TEST_XML_SET, s, filename);
else
- goto failparsing;
+ ret = -1;
nft_set_free(s);
}
}
+ free(xml);
return ret;
-
-failparsing:
- printf("parsing %s: ", filename);
- printf("\033[31mFAILED\e[0m (%s)\n", strerror(errno));
- return -1;
#else
errno = EOPNOTSUPP;
return -1;
@@ -309,6 +301,7 @@ failparsing:
int main(int argc, char *argv[])
{
+ int exit_code = 0, ret;
DIR *d;
struct dirent *dent;
char path[PATH_MAX];
@@ -334,19 +327,35 @@ int main(int argc, char *argv[])
snprintf(path, sizeof(path), "%s/%s", argv[1], dent->d_name);
if (strcmp(&dent->d_name[len-4], ".xml") == 0) {
- if (test_xml(path) == 0) {
- printf("parsing and validating %s: ", path);
+
+ printf("parsing and validating %s: ", path);
+
+ if ((ret = test_xml(path)) == 0)
printf("\033[32mOK\e[0m\n");
- }
+ else
+ printf("\033[31mFAILED\e[0m (%s)\n",
+ strerror(errno));
+
+ exit_code += ret;
}
if (strcmp(&dent->d_name[len-5], ".json") == 0) {
- if (test_json(path) == 0) {
- printf("parsing and validating %s: ", path);
+
+ printf("parsing and validating %s: ", path);
+
+ if ((ret = test_json(path)) == 0)
printf("\033[32mOK\e[0m\n");
- }
+ else
+ printf("\033[31mFAILED\e[0m (%s)\n",
+ strerror(errno));
+
+ exit_code += ret;
}
}
closedir(d);
- return 0;
+
+ if (exit_code == 0)
+ exit(EXIT_SUCCESS);
+ else
+ exit(EXIT_FAILURE);
}
next reply other threads:[~2013-09-30 15:05 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-30 15:05 Arturo Borrero Gonzalez [this message]
2013-09-30 15:05 ` [libnftables PATCH 2/3] table: json: fix json style Arturo Borrero Gonzalez
2013-09-30 17:43 ` Pablo Neira Ayuso
2013-09-30 18:06 ` Stephen Hemminger
2013-09-30 18:34 ` Pablo Neira Ayuso
2013-09-30 21:55 ` Arturo Borrero Gonzalez
2013-10-01 9:43 ` Pablo Neira Ayuso
2013-09-30 15:06 ` [libnftables PATCH 3/3] src: add low-level ruleset API Arturo Borrero Gonzalez
2013-09-30 17:46 ` Pablo Neira Ayuso
2013-09-30 17:41 ` [libnftables PATCH 1/3] tests: fix error reporting Pablo Neira Ayuso
2013-09-30 22:02 ` Arturo Borrero Gonzalez
2013-10-01 9:45 ` Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130930150551.32124.23680.stgit@nfdev.cica.es \
--to=arturo.borrero.glez@gmail.com \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).