]> git.ozlabs.org Git - ccan/blobdiff - ccan/talloc/test/run-test_talloc_ptrtype.c
talloc: use failtest to test failure paths.
[ccan] / ccan / talloc / test / run-test_talloc_ptrtype.c
diff --git a/ccan/talloc/test/run-test_talloc_ptrtype.c b/ccan/talloc/test/run-test_talloc_ptrtype.c
new file mode 100644 (file)
index 0000000..ed63779
--- /dev/null
@@ -0,0 +1,137 @@
+/* 
+   Unix SMB/CIFS implementation.
+
+   local testing of talloc routines.
+
+   Copyright (C) Andrew Tridgell 2004
+   Converted to ccan tests by Rusty Russell 2008
+   
+     ** NOTE! The following LGPL license applies to the talloc
+     ** library. This does NOT imply that all of Samba is released
+     ** under the LGPL
+   
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2 of the License, or (at your option) any later version.
+
+   This library 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
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with this library; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+#include <ccan/failtest/failtest_override.h>
+#include <ccan/talloc/talloc.c>
+#include <stdbool.h>
+#include <ccan/tap/tap.h>
+#include <ccan/failtest/failtest.h>
+
+#define torture_assert(test, expr, str)                                        \
+       ok(expr, "%s [\n%s: Expression %s failed: %s\n]\n",             \
+          test, __location__, #expr, str)
+
+#define torture_assert_str_equal(test, arg1, arg2, desc)       \
+       ok(strcmp(arg1, arg2) == 0,                             \
+          "%s [\n%s: Expected %s, got %s: %s\n]\n",            \
+          test, __location__, arg1, arg2, desc)
+
+#define CHECK_SIZE(test, ptr, tsize)                                   \
+       ok(talloc_total_size(ptr) == (tsize),                           \
+          "%s [\nwrong '%s' tree size: got %u  expected %u\n]\n",      \
+          test, #ptr,                                                  \
+          (unsigned)talloc_total_size(ptr),                            \
+          (unsigned)tsize)
+
+#define CHECK_BLOCKS(test, ptr, tblocks)                               \
+       ok(talloc_total_blocks(ptr) == (tblocks),                       \
+          "%s [\nwrong '%s' tree blocks: got %u  expected %u\n]\n",    \
+          test, #ptr,                                                  \
+          (unsigned)talloc_total_blocks(ptr),                          \
+          (unsigned)tblocks)
+
+#define CHECK_PARENT(test, ptr, parent)                                        \
+       ok(talloc_parent(ptr) == (parent),                              \
+          "%s [\n'%s' has wrong parent: got %p  expected %p\n]\n",     \
+          test, #ptr,                                                  \
+          talloc_parent(ptr),                                          \
+          (parent))
+
+struct torture_context;
+
+static bool test_talloc_ptrtype(const struct torture_context *ctx)
+{
+       void *top = talloc_new(ctx);
+       struct struct1 {
+               int foo;
+               int bar;
+       } *s1, *s2, **s3, ***s4;
+       const char *location1;
+       const char *location2;
+       const char *location3;
+       const char *location4;
+       bool ret = false;
+
+       if (!top)
+               goto out;
+
+       s1 = talloc_ptrtype(top, s1);location1 = __location__;
+       if (!s1)
+               goto out;
+
+       ok1(talloc_get_size(s1) == sizeof(struct struct1));
+
+       ok1(strcmp(location1, talloc_get_name(s1)) == 0);
+
+       s2 = talloc_array_ptrtype(top, s2, 10);location2 = __location__;
+       if (!s2)
+               goto out;
+
+       ok1(talloc_get_size(s2) == (sizeof(struct struct1) * 10));
+
+       ok1(strcmp(location2, talloc_get_name(s2)) == 0);
+
+       s3 = talloc_array_ptrtype(top, s3, 10);location3 = __location__;
+       if (!s3)
+               goto out;
+
+       ok1(talloc_get_size(s3) == (sizeof(struct struct1 *) * 10));
+
+       torture_assert_str_equal("ptrtype", location3, talloc_get_name(s3),
+               "talloc_array_ptrtype() sets the wrong name");
+
+       s4 = talloc_array_ptrtype(top, s4, 10);location4 = __location__;
+       if (!s4)
+               goto out;
+
+       ok1(talloc_get_size(s4) == (sizeof(struct struct1 **) * 10));
+
+       torture_assert_str_equal("ptrtype", location4, talloc_get_name(s4),
+               "talloc_array_ptrtype() sets the wrong name");
+       ret = true;
+
+out:
+       talloc_free(top);
+
+       return ret;
+}
+
+int main(int argc, char *argv[])
+{
+       plan_tests(10);
+       failtest_init(argc, argv);
+
+       talloc_enable_null_tracking();
+       if (null_context) {
+               ok1(test_talloc_ptrtype(NULL));
+               /* This closes the leak, but don't free any other leaks! */
+               ok1(!talloc_chunk_from_ptr(null_context)->child);
+               talloc_disable_null_tracking();
+       }
+       failtest_exit(exit_status());
+}
+