icinga2/test/base-netstring.cpp

26 lines
507 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-09-02 11:10:04 +02:00
2014-05-25 16:23:35 +02:00
#include "base/netstring.hpp"
#include "base/fifo.hpp"
#include <BoostTestTargetConfig.h>
2013-09-02 11:10:04 +02:00
using namespace icinga;
BOOST_AUTO_TEST_SUITE(base_netstring)
BOOST_AUTO_TEST_CASE(netstring)
{
FIFO::Ptr fifo = new FIFO();
2013-09-02 11:10:04 +02:00
NetString::WriteStringToStream(fifo, "hello");
String s;
StreamReadContext src;
BOOST_CHECK(NetString::ReadStringFromStream(fifo, &s, src) == StatusNewItem);
2013-09-02 11:10:04 +02:00
BOOST_CHECK(s == "hello");
fifo->Close();
}
BOOST_AUTO_TEST_SUITE_END()