Blame SOURCES/0189-testsuite-add-simple-helper-macros.patch

28bab8
From 83ff1e3f0b925910c0965490a26860a7c5efaa57 Mon Sep 17 00:00:00 2001
28bab8
From: Matej Habrnal <mhabrnal@redhat.com>
28bab8
Date: Tue, 22 Mar 2016 17:13:38 +0100
28bab8
Subject: [PATCH] testsuite: add simple helper macros
28bab8
28bab8
I am tired of repeating the same constructions over and over again.
28bab8
28bab8
Signed-off-by: Jakub Filak <jfilak@redhat.com>
28bab8
---
28bab8
 tests/Makefile.am               |   2 +-
28bab8
 tests/atlocal.in                |   2 +-
28bab8
 tests/helpers/testsuite.h       | 297 ++++++++++++++++++++++++++++++++++++++++
28bab8
 tests/helpers/testsuite_tools.h |  67 +++++++++
28bab8
 4 files changed, 366 insertions(+), 2 deletions(-)
28bab8
 create mode 100644 tests/helpers/testsuite.h
28bab8
 create mode 100644 tests/helpers/testsuite_tools.h
28bab8
28bab8
diff --git a/tests/Makefile.am b/tests/Makefile.am
28bab8
index 9aa3a07..9bfc2b6 100644
28bab8
--- a/tests/Makefile.am
28bab8
+++ b/tests/Makefile.am
28bab8
@@ -58,7 +58,7 @@ MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
28bab8
 check_DATA = atconfig atlocal $(TESTSUITE)
28bab8
 DISTCLEANFILES = atconfig
28bab8
 EXTRA_DIST += atlocal.in conf ureport ureport-rhts-credentials \
28bab8
-              bugzilla_plugin.at.in
28bab8
+              helpers/testsuite.h bugzilla_plugin.at.in
28bab8
 
28bab8
 atconfig: $(top_builddir)/config.status
28bab8
 	(cd ${top_builddir} && ./config.status ${subdir}/atconfig)
28bab8
diff --git a/tests/atlocal.in b/tests/atlocal.in
28bab8
index 1a82edb..3d6b04a 100644
28bab8
--- a/tests/atlocal.in
28bab8
+++ b/tests/atlocal.in
28bab8
@@ -6,7 +6,7 @@ CC='@CC@'
28bab8
 LIBTOOL="$abs_top_builddir/libtool"
28bab8
 
28bab8
 # We want no optimization.
28bab8
-CFLAGS="@O0CFLAGS@ -I$abs_top_builddir/src/include -I$abs_top_builddir/src/lib -I$abs_top_builddir/src/gtk-helpers -D_GNU_SOURCE @GLIB_CFLAGS@ @GTK_CFLAGS@ -DDEFAULT_DUMP_DIR_MODE=@DEFAULT_DUMP_DIR_MODE@"
28bab8
+CFLAGS="@O0CFLAGS@ -I$abs_top_builddir/tests/helpers -I$abs_top_builddir/src/include -I$abs_top_builddir/src/lib -I$abs_top_builddir/src/gtk-helpers -D_GNU_SOURCE @GLIB_CFLAGS@ @GTK_CFLAGS@ -DDEFAULT_DUMP_DIR_MODE=@DEFAULT_DUMP_DIR_MODE@"
28bab8
 
28bab8
 # Are special link options needed?
28bab8
 LDFLAGS="@LDFLAGS@"
