mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
8a1ec935a0
* scripted-diff: Replace #include "" with #include <> (ryanofsky) -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * scripted-diff: Replace #include "" with #include <> (Dash Specific) -BEGIN VERIFY SCRIPT- for f in \ src/bls/*.cpp \ src/bls/*.h \ src/evo/*.cpp \ src/evo/*.h \ src/governance/*.cpp \ src/governance/*.h \ src/llmq/*.cpp \ src/llmq/*.h \ src/masternode/*.cpp \ src/masternode/*.h \ src/privatesend/*.cpp \ src/privatesend/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * build: Remove -I for everything but project root Remove -I from build system for everything but the project root, and built-in dependencies. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/Makefile.test.include * qt: refactor: Use absolute include paths in .ui files * qt: refactor: Changes to make include paths absolute This makes all include paths in the GUI absolute. Many changes are involved as every single source file in src/qt/ assumes to be able to use relative includes. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/qt/dash.cpp # src/qt/optionsmodel.cpp # src/qt/test/rpcnestedtests.cpp * test: refactor: Use absolute include paths for test data files * Recommend #include<> syntax in developer notes * refactor: Include obj/build.h instead of build.h * END BACKPORT #11651 Remove trailing whitespace causing travis failure * fix backport 11651 Signed-off-by: Pasta <pasta@dashboost.org> * More of 11651 * fix blockchain.cpp Signed-off-by: pasta <pasta@dashboost.org> * Add missing "qt/" in includes * Add missing "test/" in includes * Fix trailing whitespaces Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com> Co-authored-by: Russell Yanofsky <russ@yanofsky.org> Co-authored-by: MeshCollider <dobsonsa68@gmail.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
137 lines
3.5 KiB
C++
137 lines
3.5 KiB
C++
// Copyright (c) 2014-2019 The Dash Core developers
|
|
|
|
#include <cachemap.h>
|
|
|
|
#include <test/test_dash.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(cachemap_tests, BasicTestingSetup)
|
|
|
|
bool Compare(const CacheMap<int,int>& cmap1, const CacheMap<int,int>& cmap2)
|
|
{
|
|
if(cmap1.GetMaxSize() != cmap2.GetMaxSize()) {
|
|
return false;
|
|
}
|
|
|
|
if(cmap1.GetSize() != cmap2.GetSize()) {
|
|
return false;
|
|
}
|
|
|
|
const CacheMap<int,int>::list_t& items1 = cmap1.GetItemList();
|
|
for(CacheMap<int,int>::list_cit it = items1.begin(); it != items1.end(); ++it) {
|
|
if(!cmap2.HasKey(it->key)) {
|
|
return false;
|
|
}
|
|
int val = 0;
|
|
if(!cmap2.Get(it->key, val)) {
|
|
return false;
|
|
}
|
|
if(it->value != val) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
const CacheMap<int,int>::list_t& items2 = cmap2.GetItemList();
|
|
for(CacheMap<int,int>::list_cit it = items2.begin(); it != items2.end(); ++it) {
|
|
if(!cmap1.HasKey(it->key)) {
|
|
return false;
|
|
}
|
|
int val = 0;
|
|
if(!cmap1.Get(it->key, val)) {
|
|
return false;
|
|
}
|
|
if(it->value != val) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(cachemap_test)
|
|
{
|
|
// create a CacheMap limited to 10 items
|
|
CacheMap<int,int> cmapTest1(10);
|
|
|
|
// check that the max size is 10
|
|
BOOST_CHECK(cmapTest1.GetMaxSize() == 10);
|
|
|
|
// check that the size is 0
|
|
BOOST_CHECK(cmapTest1.GetSize() == 0);
|
|
|
|
// insert (-1, -1)
|
|
cmapTest1.Insert(-1, -1);
|
|
|
|
// make sure that the size is updated
|
|
BOOST_CHECK(cmapTest1.GetSize() == 1);
|
|
|
|
// make sure the map contains the key
|
|
BOOST_CHECK(cmapTest1.HasKey(-1) == true);
|
|
|
|
// make sure that insert fails to update already existing key
|
|
BOOST_CHECK(cmapTest1.Insert(-1, -2) == false);
|
|
int nValRet = 0;
|
|
BOOST_CHECK(cmapTest1.Get(-1, nValRet) == true);
|
|
BOOST_CHECK(nValRet == -1);
|
|
|
|
// make sure that the size is still the same
|
|
BOOST_CHECK(cmapTest1.GetSize() == 1);
|
|
|
|
// add 10 items
|
|
for(int i = 0; i < 10; ++i) {
|
|
cmapTest1.Insert(i, i);
|
|
}
|
|
|
|
// check that the size is 10
|
|
BOOST_CHECK(cmapTest1.GetSize() == 10);
|
|
|
|
// check that the map contains the expected items
|
|
for(int i = 0; i < 10; ++i) {
|
|
int nVal = 0;
|
|
BOOST_CHECK(cmapTest1.Get(i, nVal) == true);
|
|
BOOST_CHECK(nVal == i);
|
|
}
|
|
|
|
// check that the map no longer contains the first item
|
|
BOOST_CHECK(cmapTest1.HasKey(-1) == false);
|
|
|
|
// erase an item
|
|
cmapTest1.Erase(5);
|
|
|
|
// check the size
|
|
BOOST_CHECK(cmapTest1.GetSize() == 9);
|
|
|
|
// check that the map no longer contains the item
|
|
BOOST_CHECK(cmapTest1.HasKey(5) == false);
|
|
|
|
// check that the map contains the expected items
|
|
int expected[] = { 0, 1, 2, 3, 4, 6, 7, 8, 9 };
|
|
for(size_t i = 0; i < 9; ++i) {
|
|
int nVal = 0;
|
|
int eVal = expected[i];
|
|
BOOST_CHECK(cmapTest1.Get(eVal, nVal) == true);
|
|
BOOST_CHECK(nVal == eVal);
|
|
}
|
|
|
|
// test serialization
|
|
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
|
|
ss << cmapTest1;
|
|
|
|
CacheMap<int,int> mapTest2;
|
|
ss >> mapTest2;
|
|
|
|
BOOST_CHECK(Compare(cmapTest1, mapTest2));
|
|
|
|
// test copy constructor
|
|
CacheMap<int,int> mapTest3(cmapTest1);
|
|
BOOST_CHECK(Compare(cmapTest1, mapTest3));
|
|
|
|
// test assignment operator
|
|
CacheMap<int,int> mapTest4;
|
|
mapTest4 = cmapTest1;
|
|
BOOST_CHECK(Compare(cmapTest1, mapTest4));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|