From: Declan Doherty <declan.doherty@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 1/2] test app:
Date: Mon, 21 Jul 2014 15:52:16 +0100 [thread overview]
Message-ID: <1405954337-28488-2-git-send-email-declan.doherty@intel.com> (raw)
In-Reply-To: <1405954337-28488-1-git-send-email-declan.doherty@intel.com>
- Adding common test assertion macros for unit testing
- Structs for encapsulating unit tests / test suites data.
- test suite runner method
Signed-off-by: Declan Doherty <declan.doherty@intel.com>
---
app/test/test.c | 53 +++++++++++++++++++++++++++++++++++
app/test/test.h | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 135 insertions(+), 0 deletions(-)
diff --git a/app/test/test.c b/app/test/test.c
index a41e43d..589a168 100644
--- a/app/test/test.c
+++ b/app/test/test.c
@@ -153,3 +153,56 @@ main(int argc, char **argv)
return 0;
}
+
+
+int
+unit_test_suite_runner(struct unit_test_suite *suite)
+{
+ int retval, i = 0;
+
+ if (suite->suite_name)
+ printf("Test Suite : %s\n", suite->suite_name);
+
+ if (suite->setup)
+ if (suite->setup() != 0)
+ return -1;
+
+ while (suite->unit_test_cases[i].testcase) {
+ /* Run test case setup */
+ if (suite->unit_test_cases[i].setup) {
+ retval = suite->unit_test_cases[i].setup();
+ if (retval != 0)
+ return retval;
+ }
+
+ /* Run test case */
+ if (suite->unit_test_cases[i].testcase() == 0) {
+ printf("TestCase %2d: %s\n", i,
+ suite->unit_test_cases[i].success_msg ?
+ suite->unit_test_cases[i].success_msg :
+ "passed");
+ }
+ else {
+ printf("TestCase %2d: %s\n", i, suite->unit_test_cases[i].fail_msg ?
+ suite->unit_test_cases[i].fail_msg :
+ "failed");
+ return -1;
+ }
+
+ /* Run test case teardown */
+ if (suite->unit_test_cases[i].teardown) {
+ retval = suite->unit_test_cases[i].teardown();
+ if (retval != 0)
+ return retval;
+ }
+
+ i++;
+ }
+
+ /* Run test suite teardown */
+ if (suite->teardown)
+ if (suite->teardown() != 0)
+ return -1;
+
+ return 0;
+}
diff --git a/app/test/test.h b/app/test/test.h
index c00e1d6..181c38e 100644
--- a/app/test/test.h
+++ b/app/test/test.h
@@ -34,6 +34,88 @@
#ifndef _TEST_H_
#define _TEST_H_
+#define TEST_ASSERT(cond, msg, ...) do { \
+ if (!(cond)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+#define TEST_ASSERT_EQUAL(a, b, msg, ...) { \
+ if (!(a == b)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+#define TEST_ASSERT_NOT_EQUAL(a, b, msg, ...) do { \
+ if (!(a != b)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+#define TEST_ASSERT_SUCCESS(val, msg, ...) do { \
+ if (!(val == 0)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+#define TEST_ASSERT_FAIL(val, msg, ...) do { \
+ if (!(val != -1)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+
+#define TEST_ASSERT_NULL(val, msg, ...) do { \
+ if (!(val == NULL)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+#define TEST_ASSERT_NOT_NULL(val, msg, ...) do { \
+ if (!(val != NULL)) { \
+ printf("TestCase %s() line %d failed: " \
+ msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
+ return -1; \
+ } \
+} while (0)
+
+struct unit_test_case {
+ int (*setup)(void);
+ int (*teardown)(void);
+ int (*testcase)(void);
+ const char *success_msg;
+ const char *fail_msg;
+};
+
+#define TEST_CASE(fn) { NULL, NULL, fn, #fn " succeeded", #fn " failed"}
+
+#define TEST_CASE_ST(setup, teardown, testcase) \
+ { setup, teardown, testcase, #testcase " succeeded", \
+ #testcase " failed "}
+
+#define TEST_CASES_END() { NULL, NULL, NULL, NULL, NULL }
+
+struct unit_test_suite {
+ const char *suite_name;
+ int (*setup)(void);
+ int (*teardown)(void);
+ struct unit_test_case unit_test_cases[];
+};
+
+int unit_test_suite_runner(struct unit_test_suite *suite);
+
/* icc on baremetal gives us troubles with function named 'main' */
#ifdef RTE_EXEC_ENV_BAREMETAL
#define main _main
--
1.7.0.7
next prev parent reply other threads:[~2014-07-21 14:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-21 14:52 [dpdk-dev] [PATCH 0/2] link bonding unit test fix Declan Doherty
2014-07-21 14:52 ` Declan Doherty [this message]
2014-07-21 14:52 ` [dpdk-dev] [PATCH 2/2] bond: unit test suite fix Declan Doherty
2014-07-22 10:57 ` [dpdk-dev] [PATCH 0/2] link bonding unit test fix De Lara Guarch, Pablo
2014-08-01 15:21 ` Thomas Monjalon
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=1405954337-28488-2-git-send-email-declan.doherty@intel.com \
--to=declan.doherty@intel.com \
--cc=dev@dpdk.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).