summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSwen Schillig <swen@linux.ibm.com>2019-04-10 10:44:06 +0200
committerRalph Boehme <slow@samba.org>2019-06-30 11:32:17 +0000
commit9af0614bcb1750e29a1018e7c6fb6f655cb594fd (patch)
tree2a284e3e704145e3b1277cc472cd6261aa313ec5 /lib
parentc878fbcec9cefbcc1f3a966689cd7375eaf8632f (diff)
downloadsamba-9af0614bcb1750e29a1018e7c6fb6f655cb594fd.tar.gz
tests-util: Adding test to verify negative "number" detection
Verify that a string representing a negative number is throwing an error. Signed-off-by: Swen Schillig <swen@linux.ibm.com> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Christof Schmitt <cs@samba.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/util/tests/util.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/util/tests/util.c b/lib/util/tests/util.c
index 3f59ce6f6dc..c45f3835cf7 100644
--- a/lib/util/tests/util.c
+++ b/lib/util/tests/util.c
@@ -447,6 +447,40 @@ static bool test_strtoul_err_errno_check(struct torture_context *tctx)
return true;
}
+static bool test_strtoul_err_negative(struct torture_context *tctx)
+{
+ const char *number = "-132";
+ const char *number2 = "132-";
+ unsigned long int val = 0;
+ unsigned long long int vall = 0;
+ int err;
+
+ err = 0;
+ strtoul_err(number, NULL, 0, &err);
+ torture_assert(tctx, err == EINVAL, "strtoul_err: Expected EINVAL");
+
+ err = 0;
+ strtoull_err(number, NULL, 0, &err);
+ torture_assert(tctx, err == EINVAL, "strtoull_err: Expected EINVAL");
+
+ /* it is allowed to have a "-" sign after a number,
+ * e.g. as part of a formular, however, it is not supposed to
+ * have an effect on the converted value.
+ */
+
+ err = 0;
+ val = strtoul_err(number2, NULL, 0, &err);
+ torture_assert(tctx, err == 0, "strtoul_err: Expected no error");
+ torture_assert(tctx, val == 132, "strtoul_err: Wrong value");
+
+ err = 0;
+ vall = strtoull_err(number2, NULL, 0, &err);
+ torture_assert(tctx, err == 0, "strtoull_err: Expected no error");
+ torture_assert(tctx, vall == 132, "strtoull_err: Wrong value");
+
+ return true;
+}
+
struct torture_suite *torture_local_util(TALLOC_CTX *mem_ctx)
{
struct torture_suite *suite =
@@ -461,5 +495,8 @@ struct torture_suite *torture_local_util(TALLOC_CTX *mem_ctx)
torture_suite_add_simple_test(suite,
"strtoul(l)_err errno",
test_strtoul_err_errno_check);
+ torture_suite_add_simple_test(suite,
+ "strtoul(l)_err negative",
+ test_strtoul_err_negative);
return suite;
}