summaryrefslogtreecommitdiff
path: root/source4/torture/ndr/ndr.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-09-07 15:35:55 +1000
committerAndrew Tridgell <tridge@samba.org>2011-09-08 03:35:27 +0200
commit430123e84e099f78ba794fdbf7de30d1169cd0cb (patch)
treea65ee07c3549292f96c1b743b1794330e8e00cbb /source4/torture/ndr/ndr.h
parent3d5dd91f598b8661d090ae147ae7c3a8fcea29e0 (diff)
downloadsamba-430123e84e099f78ba794fdbf7de30d1169cd0cb.tar.gz
samba-430123e84e099f78ba794fdbf7de30d1169cd0cb.tar.bz2
samba-430123e84e099f78ba794fdbf7de30d1169cd0cb.zip
torture-ndr: added support for testing push functions
this allows us to check the symmetry of pull/push functions in NDR tests Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/torture/ndr/ndr.h')
-rw-r--r--source4/torture/ndr/ndr.h27
1 files changed, 18 insertions, 9 deletions
diff --git a/source4/torture/ndr/ndr.h b/source4/torture/ndr/ndr.h
index 3de6b8b0d3..ee4db0aa68 100644
--- a/source4/torture/ndr/ndr.h
+++ b/source4/torture/ndr/ndr.h
@@ -24,9 +24,11 @@
#include "librpc/ndr/libndr.h"
#include "libcli/security/security.h"
-_PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_test(
+_PUBLIC_ struct torture_test *_torture_suite_add_ndr_pullpush_test(
struct torture_suite *suite,
- const char *name, ndr_pull_flags_fn_t fn,
+ const char *name,
+ ndr_pull_flags_fn_t pull_fn,
+ ndr_push_flags_fn_t push_fn,
DATA_BLOB db,
size_t struct_size,
int ndr_flags,
@@ -41,20 +43,27 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_inout_test(
bool (*check_fn) (struct torture_context *ctx, void *data));
#define torture_suite_add_ndr_pull_test(suite,name,data,check_fn) \
- _torture_suite_add_ndr_pull_test(suite, #name, \
- (ndr_pull_flags_fn_t)ndr_pull_ ## name, data_blob_talloc(suite, data, sizeof(data)), \
- sizeof(struct name), 0, (bool (*) (struct torture_context *, void *)) check_fn);
+ _torture_suite_add_ndr_pullpush_test(suite, #name, \
+ (ndr_pull_flags_fn_t)ndr_pull_ ## name, NULL, data_blob_const(data, sizeof(data)), \
+ sizeof(struct name), NDR_SCALARS|NDR_BUFFERS, (bool (*) (struct torture_context *, void *)) check_fn);
#define torture_suite_add_ndr_pull_fn_test(suite,name,data,flags,check_fn) \
- _torture_suite_add_ndr_pull_test(suite, #name "_" #flags, \
- (ndr_pull_flags_fn_t)ndr_pull_ ## name, data_blob_talloc(suite, data, sizeof(data)), \
+ _torture_suite_add_ndr_pullpush_test(suite, #name "_" #flags, \
+ (ndr_pull_flags_fn_t)ndr_pull_ ## name, NULL, data_blob_const(data, sizeof(data)), \
sizeof(struct name), flags, (bool (*) (struct torture_context *, void *)) check_fn);
+#define torture_suite_add_ndr_pullpush_test(suite,name,data_blob,check_fn) \
+ _torture_suite_add_ndr_pullpush_test(suite, #name, \
+ (ndr_pull_flags_fn_t)ndr_pull_ ## name, \
+ (ndr_push_flags_fn_t)ndr_push_ ## name, \
+ data_blob, \
+ sizeof(struct name), NDR_SCALARS|NDR_BUFFERS, (bool (*) (struct torture_context *, void *)) check_fn);
+
#define torture_suite_add_ndr_pull_io_test(suite,name,data_in,data_out,check_fn_out) \
_torture_suite_add_ndr_pull_inout_test(suite, #name "_INOUT", \
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \
- data_blob_talloc(suite, data_in, sizeof(data_in)), \
- data_blob_talloc(suite, data_out, sizeof(data_out)), \
+ data_blob_const(data_in, sizeof(data_in)), \
+ data_blob_const(data_out, sizeof(data_out)), \
sizeof(struct name), \
(bool (*) (struct torture_context *, void *)) check_fn_out);