]> granicus.if.org Git - icinga2/blob - test/base-array.cpp
Cli: Add blacklist/whitelist commands for agent commands
[icinga2] / test / base-array.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2014 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.hpp"
21 #include "base/objectlock.hpp"
22 #include "base/json.hpp"
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(insert)
57 {
58         Array::Ptr array = make_shared<Array>();
59
60         array->Insert(0, 11);
61         array->Insert(1, 22);
62         BOOST_CHECK(array->GetLength() == 2);
63         BOOST_CHECK(array->Get(1) == 22);
64
65         array->Insert(0, 33);
66         BOOST_CHECK(array->GetLength() == 3);
67         BOOST_CHECK(array->Get(0) == 33);
68         BOOST_CHECK(array->Get(1) == 11);
69
70         array->Insert(1, 44);
71         BOOST_CHECK(array->GetLength() == 4);
72         BOOST_CHECK(array->Get(0) == 33);
73         BOOST_CHECK(array->Get(1) == 44);
74         BOOST_CHECK(array->Get(2) == 11);
75 }
76
77 BOOST_AUTO_TEST_CASE(remove)
78 {
79         Array::Ptr array = make_shared<Array>();
80         array->Add(7);
81         array->Add(2);
82         array->Add(5);
83
84         {
85                 ObjectLock olock(array);
86                 Array::Iterator it = array->Begin();
87                 array->Remove(it);
88         }
89
90         BOOST_CHECK(array->GetLength() == 2);
91         BOOST_CHECK(array->Get(0) == 2);
92 }
93
94 BOOST_AUTO_TEST_CASE(foreach)
95 {
96         Array::Ptr array = make_shared<Array>();
97         array->Add(7);
98         array->Add(2);
99         array->Add(5);
100
101         ObjectLock olock(array);
102
103         int n = 0;
104
105         BOOST_FOREACH(const Value& item, array) {
106                 BOOST_CHECK(n != 0 || item == 7);
107                 BOOST_CHECK(n != 1 || item == 2);
108                 BOOST_CHECK(n != 2 || item == 5);
109
110                 n++;
111         }
112 }
113
114 BOOST_AUTO_TEST_CASE(clone)
115 {
116         Array::Ptr array = make_shared<Array>();
117         array->Add(7);
118         array->Add(2);
119         array->Add(5);
120
121         Array::Ptr clone = array->ShallowClone();
122
123         BOOST_CHECK(clone->GetLength() == 3);
124         BOOST_CHECK(clone->Get(0) == 7);
125         BOOST_CHECK(clone->Get(1) == 2);
126         BOOST_CHECK(clone->Get(2) == 5);
127 }
128
129 BOOST_AUTO_TEST_CASE(json)
130 {
131         Array::Ptr array = make_shared<Array>();
132         array->Add(7);
133         array->Add(2);
134         array->Add(5);
135
136         String json = JsonEncode(array);
137         BOOST_CHECK(json.GetLength() > 0);
138
139         Array::Ptr deserialized = JsonDecode(json);
140         BOOST_CHECK(deserialized);
141         BOOST_CHECK(deserialized->GetLength() == 3);
142         BOOST_CHECK(deserialized->Get(0) == 7);
143         BOOST_CHECK(deserialized->Get(1) == 2);
144         BOOST_CHECK(deserialized->Get(2) == 5);
145 }
146
147 BOOST_AUTO_TEST_SUITE_END()