/****************************************************************************** * Icinga 2 * * Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software Foundation * * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ******************************************************************************/ #include "icinga/perfdatavalue.hpp" #include "base/dictionary.hpp" #include "base/objectlock.hpp" #include "base/serializer.hpp" #include "base/array.hpp" #include "base/dictionary.hpp" #include #include #include using namespace icinga; BOOST_AUTO_TEST_SUITE(base_serialize) BOOST_AUTO_TEST_CASE(scalar) { BOOST_CHECK(Deserialize(Serialize(7)) == 7); BOOST_CHECK(Deserialize(Serialize(7.3)) == 7.3); BOOST_CHECK(Deserialize(Serialize(Empty)) == Empty); BOOST_CHECK(Deserialize(Serialize("hello")) == "hello"); } BOOST_AUTO_TEST_CASE(array) { Array::Ptr array = new Array(); array->Add(7); array->Add(7.3); array->Add(Empty); array->Add("hello"); Array::Ptr result = Deserialize(Serialize(array)); BOOST_CHECK(result->GetLength() == array->GetLength()); BOOST_CHECK(result->Get(0) == 7); BOOST_CHECK(result->Get(1) == 7.3); BOOST_CHECK(result->Get(2) == Empty); BOOST_CHECK(result->Get(3) == "hello"); } BOOST_AUTO_TEST_CASE(dictionary) { Dictionary::Ptr dict = new Dictionary(); dict->Set("k1", 7); dict->Set("k2", 7.3); dict->Set("k3", Empty); dict->Set("k4", "hello"); Dictionary::Ptr result = Deserialize(Serialize(dict)); BOOST_CHECK(result->GetLength() == dict->GetLength()); BOOST_CHECK(result->Get("k1") == 7); BOOST_CHECK(result->Get("k2") == 7.3); BOOST_CHECK(result->Get("k3") == Empty); BOOST_CHECK(result->Get("k4") == "hello"); } BOOST_AUTO_TEST_CASE(object) { PerfdataValue::Ptr pdv = new PerfdataValue("size", 100, true, "bytes"); PerfdataValue::Ptr result = Deserialize(Serialize(pdv)); BOOST_CHECK(result->GetValue() == pdv->GetValue()); } BOOST_AUTO_TEST_SUITE_END()