Add some simple tests for lib/util/time.c
authorJelmer Vernooij <jelmer@samba.org>
Sat, 11 Oct 2008 21:25:35 +0000 (23:25 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Sat, 11 Oct 2008 21:25:35 +0000 (23:25 +0200)
lib/util/tests/time.c [new file with mode: 0644]
source4/torture/local/config.mk
source4/torture/local/local.c

diff --git a/lib/util/tests/time.c b/lib/util/tests/time.c
new file mode 100644 (file)
index 0000000..4a31566
--- /dev/null
@@ -0,0 +1,75 @@
+/* 
+   Unix SMB/CIFS implementation.
+
+   util time testing
+
+   Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
+   
+   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/>.
+*/
+
+#include "includes.h"
+#include "torture/torture.h"
+
+static bool test_null_time(struct torture_context *tctx)
+{
+       torture_assert(tctx, null_time(0), "0");
+       torture_assert(tctx, null_time(0xFFFFFFFF), "0xFFFFFFFF");
+       torture_assert(tctx, null_time(-1), "-1");
+       torture_assert(tctx, !null_time(42), "42");
+       return true;
+}
+
+static bool test_null_nttime(struct torture_context *tctx)
+{
+       torture_assert(tctx, null_nttime(-1), "-1");
+       torture_assert(tctx, null_nttime(-1), "-1");
+       torture_assert(tctx, !null_nttime(42), "42");
+       return true;
+}
+
+
+static bool test_http_timestring(struct torture_context *tctx)
+{
+       const char *start = "Thu, 01 Jan 1970";
+       torture_assert(tctx, !strncmp(start, http_timestring(tctx, 42), 
+                                                                                strlen(start)), "42");
+       torture_assert_str_equal(tctx, "never", 
+                                                        http_timestring(tctx, get_time_t_max()), "42");
+       return true;
+}
+
+static bool test_timestring(struct torture_context *tctx)
+{
+       const char *start = "Thu Jan  1";
+       torture_assert(tctx, !strncmp(start, timestring(tctx, 42), strlen(start)),
+                                  "42");
+       return true;
+}
+
+
+
+struct torture_suite *torture_local_util_time(TALLOC_CTX *mem_ctx)
+{
+       struct torture_suite *suite = torture_suite_create(mem_ctx, "TIME");
+
+       torture_suite_add_simple_test(suite, "null_time", test_null_time);
+       torture_suite_add_simple_test(suite, "null_nttime", test_null_nttime);
+       torture_suite_add_simple_test(suite, "http_timestring", 
+                                                                 test_http_timestring);
+       torture_suite_add_simple_test(suite, "timestring", 
+                                                                 test_timestring);
+
+       return suite;
+}
index 1f87912e8b0ed516f1cada33bde8c54c7a87bfb1..79df834525563fec5c57dc14cacf934f16729a7c 100644 (file)
@@ -34,6 +34,7 @@ TORTURE_LOCAL_OBJ_FILES = \
                $(torturesrcdir)/../libcli/resolve/testsuite.o \
                $(torturesrcdir)/../../lib/util/tests/strlist.o \
                $(torturesrcdir)/../../lib/util/tests/str.o \
+               $(torturesrcdir)/../../lib/util/tests/time.o \
                $(torturesrcdir)/../../lib/util/tests/file.o \
                $(torturesrcdir)/../../lib/util/tests/genrand.o \
                $(torturesrcdir)/../../lib/compression/testsuite.o \
index fdefbbe131e4feff746597d80d4f48c62f38049b..9f390975ee4e5b0e9f54871218536b1243a1423a 100644 (file)
@@ -36,6 +36,7 @@
        torture_local_util_strlist, 
        torture_local_util_file, 
        torture_local_util_str, 
+       torture_local_util_time, 
        torture_local_idtree, 
        torture_local_genrand, 
        torture_local_iconv,