]> granicus.if.org Git - icinga2/blobdiff - test/base-dictionary.cpp
Add --units, --rate and --rate-multiplier support for the snmpv3 check command
[icinga2] / test / base-dictionary.cpp
index a05142060fd238753560352e1328d4511378409d..f847741dc8d69fb6f9d83aad809c9cbf60ee19e1 100644 (file)
@@ -1,6 +1,6 @@
 /******************************************************************************
  * Icinga 2                                                                   *
- * Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/)        *
+ * Copyright (C) 2012-2016 Icinga Development Team (https://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                *
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
  ******************************************************************************/
 
-#include "base/dictionary.h"
+#include "base/dictionary.hpp"
+#include "base/objectlock.hpp"
+#include "base/json.hpp"
 #include <boost/test/unit_test.hpp>
-#include <boost/smart_ptr/make_shared.hpp>
+#include <boost/foreach.hpp>
+#include <boost/tuple/tuple.hpp>
 
 using namespace icinga;
 
@@ -27,13 +30,13 @@ BOOST_AUTO_TEST_SUITE(base_dictionary)
 
 BOOST_AUTO_TEST_CASE(construct)
 {
-       Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
+       Dictionary::Ptr dictionary = new Dictionary();
        BOOST_CHECK(dictionary);
 }
 
-BOOST_AUTO_TEST_CASE(getproperty)
+BOOST_AUTO_TEST_CASE(get1)
 {
-       Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
+       Dictionary::Ptr dictionary = new Dictionary();
        dictionary->Set("test1", 7);
        dictionary->Set("test2", "hello world");
 
@@ -53,10 +56,10 @@ BOOST_AUTO_TEST_CASE(getproperty)
        BOOST_CHECK(test3.IsEmpty());
 }
 
-BOOST_AUTO_TEST_CASE(getproperty_dict)
+BOOST_AUTO_TEST_CASE(get2)
 {
-       Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
-       Dictionary::Ptr other = boost::make_shared<Dictionary>();
+       Dictionary::Ptr dictionary = new Dictionary();
+       Dictionary::Ptr other = new Dictionary();
 
        dictionary->Set("test1", other);
 
@@ -69,9 +72,41 @@ BOOST_AUTO_TEST_CASE(getproperty_dict)
        BOOST_CHECK(!test2);
 }
 
-BOOST_AUTO_TEST_CASE(remove_dict)
+BOOST_AUTO_TEST_CASE(foreach)
 {
-       Dictionary::Ptr dictionary = boost::make_shared<Dictionary>();
+       Dictionary::Ptr dictionary = new Dictionary();
+       dictionary->Set("test1", 7);
+       dictionary->Set("test2", "hello world");
+
+       ObjectLock olock(dictionary);
+
+       bool seen_test1 = false, seen_test2 = false;
+
+       BOOST_FOREACH(const Dictionary::Pair& kv, dictionary) {
+               BOOST_CHECK(kv.first == "test1" || kv.first == "test2");
+
+               if (kv.first == "test1") {
+                       BOOST_CHECK(!seen_test1);
+                       seen_test1 = true;
+
+                       BOOST_CHECK(kv.second == 7);
+
+                       continue;
+               } else if (kv.first == "test2") {
+                       BOOST_CHECK(!seen_test2);
+                       seen_test2 = true;
+
+                       BOOST_CHECK(kv.second == "hello world");
+               }
+       }
+
+       BOOST_CHECK(seen_test1);
+       BOOST_CHECK(seen_test2);
+}
+
+BOOST_AUTO_TEST_CASE(remove)
+{
+       Dictionary::Ptr dictionary = new Dictionary();
 
        dictionary->Set("test1", 7);
        dictionary->Set("test2", "hello world");
@@ -81,6 +116,11 @@ BOOST_AUTO_TEST_CASE(remove_dict)
 
        dictionary->Set("test1", Empty);
 
+       BOOST_CHECK(dictionary->Contains("test1"));
+       BOOST_CHECK(dictionary->GetLength() == 2);
+
+       dictionary->Remove("test1");
+
        BOOST_CHECK(!dictionary->Contains("test1"));
        BOOST_CHECK(dictionary->GetLength() == 1);
 
@@ -88,6 +128,56 @@ BOOST_AUTO_TEST_CASE(remove_dict)
 
        BOOST_CHECK(!dictionary->Contains("test2"));
        BOOST_CHECK(dictionary->GetLength() == 0);
+
+       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 = new Dictionary();
+
+       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(json)
+{
+       Dictionary::Ptr dictionary = new Dictionary();
+
+       dictionary->Set("test1", 7);
+       dictionary->Set("test2", "hello world");
+
+       String json = JsonEncode(dictionary);
+       BOOST_CHECK(json.GetLength() > 0);
+       Dictionary::Ptr deserialized = JsonDecode(json);
+       BOOST_CHECK(deserialized->GetLength() == 2);
+       BOOST_CHECK(deserialized->Get("test1") == 7);
+       BOOST_CHECK(deserialized->Get("test2") == "hello world");
 }
 
 BOOST_AUTO_TEST_SUITE_END()