28bab8
diff --git a/tests/helpers/testsuite.h b/tests/helpers/testsuite.h
28bab8
new file mode 100644
28bab8
index 0000000..28bfd3e
28bab8
--- /dev/null
28bab8
+++ b/tests/helpers/testsuite.h
28bab8
@@ -0,0 +1,297 @@
28bab8
+/*
28bab8
+    Copyright (C) 2015  ABRT team <crash-catcher@lists.fedorahosted.org>
28bab8
+    Copyright (C) 2015  RedHat inc.
28bab8
+
28bab8
+    This program is free software; you can redistribute it and/or modify
28bab8
+    it under the terms of the GNU General Public License as published by
28bab8
+    the Free Software Foundation; either version 2 of the License, or
28bab8
+    (at your option) any later version.
28bab8
+
28bab8
+    This program is distributed in the hope that it will be useful,
28bab8
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
28bab8
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28bab8
+    GNU General Public License for more details.
28bab8
+
28bab8
+    You should have received a copy of the GNU General Public License along
28bab8
+    with this program; if not, write to the Free Software Foundation, Inc.,
28bab8
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28bab8
+
28bab8
+    ----
28bab8
+
28bab8
+    libreport testsuite helpers
28bab8
+
28bab8
+    Feel free to add whatever macro you need but please try to keep this file
28bab8
+    short and useful.
28bab8
+
28bab8
+    Bare in mind usability and print as much accurate log messages as possible:
28bab8
+
28bab8
+        Example 1:
28bab8
+
28bab8
+            int actual = 0;
28bab8
+            int expected = 1;
28bab8
+            TS_ASSERT_SIGNED_EQ(actual, expected)
28bab8
+
28bab8
+            ----
28bab8
+
28bab8
+            [ FAILED ] 12: Assert (actual == expected)
28bab8
+                Actual  : 0
28bab8
+                Expected: 1
28bab8
+
28bab8
+
28bab8
+        Example 2:
28bab8
+
28bab8
+            int get_runtime_number() {
28bab8
+                return 0;
28bab8
+            }
28bab8
+
28bab8
+            TS_ASSERT_SIGNED_OP_MESSAGE(get_runtime_number(), 1, "Custom message")
28bab8
+
28bab8
+            ----
28bab8
+
28bab8
+            [ FAILED ] 3: Custom messages (get_runtime_number() >= 1)
28bab8
+                Actual  : 0
28bab8
+                Expected: 1
28bab8
+
28bab8
+    Note: the number right behind [ FAILED ] is line number where the failed
28bab8
+          assert is located.
28bab8
+*/
28bab8
+#ifndef LIBREPORT_TESTSUITE_H
28bab8
+#define LIBREPORT_TESTSUITE_H
28bab8
+
28bab8
+/* For g_verbose */
28bab8
+#include "internal_libreport.h"
28bab8
+
28bab8
+/* For convenience */
28bab8
+#include <assert.h>
28bab8
+
28bab8
+
28bab8
+/* Number of failed asserts and other failures. Can be used a return value of
28bab8
+ * the main function. */
28bab8
+long g_testsuite_fails = 0;
28bab8
+
28bab8
+/* Number of successful asserts. For debugging purpose. */
28bab8
+long g_testsuite_ok = 0;
28bab8
+
28bab8
+/* Enables additional log messages. */
28bab8
+int g_testsuite_debug = 0;
28bab8
+
28bab8
+/* Can be used to change log messages destination. */
28bab8
+FILE *g_testsuite_output_stream = 0;
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Test case definition
28bab8
+ */
28bab8
+
28bab8
+#define TS_MAIN \
28bab8
+    int main(int argc, char *argv[]) { g_verbose = 3; do
28bab8
+
28bab8
+#define TS_RETURN_MAIN \
28bab8
+    while (0) ;\
28bab8
+    return g_testsuite_fails; }
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Logging
28bab8
+ */
28bab8
+
28bab8
+#define TS_PRINTF(format, ...) \
28bab8
+    fprintf(g_testsuite_output_stream != NULL ? g_testsuite_output_stream : stderr, format, __VA_ARGS__)
28bab8
+
28bab8
+#define TS_DEBUG_PRINTF(format, ...) \
28bab8
+    do { if (g_testsuite_debug) { TS_PRINTF(format, __VA_ARGS__); } } while (0)
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Handling of test results
28bab8
+ */
28bab8
+
28bab8
+#define TS_SUCCESS(format, ...) \
28bab8
+    do { \
28bab8
+        TS_DEBUG_PRINTF("[   OK   ] %d: ", __LINE__); \
28bab8
+        TS_DEBUG_PRINTF(format, __VA_ARGS__); \
28bab8
+        ++g_testsuite_ok; \
28bab8
+    } while (0)
28bab8
+
28bab8
+#define TS_FAILURE(format, ...) \
28bab8
+    do { \
28bab8
+        TS_PRINTF("[ FAILED ] %d: ", __LINE__); \
28bab8
+        TS_PRINTF(format, __VA_ARGS__); \
28bab8
+        ++g_testsuite_fails; \
28bab8
+    } while (0)
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Logical conditions
28bab8
+ */
28bab8
+
28bab8
+#define _TS_ASSERT_BOOLEAN(expression, expected, message) \
28bab8
+    do { \
28bab8
+        const int result = (expression); \
28bab8
+        if (result == expected) { \
28bab8
+            TS_SUCCESS("%s ("#expression" == %s)\n", message ? message : "Assert", expected ? "TRUE" : "FALSE"); \
28bab8
+        }\
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#expression" == %s)\n", message ? message : "Assert", expected ? "TRUE" : "FALSE"); \
28bab8
+        }\
28bab8
+    } while(0)
28bab8
+
28bab8
+
28bab8
+#define TS_ASSERT_TRUE_MESSAGE(expression, message) \
28bab8
+    _TS_ASSERT_BOOLEAN(expression, 1, message)
28bab8
+
28bab8
+#define TS_ASSERT_TRUE(expression) \
28bab8
+    TS_ASSERT_TRUE_MESSAGE(expression, NULL)
28bab8
+
28bab8
+#define TS_ASSERT_FALSE_MESSAGE(expression, message) \
28bab8
+    _TS_ASSERT_BOOLEAN(expression, 0, message)
28bab8
+
28bab8
+#define TS_ASSERT_FALSE(expression) \
28bab8
+    TS_ASSERT_FALSE_MESSAGE(expression, NULL)
28bab8
+
28bab8
+/*
28bab8
+ * Testing of signed numbers
28bab8
+ */
28bab8
+
28bab8
+#define TS_ASSERT_SIGNED_OP_MESSAGE(actual, operator, expected, message) \
28bab8
+    do { \
28bab8
+        long long l_ts_lhs = (actual); \
28bab8
+        long long l_ts_rhs = (expected); \
28bab8
+        if (l_ts_lhs operator l_ts_rhs) { \
28bab8
+            TS_SUCCESS("%s ("#actual" "#operator" "#expected")\n\tActual  : %lld\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#actual" "#operator" "#expected")\n\tActual  : %lld\n\tExpected: %lld\n", message ? message : "Assert", l_ts_lhs, l_ts_rhs); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+#define TS_ASSERT_SIGNED_EQ(actual, expected) \
28bab8
+    TS_ASSERT_SIGNED_OP_MESSAGE(actual, ==, expected, NULL)
28bab8
+
28bab8
+#define TS_ASSERT_SIGNED_GE(actual, expected) \
28bab8
+    TS_ASSERT_SIGNED_OP_MESSAGE(actual, >=, expected, NULL)
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Testing of chars
28bab8
+ */
28bab8
+
28bab8
+#define TS_ASSERT_CHAR_OP_MESSAGE(actual, operator, expected, message) \
28bab8
+    do { \
28bab8
+        char l_ts_lhs = (actual); \
28bab8
+        char l_ts_rhs = (expected); \
28bab8
+        if (l_ts_lhs operator l_ts_rhs) { \
28bab8
+            TS_SUCCESS("%s ("#actual" "#operator" "#expected")\n\tActual  : %c\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#actual" "#operator" "#expected")\n\tActual  : %c\n\tExpected: %c\n", message ? message : "Assert", l_ts_lhs, l_ts_rhs); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+#define TS_ASSERT_CHAR_EQ_MESSAGE(actual, expected, message) \
28bab8
+    TS_ASSERT_CHAR_OP_MESSAGE(actual, ==, expected, message)
28bab8
+
28bab8
+#define TS_ASSERT_CHAR_EQ(actual, expected) \
28bab8
+    TS_ASSERT_CHAR_EQ_MESSAGE(actual, ==, expected, NULL)
28bab8
+
28bab8
+
28bab8
+/*
28bab8
+ * Testing of strings
28bab8
+ */
28bab8
+
28bab8
+#define TS_ASSERT_STRING_EQ(actual, expected, message) \
28bab8
+    do { \
28bab8
+        const char *l_ts_lhs = (actual); \
28bab8
+        const char *l_ts_rhs = (expected); \
28bab8
+        if (l_ts_lhs == NULL && l_ts_rhs != NULL) { \
28bab8
+            TS_FAILURE("%s ("#actual" == "#expected")\n\tActual  : NULL\n\tExpected: %p\n", message ? message : "Assert", l_ts_rhs); \
28bab8
+        } \
28bab8
+        else if (l_ts_lhs != NULL && l_ts_rhs == NULL) { \
28bab8
+            TS_FAILURE("%s ("#actual" == "#expected")\n\tActual  : %s\n\tExpected: NULL\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else if ((l_ts_rhs == NULL && l_ts_rhs == NULL)) { \
28bab8
+            TS_SUCCESS("%s ("#actual" == "#expected")\n\tActual  : NULL\n", message ? message : "Assert"); \
28bab8
+        } \
28bab8
+        else if (strcmp(l_ts_lhs, l_ts_rhs) == 0) { \
28bab8
+            TS_SUCCESS("%s ("#actual" == "#expected")\n\tActual  : %s\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#actual" == "#expected")\n\tActual  : %s\n\tExpected: %s\n", message ? message : "Assert", l_ts_lhs, l_ts_rhs); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+#define TS_ASSERT_STRING_BEGINS_WITH(actual, prefix, message) \
28bab8
+    do { \
28bab8
+        const char *l_ts_lhs = (actual); \
28bab8
+        const char *l_ts_rhs = (prefix); \
28bab8
+        if (l_ts_lhs == NULL && l_ts_rhs != NULL) { \
28bab8
+            TS_FAILURE("%s ("#actual" begins with "#prefix")\n\tActual  : NULL\n\tExpected: %p\n", message ? message : "Assert", l_ts_rhs); \
28bab8
+        } \
28bab8
+        else if (l_ts_lhs != NULL && l_ts_rhs == NULL) { \
28bab8
+            TS_FAILURE("%s ("#actual" begins with "#prefix")\n\tActual  : %s\n\tExpected: NULL\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else if ((l_ts_rhs == NULL && l_ts_rhs == NULL)) { \
28bab8
+            TS_SUCCESS("%s ("#actual" begins with "#prefix")\n\tActual  : NULL\n", message ? message : "Assert"); \
28bab8
+        } \
28bab8
+        else if (strncmp(l_ts_lhs, l_ts_rhs, strlen(l_ts_rhs)) == 0) { \
28bab8
+            TS_SUCCESS("%s ("#actual" begins with "#prefix")\n\tActual  : %s\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#actual" begins with "#prefix")\n\tActual  : %s\n\tExpected: %s\n", message ? message : "Assert", l_ts_lhs, l_ts_rhs); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+#define TS_ASSERT_STRING_NULL_OR_EMPTY(actual, message) \
28bab8
+    do { \
28bab8
+        const char *l_ts_lhs = (actual); \
28bab8
+        if (l_ts_lhs != NULL && l_ts_lhs[0] != '\0') { \
28bab8
+            TS_FAILURE("%s ("#actual" is NULL or empty)\n\tActual  : %s\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else if ((l_ts_lhs != NULL && l_ts_lhs[0] == '\0')) { \
28bab8
+            TS_SUCCESS("%s ("#actual" is NULL or empty)\n\tActual  : is empty\n", message ? message : "Assert"); \
28bab8
+        } \
28bab8
+        else if (l_ts_lhs == NULL) { \
28bab8
+            TS_SUCCESS("%s ("#actual" is NULL or empty)\n\tActual  : is NULL\n", message ? message : "Assert"); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_PRINTF("%s", "Invalid conditions in TS_ASSERT_STRING_NULL_OR_EMPTY"); \
28bab8
+            abort(); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+/*
28bab8
+ * Testing of pointers
28bab8
+ */
28bab8
+
28bab8
+#define TS_ASSERT_PTR_OP_MESSAGE(actual, operator, expected, message) \
28bab8
+    do { \
28bab8
+        const void *l_ts_lhs = (actual); \
28bab8
+        const void *l_ts_rhs = (expected); \
28bab8
+        if (l_ts_lhs operator l_ts_rhs) { \
28bab8
+            TS_SUCCESS("%s ("#actual" "#operator" "#expected")\n\tActual  : %p\n", message ? message : "Assert", l_ts_lhs); \
28bab8
+        } \
28bab8
+        else { \
28bab8
+            TS_FAILURE("%s ("#actual" "#operator" "#expected")\n\tActual  : %p\n\tExpected: %p\n", message ? message : "Assert", l_ts_lhs, l_ts_rhs); \
28bab8
+        } \
28bab8
+    } while(0)
28bab8
+
28bab8
+
28bab8
+#define TS_ASSERT_PTR_IS_NULL_MESSAGE(actual, message) \
28bab8
+    TS_ASSERT_PTR_OP_MESSAGE(actual, ==, NULL, message);
28bab8
+
28bab8
+#define TS_ASSERT_PTR_IS_NULL(actual) \
28bab8
+    TS_ASSERT_PTR_IS_NULL_MESSAGE(actual, NULL);
28bab8
+
28bab8
+
28bab8
+#define TS_ASSERT_PTR_IS_NOT_NULL_MESSAGE(actual, message) \
28bab8
+    TS_ASSERT_PTR_OP_MESSAGE(actual, !=, NULL, message);
28bab8
+
28bab8
+#define TS_ASSERT_PTR_IS_NOT_NULL(actual) \
28bab8
+    TS_ASSERT_PTR_IS_NOT_NULL_MESSAGE(actual, NULL);
28bab8
+
28bab8
+
28bab8
+#define TS_ASSERT_PTR_EQ(actual, expected) \
28bab8
+    TS_ASSERT_PTR_OP_MESSAGE(actual, ==, expected, NULL);
28bab8
+
28bab8
+
28bab8
+#endif/*LIBREPORT_TESTSUITE_H*/
28bab8
diff --git a/tests/helpers/testsuite_tools.h b/tests/helpers/testsuite_tools.h
28bab8
new file mode 100644
28bab8
index 0000000..ed3a557
28bab8
--- /dev/null
28bab8
+++ b/tests/helpers/testsuite_tools.h
28bab8
@@ -0,0 +1,67 @@
28bab8
+/*
28bab8
+    Copyright (C) 2015  ABRT team <crash-catcher@lists.fedorahosted.org>
28bab8
+    Copyright (C) 2015  RedHat inc.
28bab8
+
28bab8
+    This program is free software; you can redistribute it and/or modify
28bab8
+    it under the terms of the GNU General Public License as published by
28bab8
+    the Free Software Foundation; either version 2 of the License, or
28bab8
+    (at your option) any later version.
28bab8
+
28bab8
+    This program is distributed in the hope that it will be useful,
28bab8
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
28bab8
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28bab8
+    GNU General Public License for more details.
28bab8
+
28bab8
+    You should have received a copy of the GNU General Public License along
28bab8
+    with this program; if not, write to the Free Software Foundation, Inc.,
28bab8
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28bab8
+
28bab8
+    ----
28bab8
+
28bab8
+    Helper functions
28bab8
+*/
28bab8
+
28bab8
+#include "testsuite.h"
28bab8
+
28bab8
+/* Creates a new dump directory in a new temporary directory
28bab8
+ */
28bab8
+static struct dump_dir *testsuite_dump_dir_create(uid_t uid, mode_t mode, int ts_flags)
28bab8
+{
28bab8
+    char dump_dir_name[] = "/tmp/XXXXXX/dump_dir";
28bab8
+
28bab8
+    char *last_slash = strrchr(dump_dir_name, '/');
28bab8
+    *last_slash = '\0';
28bab8
+
28bab8
+    if (mkdtemp(dump_dir_name) == NULL) {
28bab8
+        perror("mkdtemp()");
28bab8
+        abort();
28bab8
+    }
28bab8
+
28bab8
+    fprintf(stdout, "Test temp directory: %s\n", dump_dir_name);
28bab8
+    fflush(stdout);
28bab8
+
28bab8
+    *last_slash = '/';
28bab8
+
28bab8
+    struct dump_dir *dd = dd_create(dump_dir_name, uid, mode == (mode_t)-1 ? 0640 : mode);
28bab8
+    assert(dd != NULL);
28bab8
+
28bab8
+    return dd;
28bab8
+}
28bab8
+
28bab8
+/* Removes the dump directory in and the temporary directory
28bab8
+ *
28bab8
+ * See testsuite_dump_dir_create()
28bab8
+ */
28bab8
+static void testsuite_dump_dir_delete(struct dump_dir *dd)
28bab8
+{
28bab8
+    char *tmp_dir = xstrndup(dd->dd_dirname, strrchr(dd->dd_dirname, '/') - dd->dd_dirname);
28bab8
+    assert(dd_delete(dd) == 0);
28bab8
+
28bab8
+    if(rmdir(tmp_dir) != 0)
28bab8
+    {
28bab8
+        perror("rmdir()");
28bab8
+        abort();
28bab8
+    }
28bab8
+
28bab8
+    free(tmp_dir);
28bab8
+}
28bab8
-- 
28bab8
1.8.3.1
28bab8