mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-05-12 05:57:13 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
185 lines
3.1 KiB
C++
185 lines
3.1 KiB
C++
//
|
|
// HashSetTest.cpp
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "HashSetTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/HashSet.h"
|
|
#include <set>
|
|
|
|
|
|
using Poco::Hash;
|
|
using Poco::HashSet;
|
|
|
|
|
|
HashSetTest::HashSetTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
HashSetTest::~HashSetTest()
|
|
{
|
|
}
|
|
|
|
|
|
void HashSetTest::testInsert()
|
|
{
|
|
const int N = 1000;
|
|
|
|
HashSet<int, Hash<int> > hs;
|
|
|
|
assertTrue (hs.empty());
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
std::pair<HashSet<int, Hash<int> >::Iterator, bool> res = hs.insert(i);
|
|
assertTrue (*res.first == i);
|
|
assertTrue (res.second);
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it != hs.end());
|
|
assertTrue (*it == i);
|
|
assertTrue (hs.size() == i + 1);
|
|
}
|
|
|
|
assertTrue (!hs.empty());
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it != hs.end());
|
|
assertTrue (*it == i);
|
|
}
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
std::pair<HashSet<int, Hash<int> >::Iterator, bool> res = hs.insert(i);
|
|
assertTrue (*res.first == i);
|
|
assertTrue (!res.second);
|
|
}
|
|
}
|
|
|
|
|
|
void HashSetTest::testErase()
|
|
{
|
|
const int N = 1000;
|
|
|
|
HashSet<int, Hash<int> > hs;
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
hs.insert(i);
|
|
}
|
|
assertTrue (hs.size() == N);
|
|
|
|
for (int i = 0; i < N; i += 2)
|
|
{
|
|
hs.erase(i);
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it == hs.end());
|
|
}
|
|
assertTrue (hs.size() == N/2);
|
|
|
|
for (int i = 0; i < N; i += 2)
|
|
{
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it == hs.end());
|
|
}
|
|
|
|
for (int i = 1; i < N; i += 2)
|
|
{
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it != hs.end());
|
|
assertTrue (*it == i);
|
|
}
|
|
|
|
for (int i = 0; i < N; i += 2)
|
|
{
|
|
hs.insert(i);
|
|
}
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
HashSet<int, Hash<int> >::Iterator it = hs.find(i);
|
|
assertTrue (it != hs.end());
|
|
assertTrue (*it == i);
|
|
}
|
|
}
|
|
|
|
|
|
void HashSetTest::testIterator()
|
|
{
|
|
const int N = 1000;
|
|
|
|
HashSet<int, Hash<int> > hs;
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
hs.insert(i);
|
|
}
|
|
|
|
std::set<int> values;
|
|
HashSet<int, Hash<int> >::Iterator it = hs.begin();
|
|
while (it != hs.end())
|
|
{
|
|
assertTrue (values.find(*it) == values.end());
|
|
values.insert(*it);
|
|
++it;
|
|
}
|
|
|
|
assertTrue (values.size() == N);
|
|
}
|
|
|
|
|
|
void HashSetTest::testConstIterator()
|
|
{
|
|
const int N = 1000;
|
|
|
|
HashSet<int, Hash<int> > hs;
|
|
|
|
for (int i = 0; i < N; ++i)
|
|
{
|
|
hs.insert(i);
|
|
}
|
|
|
|
std::set<int> values;
|
|
HashSet<int, Hash<int> >::ConstIterator it = hs.begin();
|
|
while (it != hs.end())
|
|
{
|
|
assertTrue (values.find(*it) == values.end());
|
|
values.insert(*it);
|
|
++it;
|
|
}
|
|
|
|
assertTrue (values.size() == N);
|
|
}
|
|
|
|
|
|
void HashSetTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void HashSetTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* HashSetTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HashSetTest");
|
|
|
|
CppUnit_addTest(pSuite, HashSetTest, testInsert);
|
|
CppUnit_addTest(pSuite, HashSetTest, testErase);
|
|
CppUnit_addTest(pSuite, HashSetTest, testIterator);
|
|
CppUnit_addTest(pSuite, HashSetTest, testConstIterator);
|
|
|
|
return pSuite;
|
|
}
|