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