summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-06-12 20:26:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:09:04 -0500
commitb617c831a42681c59ea7ce17ab0f69f7b1fe26f7 (patch)
treef8ead8389f4b60d34628ed130d6bd19fe67afd4a /source4
parent1cb88c8c98bb96fd5013b7ad3f780540e4131084 (diff)
downloadsamba-b617c831a42681c59ea7ce17ab0f69f7b1fe26f7.tar.gz
samba-b617c831a42681c59ea7ce17ab0f69f7b1fe26f7.tar.bz2
samba-b617c831a42681c59ea7ce17ab0f69f7b1fe26f7.zip
r16171: Convert to UI API
(This used to be commit 075dfb4c52132ea34dec643b12dcd01f05f3240f)
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/local/ndr.c68
1 files changed, 29 insertions, 39 deletions
diff --git a/source4/torture/local/ndr.c b/source4/torture/local/ndr.c
index afd890318f..9950531a26 100644
--- a/source4/torture/local/ndr.c
+++ b/source4/torture/local/ndr.c
@@ -21,78 +21,68 @@
#include "includes.h"
#include "torture/torture.h"
+#include "torture/ui.h"
#include "librpc/ndr/libndr.h"
-BOOL test_check_string_terminator(TALLOC_CTX *mem_ctx)
+static BOOL test_check_string_terminator(struct torture_context *torture)
{
struct ndr_pull *ndr;
DATA_BLOB blob;
+ struct torture_test *test = torture_test(torture, "string_terminator",
+ "string terminator");
/* Simple test */
blob = strhex_to_data_blob("0000");
- ndr = ndr_pull_init_blob(&blob, mem_ctx);
+ ndr = ndr_pull_init_blob(&blob, test);
- if (NT_STATUS_IS_ERR(ndr_check_string_terminator(ndr, 1, 2))) {
- DEBUG(0, ("simple check_string_terminator test failed\n"));
- return False;
- }
+ torture_assert_ntstatus_ok(test,
+ ndr_check_string_terminator(ndr, 1, 2),
+ "simple check_string_terminator test failed");
- if (ndr->offset != 0) {
- DEBUG(0, ("check_string_terminator did not reset offset\n"));
- return False;
- }
+ torture_assert(test, ndr->offset == 0,
+ "check_string_terminator did not reset offset");
if (NT_STATUS_IS_OK(ndr_check_string_terminator(ndr, 1, 3))) {
- DEBUG(0, ("check_string_terminator checked beyond string boundaries\n"));
+ torture_fail(test, "check_string_terminator checked beyond string boundaries");
+ talloc_free(test);
return False;
}
- if (ndr->offset != 0) {
- DEBUG(0, ("check_string_terminator did not reset offset\n"));
- return False;
- }
+ torture_assert(test, ndr->offset == 0,
+ "check_string_terminator did not reset offset");
talloc_free(ndr);
blob = strhex_to_data_blob("11220000");
- ndr = ndr_pull_init_blob(&blob, mem_ctx);
+ ndr = ndr_pull_init_blob(&blob, test);
- if (NT_STATUS_IS_ERR(ndr_check_string_terminator(ndr, 4, 1))) {
- DEBUG(0, ("check_string_terminator failed to recognize terminator\n"));
- return False;
- }
+ torture_assert_ntstatus_ok(test,
+ ndr_check_string_terminator(ndr, 4, 1),
+ "check_string_terminator failed to recognize terminator");
- if (NT_STATUS_IS_ERR(ndr_check_string_terminator(ndr, 3, 1))) {
- DEBUG(0, ("check_string_terminator failed to recognize terminator\n"));
- return False;
- }
+ torture_assert_ntstatus_ok(test,
+ ndr_check_string_terminator(ndr, 3, 1),
+ "check_string_terminator failed to recognize terminator");
if (NT_STATUS_IS_OK(ndr_check_string_terminator(ndr, 2, 1))) {
- DEBUG(0, ("check_string_terminator erroneously reported terminator\n"));
+ torture_fail(test,
+ "check_string_terminator erroneously reported terminator");
+ talloc_free(test);
return False;
}
- if (ndr->offset != 0) {
- DEBUG(0, ("check_string_terminator did not reset offset\n"));
- return False;
- }
+ torture_assert (test, ndr->offset == 0,
+ "check_string_terminator did not reset offset");
- talloc_free(ndr);
+ talloc_free(test);
return True;
}
BOOL torture_local_ndr(struct torture_context *torture)
{
- TALLOC_CTX *mem_ctx;
- BOOL ret = True;
-
- mem_ctx = talloc_init("torture_local_ndr");
-
- ret &= test_check_string_terminator(mem_ctx);
-
- talloc_free(mem_ctx);
+ test_check_string_terminator(torture);
- return ret;
+ return torture_result(torture);
}