summaryrefslogtreecommitdiffstats
path: root/src/tests/cmocka/common_mock.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-02-12 17:40:01 +0100
committerJakub Hrozek <jhrozek@redhat.com>2013-03-08 22:19:26 +0100
commit150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2 (patch)
tree48def0d6cdd381d89b50e1a7c1c4d59a3e55cd06 /src/tests/cmocka/common_mock.h
parent1a5d83798af7bd88c9d20862c8830ebb5b755e2d (diff)
downloadsssd-150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2.tar.gz
sssd-150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2.tar.xz
sssd-150b76e13b7c4f3ccf1d709bf517ca2af6b2c9a2.zip
CMocka based test for the NSS responder
Diffstat (limited to 'src/tests/cmocka/common_mock.h')
-rw-r--r--src/tests/cmocka/common_mock.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/tests/cmocka/common_mock.h b/src/tests/cmocka/common_mock.h
new file mode 100644
index 000000000..b54cc0871
--- /dev/null
+++ b/src/tests/cmocka/common_mock.h
@@ -0,0 +1,54 @@
+/*
+ Authors:
+ Jakub Hrozek <jhrozek@redhat.com>
+
+ Copyright (C) 2013 Red Hat
+
+ SSSD tests: Common utilities for tests that exercise domains
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __COMMON_MOCK_H_
+#define __COMMON_MOCK_H_
+
+/*
+ * from cmocka.c:
+ * These headers or their equivalents should be included prior to
+ * including
+ * this header file.
+ *
+ * #include <stdarg.h>
+ * #include <stddef.h>
+ * #include <setjmp.h>
+ *
+ * This allows test applications to use custom definitions of C standard
+ * library functions and types.
+ */
+#include <stdarg.h>
+#include <stddef.h>
+#include <setjmp.h>
+#include <cmocka.h>
+
+#include "tests/common.h"
+
+#define sss_mock_type(type) ((type) mock())
+#define sss_mock_ptr_type(type) ((type) (uintptr_t) mock())
+
+enum sss_test_wrapper_call {
+ WRAP_CALL_WRAPPER,
+ WRAP_CALL_REAL
+};
+
+#endif /* __COMMON_MOCK_H_ */