]> granicus.if.org Git - icinga2/blob - test/icinga-perfdata.cpp
Update INSTALL file.
[icinga2] / test / icinga-perfdata.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 "icinga/pluginutility.cpp"
21 #include <boost/test/unit_test.hpp>
22
23 using namespace icinga;
24
25 BOOST_AUTO_TEST_SUITE(icinga_perfdata)
26
27 BOOST_AUTO_TEST_CASE(empty)
28 {
29         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("");
30         BOOST_CHECK(pd->GetLength() == 0);
31 }
32
33 BOOST_AUTO_TEST_CASE(simple)
34 {
35         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("test=123456");
36         BOOST_CHECK(pd->Get("test") == 123456);
37
38         String str = PluginUtility::FormatPerfdata(pd);
39         BOOST_CHECK(str == "test=123456");
40 }
41
42 BOOST_AUTO_TEST_CASE(quotes)
43 {
44         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("'hello world'=123456");
45         BOOST_CHECK(pd->Get("hello world") == 123456);
46 }
47
48 BOOST_AUTO_TEST_CASE(multiple)
49 {
50         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("testA=123456 testB=123456");
51         BOOST_CHECK(pd->Get("testA") == 123456);
52         BOOST_CHECK(pd->Get("testB") == 123456);
53
54         String str = PluginUtility::FormatPerfdata(pd);
55         BOOST_CHECK(str == "testA=123456 testB=123456");
56 }
57
58 BOOST_AUTO_TEST_CASE(uom)
59 {
60         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("test=123456B");
61
62         PerfdataValue::Ptr pv = pd->Get("test");
63         BOOST_CHECK(pv);
64
65         BOOST_CHECK(pv->GetValue() == 123456);
66         BOOST_CHECK(!pv->GetCounter());
67         BOOST_CHECK(pv->GetUnit() == "bytes");
68         BOOST_CHECK(pv->GetCrit() == Empty);
69         BOOST_CHECK(pv->GetWarn() == Empty);
70         BOOST_CHECK(pv->GetMin() == Empty);
71         BOOST_CHECK(pv->GetMax() == Empty);
72
73         String str = PluginUtility::FormatPerfdata(pd);
74         BOOST_CHECK(str == "test=123456B");
75
76         pd = PluginUtility::ParsePerfdata("test=1000ms;200;500");
77         BOOST_CHECK(pd);
78
79         pv = pd->Get("test");
80         BOOST_CHECK(pv);
81
82         BOOST_CHECK(pv->GetValue() == 1);
83         BOOST_CHECK(pv->GetUnit() == "seconds");
84         BOOST_CHECK(pv->GetWarn() == 0.2);
85         BOOST_CHECK(pv->GetCrit() == 0.5);
86
87         pd = PluginUtility::ParsePerfdata("test=1000ms");
88         BOOST_CHECK(pd);
89
90         pv = pd->Get("test");
91         BOOST_CHECK(pv);
92
93         BOOST_CHECK(pv->GetValue() == 1);
94         BOOST_CHECK(pv->GetUnit() == "seconds");
95         BOOST_CHECK(pv->GetCrit() == Empty);
96         BOOST_CHECK(pv->GetWarn() == Empty);
97         BOOST_CHECK(pv->GetMin() == Empty);
98         BOOST_CHECK(pv->GetMax() == Empty);
99
100         str = PluginUtility::FormatPerfdata(pd);
101         BOOST_CHECK(str == "test=1s");
102 }
103
104 BOOST_AUTO_TEST_CASE(warncritminmax)
105 {
106         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("test=123456B;1000;2000;3000;4000");
107
108         PerfdataValue::Ptr pv = pd->Get("test");
109         BOOST_CHECK(pv);
110
111         BOOST_CHECK(pv->GetValue() == 123456);
112         BOOST_CHECK(!pv->GetCounter());
113         BOOST_CHECK(pv->GetUnit() == "bytes");
114         BOOST_CHECK(pv->GetWarn() == 1000);
115         BOOST_CHECK(pv->GetCrit() == 2000);
116         BOOST_CHECK(pv->GetMin() == 3000);
117         BOOST_CHECK(pv->GetMax() == 4000);
118
119         String str = PluginUtility::FormatPerfdata(pd);
120         BOOST_CHECK(str == "test=123456B;1000;2000;3000;4000");
121 }
122
123 BOOST_AUTO_TEST_CASE(invalid)
124 {
125         BOOST_CHECK(PluginUtility::ParsePerfdata("test=1,23456") == "test=1,23456");
126         BOOST_CHECK(PluginUtility::ParsePerfdata("test=123456;10%;20%") == "test=123456;10%;20%");
127 }
128
129 BOOST_AUTO_TEST_CASE(multi)
130 {
131         Dictionary::Ptr pd = PluginUtility::ParsePerfdata("test::a=3 b=4");
132         BOOST_CHECK(pd->Get("test::a") == 3);
133         BOOST_CHECK(pd->Get("test::b") == 4);
134 }
135
136 BOOST_AUTO_TEST_SUITE_END()