diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:34:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:34:54 +0000 |
commit | 0915b3ef56dfac3113cce55a59a5765dc94976be (patch) | |
tree | a8fea11d50b4f083e1bf0f90025ece7f0824784a /test/base-fifo.cpp | |
parent | Initial commit. (diff) | |
download | icinga2-upstream.tar.xz icinga2-upstream.zip |
Adding upstream version 2.13.6.upstream/2.13.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | test/base-fifo.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/base-fifo.cpp b/test/base-fifo.cpp new file mode 100644 index 0000000..5ecf1ac --- /dev/null +++ b/test/base-fifo.cpp @@ -0,0 +1,43 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/fifo.hpp" +#include "base/objectlock.hpp" +#include <BoostTestTargetConfig.h> + +using namespace icinga; + +BOOST_AUTO_TEST_SUITE(base_fifo) + +BOOST_AUTO_TEST_CASE(construct) +{ + FIFO::Ptr fifo = new FIFO(); + BOOST_CHECK(fifo); + BOOST_CHECK(fifo->GetAvailableBytes() == 0); + + fifo->Close(); +} + +BOOST_AUTO_TEST_CASE(io) +{ + FIFO::Ptr fifo = new FIFO(); + + fifo->Write("hello", 5); + BOOST_CHECK(fifo->GetAvailableBytes() == 5); + + char buffer1[2]; + fifo->Read(buffer1, 2, true); + BOOST_CHECK(memcmp(buffer1, "he", 2) == 0); + BOOST_CHECK(fifo->GetAvailableBytes() == 3); + + char buffer2[5]; + size_t rc = fifo->Read(buffer2, 5, true); + BOOST_CHECK(rc == 3); + BOOST_CHECK(memcmp(buffer2, "llo", 3) == 0); + BOOST_CHECK(fifo->GetAvailableBytes() == 0); + + BOOST_CHECK(!fifo->IsEof()); + + fifo->Close(); +} + +BOOST_AUTO_TEST_SUITE_END() |