Rev 11286: Add tests in file:///home/jelmer/bzr.samba/SAMBA_4_0/

Jelmer Vernooij jelmer at samba.org
Mon Jan 22 18:16:59 GMT 2007


------------------------------------------------------------
revno: 11286
revision-id: jelmer at samba.org-20070122181648-71ad8zjnj5h4cs4n
parent: jelmer at samba.org-20070122181120-3n8ah238pjbzylyo
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: SAMBA_4_0
timestamp: Mon 2007-01-22 19:16:48 +0100
message:
  Add tests
modified:
  source/torture/local/ndr.c     svn-v2:12584 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2ftorture%2flocal%2fndr.c
=== modified file 'source/torture/local/ndr.c'
--- a/source/torture/local/ndr.c	2006-10-16 13:06:41 +0000
+++ b/source/torture/local/ndr.c	2007-01-22 18:16:48 +0000
@@ -70,6 +70,116 @@
 	return true;
 }
 
+static bool test_guid_from_string_valid(struct torture_context *tctx)
+{
+	/* FIXME */
+	return true;
+}
+
+static bool test_guid_from_string_null(struct torture_context *tctx)
+{
+	struct GUID guid;
+	torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER, 
+								  GUID_from_string(NULL, &guid), 
+								  "NULL failed");
+	return true;
+}
+
+static bool test_guid_from_string_invalid(struct torture_context *tctx)
+{
+	struct GUID g1;
+	torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER, 
+								  GUID_from_string("bla", &g1),
+								  "parameter not invalid");
+	return true;
+}	
+
+static bool test_guid_from_string(struct torture_context *tctx)
+{
+	struct GUID g1, exp;
+	torture_assert_ntstatus_ok(tctx,
+							   GUID_from_string("00000001-0002-0003-0405-060708090a0b", &g1),
+							   "invalid return code");
+	exp.time_low = 1;
+	exp.time_mid = 2;
+	exp.time_hi_and_version = 3;
+	exp.clock_seq[0] = 4;
+	exp.clock_seq[1] = 5;
+	exp.node[0] = 6;
+	exp.node[1] = 7;
+	exp.node[2] = 8;
+	exp.node[3] = 9;
+	exp.node[4] = 10;
+	exp.node[5] = 11;
+	torture_assert(tctx, GUID_equal(&g1, &exp), "UUID parsed incorrectly");
+	torture_assert_ntstatus_ok(tctx,
+							   GUID_from_string("{00000001-0002-0003-0405-060708090a0b}", &g1),
+							   "invalid return code");
+	torture_assert(tctx, GUID_equal(&g1, &exp), "UUID parsed incorrectly");
+
+	return true;
+}
+
+static bool test_guid_string_valid(struct torture_context *tctx)
+{
+	struct GUID g;
+	g.time_low = 1;
+	g.time_mid = 2;
+	g.time_hi_and_version = 3;
+	g.clock_seq[0] = 4;
+	g.clock_seq[1] = 5;
+	g.node[0] = 6;
+	g.node[1] = 7;
+	g.node[2] = 8;
+	g.node[3] = 9;
+	g.node[4] = 10;
+	g.node[5] = 11;
+	torture_assert_str_equal(tctx, "00000001-0002-0003-0405-060708090a0b", GUID_string(tctx, &g), 
+							 "parsing guid failed");
+	return true;
+}
+
+static bool test_guid_string2_valid(struct torture_context *tctx)
+{
+	struct GUID g;
+	g.time_low = 1;
+	g.time_mid = 2;
+	g.time_hi_and_version = 3;
+	g.clock_seq[0] = 4;
+	g.clock_seq[1] = 5;
+	g.node[0] = 6;
+	g.node[1] = 7;
+	g.node[2] = 8;
+	g.node[3] = 9;
+	g.node[4] = 10;
+	g.node[5] = 11;
+	torture_assert_str_equal(tctx, "{00000001-0002-0003-0405-060708090a0b}", GUID_string2(tctx, &g), 
+							 "parsing guid failed");
+	return true;
+}
+
+static bool test_compare_uuid(struct torture_context *tctx)
+{
+	struct GUID g1, g2;
+	ZERO_STRUCT(g1); ZERO_STRUCT(g2);
+	torture_assert_int_equal(tctx, 0, GUID_compare(&g1, &g2), 
+							 "GUIDs not equal");
+	g1.time_low = 1;
+	torture_assert_int_equal(tctx, 1, GUID_compare(&g1, &g2), 
+							 "GUID diff invalid");
+
+	g1.time_low = 10;
+	torture_assert_int_equal(tctx, 10, GUID_compare(&g1, &g2), 
+							 "GUID diff invalid");
+
+	g1.time_low = 0;
+	g1.clock_seq[1] = 20;
+	torture_assert_int_equal(tctx, 20, GUID_compare(&g1, &g2), 
+							 "GUID diff invalid");
+	return true;
+}
+
+
 struct torture_suite *torture_local_ndr(TALLOC_CTX *mem_ctx)
 {
 	struct torture_suite *suite = torture_suite_create(mem_ctx, "NDR");
@@ -77,5 +187,26 @@
 	torture_suite_add_simple_test(suite, "string terminator", 
 								   test_check_string_terminator);
 
+	torture_suite_add_simple_test(suite, "guid_from_string_null", 
+								   test_guid_from_string_null);
+
+	torture_suite_add_simple_test(suite, "guid_from_string", 
+								   test_guid_from_string);
+
+	torture_suite_add_simple_test(suite, "guid_from_string_invalid", 
+								   test_guid_from_string_invalid);
+
+	torture_suite_add_simple_test(suite, "guid_string_valid", 
+								   test_guid_string_valid);
+
+	torture_suite_add_simple_test(suite, "guid_string2_valid", 
+								   test_guid_string2_valid);
+
+	torture_suite_add_simple_test(suite, "guid_from_string_valid", 
+								   test_guid_from_string_valid);
+
+	torture_suite_add_simple_test(suite, "compare_uuid", 
+								   test_compare_uuid);
+
 	return suite;
 }



More information about the samba-cvs mailing list