icinga2/test/base-dictionary.cpp

95 lines
3.0 KiB
C++

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 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 <boost/test/unit_test.hpp>
#include <i2-base.h>
using namespace icinga;
BOOST_AUTO_TEST_SUITE(base_dictionary)
BOOST_AUTO_TEST_CASE(construct)
{
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
BOOST_CHECK(dictionary);
}
BOOST_AUTO_TEST_CASE(getproperty)
{
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
Value test1;
test1 = dictionary->Get("test1");
BOOST_CHECK(test1 == 7);
Value test2;
test2 = dictionary->Get("test2");
BOOST_CHECK(test2 == "hello world");
Value test3;
test3 = dictionary->Get("test3");
BOOST_CHECK(test3.IsEmpty());
}
BOOST_AUTO_TEST_CASE(getproperty_dict)
{
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
Dictionary::Ptr other = boost::make_shared<Dictionary>();
dictionary->Set("test1", other);
Dictionary::Ptr test1 = dictionary->Get("test1");
BOOST_CHECK(other == test1);
Dictionary::Ptr test2 = dictionary->Get("test2");
BOOST_CHECK(!test2);
}
BOOST_AUTO_TEST_CASE(unnamed)
{
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
dictionary->Add("test1");
dictionary->Add("test2");
dictionary->Add("test3");
BOOST_CHECK(distance(dictionary->Begin(), dictionary->End()) == 3);
}
BOOST_AUTO_TEST_CASE(unnamed_order)
{
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
for (int i = 0; i < 1000; i++)
dictionary->Add(i);
/* unnamed items are guaranteed to be in whatever order they were
* inserted in. */
Value value;
int i = 0;
BOOST_FOREACH(tie(tuples::ignore, value), dictionary) {
BOOST_CHECK(value == i);
i++;
}
}
BOOST_AUTO_TEST_SUITE_END()