diff options
author | delphij <delphij@FreeBSD.org> | 2015-07-15 19:21:26 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2015-07-15 19:21:26 +0000 |
commit | 2a25cee78ab1d37e7d2bc40ae675646974d99f56 (patch) | |
tree | b0302ac4be59e104f4e1e54014561a1389397192 /contrib/ntp/tests/libntp/g_atouint.cpp | |
parent | a0741a75537b2e0514472ac3b28afc55a7846c30 (diff) | |
download | FreeBSD-src-2a25cee78ab1d37e7d2bc40ae675646974d99f56.zip FreeBSD-src-2a25cee78ab1d37e7d2bc40ae675646974d99f56.tar.gz |
MFC r280849,280915-280916,281015-281016,282097,282408,282415,283542,
284864,285169-285170,285435:
ntp 4.2.8p3.
Relnotes: yes
Approved by: re (?)
Diffstat (limited to 'contrib/ntp/tests/libntp/g_atouint.cpp')
-rw-r--r-- | contrib/ntp/tests/libntp/g_atouint.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/contrib/ntp/tests/libntp/g_atouint.cpp b/contrib/ntp/tests/libntp/g_atouint.cpp new file mode 100644 index 0000000..ba261db --- /dev/null +++ b/contrib/ntp/tests/libntp/g_atouint.cpp @@ -0,0 +1,40 @@ +#include "g_libntptest.h" + +class atouintTest : public libntptest { +}; + +TEST_F(atouintTest, RegularPositive) { + const char *str = "305"; + u_long actual; + + ASSERT_TRUE(atouint(str, &actual)); + EXPECT_EQ(305, actual); +} + +TEST_F(atouintTest, PositiveOverflowBoundary) { + const char *str = "4294967296"; + u_long actual; + + ASSERT_FALSE(atouint(str, &actual)); +} + +TEST_F(atouintTest, PositiveOverflowBig) { + const char *str = "8000000000"; + u_long actual; + + ASSERT_FALSE(atouint(str, &actual)); +} + +TEST_F(atouintTest, Negative) { + const char *str = "-1"; + u_long actual; + + ASSERT_FALSE(atouint(str, &actual)); +} + +TEST_F(atouintTest, IllegalChar) { + const char *str = "50c3"; + u_long actual; + + ASSERT_FALSE(atouint(str, &actual)); +} |