icinga2/test/base-dictionary.cpp

56 lines
1.3 KiB
C++
Raw Normal View History

2012-05-28 11:53:51 +02:00
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE base_dictionary
#include <boost/test/unit_test.hpp>
#include <i2-base.h>
using namespace icinga;
BOOST_AUTO_TEST_CASE(construct)
{
2012-07-10 09:44:11 +02:00
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
2012-05-28 11:53:51 +02:00
BOOST_REQUIRE(dictionary);
}
2012-05-29 06:25:01 +02:00
BOOST_AUTO_TEST_CASE(getproperty)
2012-05-28 11:53:51 +02:00
{
2012-07-10 09:44:11 +02:00
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
dictionary->Set("test1", 7);
dictionary->Set("test2", "hello world");
2012-05-28 11:53:51 +02:00
2012-09-14 11:41:15 +02:00
Value test1;
test1 = dictionary->Get("test1");
2012-05-28 11:53:51 +02:00
BOOST_REQUIRE(test1 == 7);
2012-09-14 11:41:15 +02:00
Value test2;
test2 = dictionary->Get("test2");
2012-05-28 11:53:51 +02:00
BOOST_REQUIRE(test2 == "hello world");
2012-05-29 06:25:01 +02:00
2012-09-14 11:41:15 +02:00
Value test3;
test3 = dictionary->Get("test3");
BOOST_REQUIRE(test3.IsEmpty());
2012-05-29 06:25:01 +02:00
}
BOOST_AUTO_TEST_CASE(getproperty_dict)
{
2012-07-10 09:44:11 +02:00
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
Dictionary::Ptr other = boost::make_shared<Dictionary>();
2012-05-29 06:25:01 +02:00
dictionary->Set("test1", other);
2012-05-29 06:25:01 +02:00
2012-09-14 11:41:15 +02:00
Dictionary::Ptr test1 = dictionary->Get("test1");
2012-05-29 06:25:01 +02:00
BOOST_REQUIRE(other == test1);
2012-09-14 11:41:15 +02:00
Dictionary::Ptr test2 = dictionary->Get("test2");
BOOST_REQUIRE(!test2);
2012-05-29 06:25:01 +02:00
}
BOOST_AUTO_TEST_CASE(unnamed)
{
2012-07-10 09:44:11 +02:00
Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
dictionary->Add("test1");
dictionary->Add("test2");
dictionary->Add("test3");
2012-05-29 06:25:01 +02:00
BOOST_REQUIRE(distance(dictionary->Begin(), dictionary->End()) == 3);
2012-05-28 11:53:51 +02:00
}