s4-torture: Always compile backupkey ndr testsuite.
[obnox/samba/samba-obnox.git] / source4 / torture / ndr / ndr.c
index 03c751c36440738c50240af3671a24b56f567100..1b0f968bd2d6d28ec3ab888d44e6356806b25ebf 100644 (file)
 
 struct ndr_pull_test_data {
        DATA_BLOB data;
+       DATA_BLOB data_context;
        size_t struct_size;
        ndr_pull_flags_fn_t pull_fn;
+       ndr_push_flags_fn_t push_fn;
        int ndr_flags;
+       int flags;
 };
 
-static bool wrap_ndr_pull_test(struct torture_context *tctx,
-                              struct torture_tcase *tcase,
-                              struct torture_test *test)
+static bool wrap_ndr_pullpush_test(struct torture_context *tctx,
+                                  struct torture_tcase *tcase,
+                                  struct torture_test *test)
 {
        bool (*check_fn) (struct torture_context *ctx, void *data) = test->fn;
        const struct ndr_pull_test_data *data = (const struct ndr_pull_test_data *)test->data;
-       void *ds = talloc_zero_size(tctx, data->struct_size);
        struct ndr_pull *ndr = ndr_pull_init_blob(&(data->data), tctx);
+       void *ds = talloc_zero_size(ndr, data->struct_size);
+       bool ret;
+       uint32_t highest_ofs;
+
+       ndr->flags |= data->flags;
 
        ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
 
        torture_assert_ndr_success(tctx, data->pull_fn(ndr, data->ndr_flags, ds),
                                   "pulling");
 
-       torture_assert(tctx, ndr->offset == ndr->data_size,
+       if (ndr->offset > ndr->relative_highest_offset) {
+               highest_ofs = ndr->offset;
+       } else {
+               highest_ofs = ndr->relative_highest_offset;
+       }
+
+       torture_assert(tctx, highest_ofs == ndr->data_size,
                                   talloc_asprintf(tctx,
-                                          "%d unread bytes", ndr->data_size - ndr->offset));
+                                          "%d unread bytes", ndr->data_size - highest_ofs));
+
+       if (check_fn != NULL) {
+               ret = check_fn(tctx, ds);
+       } else {
+               ret = true;
+       }
+
+       if (data->push_fn != NULL) {
+               DATA_BLOB outblob;
+               torture_assert_ndr_success(tctx, ndr_push_struct_blob(&outblob, ndr, ds, data->push_fn), "pushing");
+               torture_assert_data_blob_equal(tctx, outblob, data->data, "ndr push compare");
+       }
+
+       talloc_free(ndr);
+       return ret;
+}
+
+_PUBLIC_ struct torture_test *_torture_suite_add_ndr_pullpush_test(
+       struct torture_suite *suite,
+       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,
+       int flags,
+       bool (*check_fn) (struct torture_context *ctx, void *data))
+{
+       struct torture_test *test;
+       struct torture_tcase *tcase;
+       struct ndr_pull_test_data *data;
+
+       tcase = torture_suite_add_tcase(suite, name);
+
+       test = talloc(tcase, struct torture_test);
+
+       test->name = talloc_strdup(test, name);
+       test->description = NULL;
+       test->run = wrap_ndr_pullpush_test;
+
+       data = talloc(test, struct ndr_pull_test_data);
+       data->data = db;
+       data->ndr_flags = ndr_flags;
+       data->flags = flags;
+       data->struct_size = struct_size;
+       data->pull_fn = pull_fn;
+       data->push_fn = push_fn;
+
+       test->data = data;
+       test->fn = check_fn;
+       test->dangerous = false;
+
+       DLIST_ADD_END(tcase->tests, test, struct torture_test *);
 
-       if (check_fn != NULL)
+       return test;
+}
+
+
+static bool wrap_ndr_inout_pull_test(struct torture_context *tctx,
+                                    struct torture_tcase *tcase,
+                                    struct torture_test *test)
+{
+       bool (*check_fn) (struct torture_context *ctx, void *data) = test->fn;
+       const struct ndr_pull_test_data *data = (const struct ndr_pull_test_data *)test->data;
+       void *ds = talloc_zero_size(tctx, data->struct_size);
+       struct ndr_pull *ndr;
+       uint32_t highest_ofs;
+
+       /* handle NDR_IN context */
+
+       ndr = ndr_pull_init_blob(&(data->data_context), tctx);
+       torture_assert(tctx, ndr, "ndr init failed");
+
+       ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
+
+       torture_assert_ndr_success(tctx,
+               data->pull_fn(ndr, NDR_IN, ds),
+               "ndr pull of context failed");
+
+       if (ndr->offset > ndr->relative_highest_offset) {
+               highest_ofs = ndr->offset;
+       } else {
+               highest_ofs = ndr->relative_highest_offset;
+       }
+
+       torture_assert(tctx, highest_ofs == ndr->data_size,
+               talloc_asprintf(tctx, "%d unread bytes", ndr->data_size - highest_ofs));
+
+       talloc_free(ndr);
+
+       /* handle NDR_OUT */
+
+       ndr = ndr_pull_init_blob(&(data->data), tctx);
+       torture_assert(tctx, ndr, "ndr init failed");
+
+       ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
+
+       torture_assert_ndr_success(tctx,
+               data->pull_fn(ndr, NDR_OUT, ds),
+               "ndr pull failed");
+
+       if (ndr->offset > ndr->relative_highest_offset) {
+               highest_ofs = ndr->offset;
+       } else {
+               highest_ofs = ndr->relative_highest_offset;
+       }
+
+       torture_assert(tctx, highest_ofs == ndr->data_size,
+               talloc_asprintf(tctx, "%d unread bytes", ndr->data_size - highest_ofs));
+
+       talloc_free(ndr);
+
+       if (check_fn) {
                return check_fn(tctx, ds);
-       else
+       } else {
                return true;
+       }
 }
 
