icinga2/test/base-dictionary.cpp

180 lines
5.0 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 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. *
******************************************************************************/
2013-03-18 11:15:46 +01:00
#include "base/dictionary.h"
2013-04-19 11:27:18 +02:00
#include "base/objectlock.h"
2012-05-28 11:53:51 +02:00
#include <boost/test/unit_test.hpp>
2013-04-19 11:27:18 +02:00
#include <boost/foreach.hpp>
#include <boost/tuple/tuple.hpp>
2012-05-28 11:53:51 +02:00
using namespace icinga;
BOOST_AUTO_TEST_SUITE(base_dictionary)
2012-05-28 11:53:51 +02:00
BOOST_AUTO_TEST_CASE(construct)
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
BOOST_CHECK(dictionary);
2012-05-28 11:53:51 +02:00
}
2013-04-19 11:27:18 +02:00
BOOST_AUTO_TEST_CASE(get1)
2012-05-28 11:53:51 +02:00
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
2012-05-28 11:53:51 +02:00
2013-04-18 16:40:09 +02:00
BOOST_CHECK(dictionary->GetLength() == 2);
2012-09-14 11:41:15 +02:00
Value test1;
test1 = dictionary->Get("test1");
BOOST_CHECK(test1 == 7);
2012-05-28 11:53:51 +02:00
2012-09-14 11:41:15 +02:00
Value test2;
test2 = dictionary->Get("test2");
BOOST_CHECK(test2 == "hello world");
2012-05-29 06:25:01 +02:00
2013-04-18 16:40:09 +02:00
String key3 = "test3";
2012-09-14 11:41:15 +02:00
Value test3;
2013-04-18 16:40:09 +02:00
test3 = dictionary->Get(key3);
BOOST_CHECK(test3.IsEmpty());
2012-05-29 06:25:01 +02:00
}
2013-04-19 11:27:18 +02:00
BOOST_AUTO_TEST_CASE(get2)
2012-05-29 06:25:01 +02:00
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
Dictionary::Ptr other = make_shared<Dictionary>();
2012-05-29 06:25:01 +02:00
dictionary->Set("test1", other);
2012-05-29 06:25:01 +02:00
2013-04-18 16:40:09 +02:00
BOOST_CHECK(dictionary->GetLength() == 1);
2012-09-14 11:41:15 +02:00
Dictionary::Ptr test1 = dictionary->Get("test1");
BOOST_CHECK(other == test1);
2012-05-29 06:25:01 +02:00
2012-09-14 11:41:15 +02:00
Dictionary::Ptr test2 = dictionary->Get("test2");
BOOST_CHECK(!test2);
2012-05-29 06:25:01 +02:00
}
2013-04-19 11:27:18 +02:00
BOOST_AUTO_TEST_CASE(foreach)
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
2013-04-19 11:27:18 +02:00
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
ObjectLock olock(dictionary);
bool seen_test1 = false, seen_test2 = false;
String key;
Value value;
BOOST_FOREACH(boost::tie(key, value), dictionary) {
BOOST_CHECK(key == "test1" || key == "test2");
if (key == "test1") {
BOOST_CHECK(!seen_test1);
seen_test1 = true;
BOOST_CHECK(value == 7);
continue;
} else if (key == "test2") {
BOOST_CHECK(!seen_test2);
seen_test2 = true;
BOOST_CHECK(value == "hello world");
}
}
BOOST_CHECK(seen_test1);
BOOST_CHECK(seen_test2);
}
BOOST_AUTO_TEST_CASE(remove)
2013-04-18 16:40:09 +02:00
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
2013-04-18 16:40:09 +02:00
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
BOOST_CHECK(dictionary->Contains("test1"));
BOOST_CHECK(dictionary->GetLength() == 2);
dictionary->Set("test1", Empty);
BOOST_CHECK(!dictionary->Contains("test1"));
BOOST_CHECK(dictionary->GetLength() == 1);
dictionary->Remove("test2");
BOOST_CHECK(!dictionary->Contains("test2"));
BOOST_CHECK(dictionary->GetLength() == 0);
2013-04-19 11:27:18 +02:00
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
{
ObjectLock olock(dictionary);
Dictionary::Iterator it = dictionary->Begin();
dictionary->Remove(it);
}
BOOST_CHECK(dictionary->GetLength() == 1);
}
BOOST_AUTO_TEST_CASE(clone)
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
2013-04-19 11:27:18 +02:00
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
Dictionary::Ptr clone = dictionary->ShallowClone();
BOOST_CHECK(dictionary != clone);
BOOST_CHECK(clone->GetLength() == 2);
BOOST_CHECK(clone->Get("test1") == 7);
BOOST_CHECK(clone->Get("test2") == "hello world");
clone->Set("test3", 5);
BOOST_CHECK(!dictionary->Contains("test3"));
BOOST_CHECK(dictionary->GetLength() == 2);
clone->Set("test2", "test");
BOOST_CHECK(dictionary->Get("test2") == "hello world");
}
BOOST_AUTO_TEST_CASE(serialize)
{
Dictionary::Ptr dictionary = make_shared<Dictionary>();
2013-04-19 11:27:18 +02:00
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
String json = Value(dictionary).Serialize();
BOOST_CHECK(json.GetLength() > 0);
Dictionary::Ptr deserialized = Value::Deserialize(json);
BOOST_CHECK(deserialized->GetLength() == 2);
BOOST_CHECK(deserialized->Get("test1") == 7);
BOOST_CHECK(deserialized->Get("test2") == "hello world");
2013-04-18 16:40:09 +02:00
}
BOOST_AUTO_TEST_SUITE_END()