]> granicus.if.org Git - icinga2/blob - test/base-stream.cpp
Merge pull request #6170 from Icinga/feature/windows-global-zones
[icinga2] / test / base-stream.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "base/stdiostream.hpp"
21 #include "base/string.hpp"
22 #include <BoostTestTargetConfig.h>
23 #include <sstream>
24
25 using namespace icinga;
26
27 BOOST_AUTO_TEST_SUITE(base_stream)
28
29 BOOST_AUTO_TEST_CASE(readline_stdio)
30 {
31         std::stringstream msgbuf;
32         msgbuf << "Hello\nWorld\n\n";
33
34         StdioStream::Ptr stdstream = new StdioStream(&msgbuf, false);
35
36         StreamReadContext rlc;
37
38         String line;
39         BOOST_CHECK(stdstream->ReadLine(&line, rlc) == StatusNewItem);
40         BOOST_CHECK(line == "Hello");
41
42         BOOST_CHECK(stdstream->ReadLine(&line, rlc) == StatusNewItem);
43         BOOST_CHECK(line == "World");
44
45         BOOST_CHECK(stdstream->ReadLine(&line, rlc) == StatusNewItem);
46         BOOST_CHECK(line == "");
47
48         BOOST_CHECK(stdstream->ReadLine(&line, rlc) == StatusNewItem);
49         BOOST_CHECK(line == "");
50
51         BOOST_CHECK(stdstream->ReadLine(&line, rlc) == StatusEof);
52
53         stdstream->Close();
54 }
55
56 BOOST_AUTO_TEST_SUITE_END()