]> granicus.if.org Git - icinga2/blob - test/base-serialize.cpp
Move PerfdataValue() class into base library
[icinga2] / test / base-serialize.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2017 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/perfdatavalue.hpp"
21 #include "base/dictionary.hpp"
22 #include "base/objectlock.hpp"
23 #include "base/serializer.hpp"
24 #include "base/array.hpp"
25 #include "base/dictionary.hpp"
26 #include <BoostTestTargetConfig.h>
27 #include <boost/tuple/tuple.hpp>
28
29 using namespace icinga;
30
31 BOOST_AUTO_TEST_SUITE(base_serialize)
32
33 BOOST_AUTO_TEST_CASE(scalar)
34 {
35         BOOST_CHECK(Deserialize(Serialize(7)) == 7);
36         BOOST_CHECK(Deserialize(Serialize(7.3)) == 7.3);
37         BOOST_CHECK(Deserialize(Serialize(Empty)) == Empty);
38         BOOST_CHECK(Deserialize(Serialize("hello")) == "hello");
39 }
40
41 BOOST_AUTO_TEST_CASE(array)
42 {
43         Array::Ptr array = new Array();
44         array->Add(7);
45         array->Add(7.3);
46         array->Add(Empty);
47         array->Add("hello");
48
49         Array::Ptr result = Deserialize(Serialize(array));
50
51         BOOST_CHECK(result->GetLength() == array->GetLength());
52
53         BOOST_CHECK(result->Get(0) == 7);
54         BOOST_CHECK(result->Get(1) == 7.3);
55         BOOST_CHECK(result->Get(2) == Empty);
56         BOOST_CHECK(result->Get(3) == "hello");
57 }
58
59 BOOST_AUTO_TEST_CASE(dictionary)
60 {
61         Dictionary::Ptr dict = new Dictionary();
62         dict->Set("k1", 7);
63         dict->Set("k2", 7.3);
64         dict->Set("k3", Empty);
65         dict->Set("k4", "hello");
66
67         Dictionary::Ptr result = Deserialize(Serialize(dict));
68
69         BOOST_CHECK(result->GetLength() == dict->GetLength());
70
71         BOOST_CHECK(result->Get("k1") == 7);
72         BOOST_CHECK(result->Get("k2") == 7.3);
73         BOOST_CHECK(result->Get("k3") == Empty);
74         BOOST_CHECK(result->Get("k4") == "hello");
75 }
76
77 BOOST_AUTO_TEST_CASE(object)
78 {
79         PerfdataValue::Ptr pdv = new PerfdataValue("size", 100, true, "bytes");
80
81         PerfdataValue::Ptr result = Deserialize(Serialize(pdv));
82
83         BOOST_CHECK(result->GetValue() == pdv->GetValue());
84 }
85
86 BOOST_AUTO_TEST_SUITE_END()