]> granicus.if.org Git - icinga2/blob - test/base-array.cpp
Merge branch 'feature/debian-packaging-4988' into next
[icinga2] / test / base-array.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2013 Icinga Development Team (http://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 "base/array.h"
21 #include "base/objectlock.h"
22 #include "base/serializer.h"
23 #include <boost/test/unit_test.hpp>
24 #include <boost/foreach.hpp>
25
26 using namespace icinga;
27
28 BOOST_AUTO_TEST_SUITE(base_array)
29
30 BOOST_AUTO_TEST_CASE(construct)
31 {
32         Array::Ptr array = make_shared<Array>();
33         BOOST_CHECK(array);
34         BOOST_CHECK(array->GetLength() == 0);
35 }
36
37 BOOST_AUTO_TEST_CASE(getset)
38 {
39         Array::Ptr array = make_shared<Array>();
40         array->Add(7);
41         array->Add(2);
42         array->Add(5);
43         BOOST_CHECK(array->GetLength() == 3);
44         BOOST_CHECK(array->Get(0) == 7);
45         BOOST_CHECK(array->Get(1) == 2);
46         BOOST_CHECK(array->Get(2) == 5);
47
48         array->Set(1, 9);
49         BOOST_CHECK(array->Get(1) == 9);
50
51         array->Remove(1);
52         BOOST_CHECK(array->GetLength() == 2);
53         BOOST_CHECK(array->Get(1) == 5);
54 }
55
56 BOOST_AUTO_TEST_CASE(remove)
57 {
58         Array::Ptr array = make_shared<Array>();
59         array->Add(7);
60         array->Add(2);
61         array->Add(5);
62
63         {
64                 ObjectLock olock(array);
65                 Array::Iterator it = array->Begin();
66                 array->Remove(it);
67         }
68
69         BOOST_CHECK(array->GetLength() == 2);
70         BOOST_CHECK(array->Get(0) == 2);
71 }
72
73 BOOST_AUTO_TEST_CASE(foreach)
74 {
75         Array::Ptr array = make_shared<Array>();
76         array->Add(7);
77         array->Add(2);
78         array->Add(5);
79
80         ObjectLock olock(array);
81
82         int n = 0;
83
84         BOOST_FOREACH(const Value& item, array) {
85                 BOOST_CHECK(n != 0 || item == 7);
86                 BOOST_CHECK(n != 1 || item == 2);
87                 BOOST_CHECK(n != 2 || item == 5);
88
89                 n++;
90         }
91 }
92
93 BOOST_AUTO_TEST_CASE(clone)
94 {
95         Array::Ptr array = make_shared<Array>();
96         array->Add(7);
97         array->Add(2);
98         array->Add(5);
99
100         Array::Ptr clone = array->ShallowClone();
101
102         BOOST_CHECK(clone->GetLength() == 3);
103         BOOST_CHECK(clone->Get(0) == 7);
104         BOOST_CHECK(clone->Get(1) == 2);
105         BOOST_CHECK(clone->Get(2) == 5);
106 }
107
108 BOOST_AUTO_TEST_CASE(json)
109 {
110         Array::Ptr array = make_shared<Array>();
111         array->Add(7);
112         array->Add(2);
113         array->Add(5);
114
115         String json = JsonSerialize(array);
116         BOOST_CHECK(json.GetLength() > 0);
117
118         Array::Ptr deserialized = JsonDeserialize(json);
119         BOOST_CHECK(deserialized);
120         BOOST_CHECK(deserialized->GetLength() == 3);
121         BOOST_CHECK(deserialized->Get(0) == 7);
122         BOOST_CHECK(deserialized->Get(1) == 2);
123         BOOST_CHECK(deserialized->Get(2) == 5);
124 }
125
126 BOOST_AUTO_TEST_SUITE_END()