diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:32:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:32:39 +0000 |
commit | 56ae875861ab260b80a030f50c4aff9f9dc8fff0 (patch) | |
tree | 531412110fc901a5918c7f7442202804a83cada9 /test/base-value.cpp | |
parent | Initial commit. (diff) | |
download | icinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.tar.xz icinga2-56ae875861ab260b80a030f50c4aff9f9dc8fff0.zip |
Adding upstream version 2.14.2.upstream/2.14.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/base-value.cpp')
-rw-r--r-- | test/base-value.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/test/base-value.cpp b/test/base-value.cpp new file mode 100644 index 0000000..c53b8e9 --- /dev/null +++ b/test/base-value.cpp @@ -0,0 +1,53 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/value.hpp" +#include <BoostTestTargetConfig.h> + +using namespace icinga; + +BOOST_AUTO_TEST_SUITE(base_value) + +BOOST_AUTO_TEST_CASE(scalar) +{ + Value v; + + v = 3; + BOOST_CHECK(v.IsScalar()); + + v = "hello"; + BOOST_CHECK(v.IsScalar()); + + v = Empty; + BOOST_CHECK(!v.IsScalar()); +} + +BOOST_AUTO_TEST_CASE(convert) +{ + Value v; + BOOST_CHECK(v.IsEmpty()); + BOOST_CHECK(v == ""); + BOOST_CHECK(static_cast<double>(v) == 0); + BOOST_CHECK(!v.IsScalar()); + BOOST_CHECK(!v.IsObjectType<Object>()); + + BOOST_CHECK(v + "hello" == "hello"); + BOOST_CHECK("hello" + v == "hello"); +} + +BOOST_AUTO_TEST_CASE(format) +{ + Value v = 3; + + std::ostringstream obuf; + obuf << v; + + BOOST_CHECK(obuf.str() == "3"); + + std::istringstream ibuf("3"); + ibuf >> v; + + BOOST_CHECK_MESSAGE(v.IsString(), "type of v should be String (is " << v.GetTypeName() << ")"); + BOOST_CHECK_MESSAGE(v == "3", "v should be '3' (is '" << v << "')"); +} + +BOOST_AUTO_TEST_SUITE_END() |