summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-08-08 16:50:16 -0700
committerGitHub <noreply@github.com>2018-08-08 16:50:16 -0700
commit987df3df987768e2ce0c36d17469929f8e92fdec (patch)
tree6d85a85966084879e55b8ab04c330662a4cfe7f0 /test/unit
parentece17ee2c38fa5769ae3ab7fa3607c0e88c0021f (diff)
Proposal for adding map utility functions to CVC4. (#2232)
* Proposal for adding map utility functions to CVC4.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/Makefile.am1
-rw-r--r--test/unit/base/map_util_black.h216
2 files changed, 217 insertions, 0 deletions
diff --git a/test/unit/Makefile.am b/test/unit/Makefile.am
index d58ee411f..b3e0a3808 100644
--- a/test/unit/Makefile.am
+++ b/test/unit/Makefile.am
@@ -6,6 +6,7 @@ UNIT_TESTS = \
util/cardinality_public
if WHITE_AND_BLACK_TESTS
UNIT_TESTS += \
+ base/map_util_black \
theory/evaluator_white \
theory/logic_info_white \
theory/theory_arith_white \
diff --git a/test/unit/base/map_util_black.h b/test/unit/base/map_util_black.h
new file mode 100644
index 000000000..6d2d2bbc7
--- /dev/null
+++ b/test/unit/base/map_util_black.h
@@ -0,0 +1,216 @@
+/********************* */
+/*! \file map_util_black.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Tim King
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2018 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Black box testing of map utility functions.
+ **
+ ** Black box testing of map utility functions.
+ **/
+
+#include <cxxtest/TestSuite.h>
+#include <map>
+#include <set>
+#include <string>
+#include <unordered_map>
+#include <unordered_set>
+
+#include "base/map_util.h"
+#include "context/cdhashmap.h"
+#include "context/cdhashset.h"
+#include "context/cdinsert_hashmap.h"
+#include "context/context.h"
+
+using CVC4::ContainsKey;
+using CVC4::FindOrDie;
+using CVC4::FindOrNull;
+using CVC4::context::CDHashMap;
+using CVC4::context::CDInsertHashMap;
+using CVC4::context::Context;
+using std::string;
+
+class MapUtilBlack : public CxxTest::TestSuite
+{
+ public:
+ void setUp() {}
+ void tearDown() {}
+
+ // Returns a map containing {"key"->"value", "other"->"entry"}.
+ static const std::map<string, string>& DefaultMap()
+ {
+ static const std::map<string, string> static_stored_map{{"key", "value"},
+ {"other", "entry"}};
+ return static_stored_map;
+ }
+
+ void testMap()
+ {
+ std::map<string, string> map = DefaultMap();
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ if (string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ *found_value = "new value";
+ }
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "new value");
+ }
+
+ void testConstantMap()
+ {
+ const std::map<string, string> map = DefaultMap();
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ // Cannot do death tests for FindOrDie.
+ }
+
+ void testUnorderedMap()
+ {
+ std::unordered_map<string, string> map(DefaultMap().begin(),
+ DefaultMap().end());
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ if (string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ *found_value = "new value";
+ }
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "new value");
+ }
+
+ void testConstUnorderedMap()
+ {
+ const std::unordered_map<string, string> map(DefaultMap().begin(),
+ DefaultMap().end());
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ // Cannot do death tests for FindOrDie.
+ }
+
+ void testSet()
+ {
+ std::set<string> set{"entry", "other"};
+ TS_ASSERT(ContainsKey(set, "entry"));
+ TS_ASSERT(!ContainsKey(set, "non member"));
+
+ const std::set<string> const_set{"entry", "other"};
+ TS_ASSERT(ContainsKey(const_set, "entry"));
+ TS_ASSERT(!ContainsKey(const_set, "non member"));
+ }
+
+ void testUnorderedSet()
+ {
+ std::unordered_set<string> set{"entry", "other"};
+ TS_ASSERT(ContainsKey(set, "entry"));
+ TS_ASSERT(!ContainsKey(set, "non member"));
+
+ const std::unordered_set<string> const_set{"entry", "other"};
+ TS_ASSERT(ContainsKey(const_set, "entry"));
+ TS_ASSERT(!ContainsKey(const_set, "non member"));
+ }
+
+ // For each <key, value> pair in source, inserts mapping from key to value
+ // using insert into dest.
+ template <class M>
+ void InsertAll(const std::map<string, string>& source, M* dest)
+ {
+ for (const auto& key_value : source)
+ {
+ dest->insert(key_value.first, key_value.second);
+ }
+ }
+
+ void testCDHashMap()
+ {
+ Context context;
+ CDHashMap<string, string> map(&context);
+ InsertAll(DefaultMap(), &map);
+
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ }
+
+ void testConstCDHashMap()
+ {
+ Context context;
+ CDHashMap<string, string> store(&context);
+ InsertAll(DefaultMap(), &store);
+ const auto& map = store;
+
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ }
+
+ void testCDInsertHashMap()
+ {
+ Context context;
+ CDInsertHashMap<string, string> map(&context);
+ InsertAll(DefaultMap(), &map);
+
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ }
+
+ void testConstCDInsertHashMap()
+ {
+ Context context;
+ CDInsertHashMap<string, string> store(&context);
+ InsertAll(DefaultMap(), &store);
+ const auto& map = store;
+
+ TS_ASSERT(ContainsKey(map, "key"));
+ TS_ASSERT(!ContainsKey(map, "non key"));
+ if (const string* found_value = FindOrNull(map, "other"))
+ {
+ TS_ASSERT_EQUALS(*found_value, "entry");
+ }
+ TS_ASSERT(FindOrNull(map, "non key") == nullptr);
+ TS_ASSERT_EQUALS(FindOrDie(map, "other"), "entry");
+ }
+
+}; /* class MapUtilBlack */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback