virtualx-engine/tests/core/templates/test_hash_set.h
Rémi Verschelde d95794ec8a
One Copyright Update to rule them all
As many open source projects have started doing it, we're removing the
current year from the copyright notice, so that we don't need to bump
it every year.

It seems like only the first year of publication is technically
relevant for copyright notices, and even that seems to be something
that many companies stopped listing altogether (in a version controlled
codebase, the commits are a much better source of date of publication
than a hardcoded copyright statement).

We also now list Godot Engine contributors first as we're collectively
the current maintainers of the project, and we clarify that the
"exclusive" copyright of the co-founders covers the timespan before
opensourcing (their further contributions are included as part of Godot
Engine contributors).

Also fixed "cf." Frenchism - it's meant as "refer to / see".
2023-01-05 13:25:55 +01:00

226 lines
5.7 KiB
C++

/**************************************************************************/
/* test_hash_set.h */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/**************************************************************************/
#ifndef TEST_HASH_SET_H
#define TEST_HASH_SET_H
#include "core/templates/hash_set.h"
#include "tests/test_macros.h"
namespace TestHashSet {
TEST_CASE("[HashSet] Insert element") {
HashSet<int> set;
HashSet<int>::Iterator e = set.insert(42);
CHECK(e);
CHECK(*e == 42);
CHECK(set.has(42));
CHECK(set.find(42));
set.reset();
}
TEST_CASE("[HashSet] Insert existing element") {
HashSet<int> set;
set.insert(42);
set.insert(42);
CHECK(set.has(42));
CHECK(set.size() == 1);
}
TEST_CASE("[HashSet] Insert, iterate and remove many elements") {
const int elem_max = 12343;
HashSet<int> set;
for (int i = 0; i < elem_max; i++) {
set.insert(i);
}
//insert order should have been kept
int idx = 0;
for (const int &K : set) {
CHECK(idx == K);
CHECK(set.has(idx));
idx++;
}
Vector<int> elems_still_valid;
for (int i = 0; i < elem_max; i++) {
if ((i % 5) == 0) {
set.erase(i);
} else {
elems_still_valid.push_back(i);
}
}
CHECK(elems_still_valid.size() == set.size());
for (int i = 0; i < elems_still_valid.size(); i++) {
CHECK(set.has(elems_still_valid[i]));
}
}
TEST_CASE("[HashSet] Insert, iterate and remove many strings") {
// This tests a key that uses allocation, to see if any leaks occur
uint64_t pre_mem = Memory::get_mem_usage();
const int elem_max = 4018;
HashSet<String> set;
for (int i = 0; i < elem_max; i++) {
set.insert(itos(i));
}
//insert order should have been kept
int idx = 0;
for (const String &K : set) {
CHECK(itos(idx) == K);
CHECK(set.has(itos(idx)));
idx++;
}
Vector<String> elems_still_valid;
for (int i = 0; i < elem_max; i++) {
if ((i % 5) == 0) {
set.erase(itos(i));
} else {
elems_still_valid.push_back(itos(i));
}
}
CHECK(elems_still_valid.size() == set.size());
for (int i = 0; i < elems_still_valid.size(); i++) {
CHECK(set.has(elems_still_valid[i]));
}
elems_still_valid.clear();
set.reset();
CHECK(Memory::get_mem_usage() == pre_mem);
}
TEST_CASE("[HashSet] Erase via element") {
HashSet<int> set;
HashSet<int>::Iterator e = set.insert(42);
set.remove(e);
CHECK(!set.has(42));
CHECK(!set.find(42));
}
TEST_CASE("[HashSet] Erase via key") {
HashSet<int> set;
set.insert(42);
set.insert(49);
set.erase(42);
CHECK(!set.has(42));
CHECK(!set.find(42));
}
TEST_CASE("[HashSet] Insert and erase half elements") {
HashSet<int> set;
set.insert(1);
set.insert(2);
set.insert(3);
set.insert(4);
set.erase(1);
set.erase(3);
CHECK(set.size() == 2);
CHECK(set.has(2));
CHECK(set.has(4));
}
TEST_CASE("[HashSet] Size") {
HashSet<int> set;
set.insert(42);
set.insert(123);
set.insert(123);
set.insert(0);
set.insert(123485);
CHECK(set.size() == 4);
}
TEST_CASE("[HashSet] Iteration") {
HashSet<int> set;
set.insert(42);
set.insert(123);
set.insert(0);
set.insert(123485);
Vector<int> expected;
expected.push_back(42);
expected.push_back(123);
expected.push_back(0);
expected.push_back(123485);
int idx = 0;
for (const int &E : set) {
CHECK(expected[idx] == E);
++idx;
}
}
TEST_CASE("[HashSet] Copy") {
HashSet<int> set;
set.insert(42);
set.insert(123);
set.insert(0);
set.insert(123485);
Vector<int> expected;
expected.push_back(42);
expected.push_back(123);
expected.push_back(0);
expected.push_back(123485);
HashSet<int> copy_assign = set;
int idx = 0;
for (const int &E : copy_assign) {
CHECK(expected[idx] == E);
++idx;
}
HashSet<int> copy_construct(set);
idx = 0;
for (const int &E : copy_construct) {
CHECK(expected[idx] == E);
++idx;
}
}
} // namespace TestHashSet
#endif // TEST_HASH_SET_H