-_PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_test(
+_PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_inout_test(
                                        struct torture_suite *suite,
                                        const char *name, ndr_pull_flags_fn_t pull_fn,
-                                       DATA_BLOB db,
+                                       DATA_BLOB db_in,
+                                       DATA_BLOB db_out,
                                        size_t struct_size,
-                                       int ndr_flags,
                                        bool (*check_fn) (struct torture_context *ctx, void *data))
 {
        struct torture_test *test;
@@ -73,10 +198,11 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_test(
 
        test->name = talloc_strdup(test, name);
        test->description = NULL;
-       test->run = wrap_ndr_pull_test;
+       test->run = wrap_ndr_inout_pull_test;
        data = talloc(test, struct ndr_pull_test_data);
-       data->data = db;
-       data->ndr_flags = ndr_flags;
+       data->data = db_out;
+       data->data_context = db_in;
+       data->ndr_flags = 0;
        data->struct_size = struct_size;
        data->pull_fn = pull_fn;
        test->data = data;
@@ -256,7 +382,7 @@ static bool test_compare_uuid(struct torture_context *tctx)
 
 struct torture_suite *torture_local_ndr(TALLOC_CTX *mem_ctx)
 {
-       struct torture_suite *suite = torture_suite_create(mem_ctx, "NDR");
+       struct torture_suite *suite = torture_suite_create(mem_ctx, "ndr");
 
        torture_suite_add_suite(suite, ndr_winreg_suite(suite));
        torture_suite_add_suite(suite, ndr_atsvc_suite(suite));
@@ -267,9 +393,13 @@ struct torture_suite *torture_local_ndr(TALLOC_CTX *mem_ctx)
        torture_suite_add_suite(suite, ndr_netlogon_suite(suite));
        torture_suite_add_suite(suite, ndr_drsuapi_suite(suite));
        torture_suite_add_suite(suite, ndr_spoolss_suite(suite));
+       torture_suite_add_suite(suite, ndr_ntprinting_suite(suite));
        torture_suite_add_suite(suite, ndr_samr_suite(suite));
        torture_suite_add_suite(suite, ndr_drsblobs_suite(suite));
        torture_suite_add_suite(suite, ndr_nbt_suite(suite));
+       torture_suite_add_suite(suite, ndr_ntlmssp_suite(suite));
+       torture_suite_add_suite(suite, ndr_backupkey_suite(suite));
+       torture_suite_add_suite(suite, ndr_string_suite(suite));
 
        torture_suite_add_simple_test(suite, "string terminator",
                                      test_check_string_terminator);