| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- /*
- * Copyright 2010-2025 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx/blob/master/LICENSE
- */
- #include "test.h"
- #include <bx/handlealloc.h>
- #include <bx/hash.h>
- #include <bx/rng.h>
- #include <set>
- TEST_CASE("HandleAllocT", "")
- {
- constexpr int32_t kMax = 64;
- bx::HandleAllocT<kMax> alloc;
- REQUIRE(sizeof(alloc) == sizeof(uint16_t) * kMax * 2 + sizeof(bx::HandleAlloc) );
- for (uint16_t ii = 0; ii < kMax; ++ii)
- {
- REQUIRE(!alloc.isValid(ii) );
- }
- bx::RngMwc random;
- std::set<uint16_t> handleSet;
- int32_t count = 0;
- for (int32_t ii = 0; ii < 200000; ++ii)
- {
- const bool add = random.gen() % 2;
- if (add && count < kMax)
- {
- count++;
- uint16_t handle = alloc.alloc();
- handleSet.insert(handle);
- }
- else if (count > 0)
- {
- count--;
- const int32_t idx = rand() % handleSet.size();
- auto it = handleSet.begin();
- for (int32_t it_idx = 0; it_idx < idx; ++it_idx)
- {
- it++;
- REQUIRE(alloc.isValid(*it) );
- }
- uint16_t handleToRemove = *it;
- alloc.free(handleToRemove);
- REQUIRE(!alloc.isValid(handleToRemove) );
- handleSet.erase(it);
- }
- // Check if it's still correct
- for (auto it = handleSet.begin(); it != handleSet.end(); ++it)
- {
- REQUIRE(alloc.isValid(*it) );
- }
- }
- // Finally delete all
- for (auto it = handleSet.begin(); it != handleSet.end(); ++it)
- {
- REQUIRE(alloc.isValid(*it) );
- alloc.free(*it);
- }
- handleSet.clear();
- for (uint16_t ii = 0; ii < kMax; ++ii)
- {
- REQUIRE(!alloc.isValid(ii) );
- }
- }
- TEST_CASE("HandleListT", "")
- {
- bx::HandleListT<32> list;
- list.pushBack(16);
- REQUIRE(list.getFront() == 16);
- REQUIRE(list.getBack() == 16);
- list.pushFront(7);
- REQUIRE(list.getFront() == 7);
- REQUIRE(list.getBack() == 16);
- uint16_t expected0[] = { 15, 31, 7, 16, 17, 11, 13 };
- list.pushBack(17);
- list.pushBack(11);
- list.pushBack(13);
- list.pushFront(31);
- list.pushFront(15);
- uint16_t count = 0;
- for (uint16_t it = list.getFront(); it != UINT16_MAX; it = list.getNext(it), ++count)
- {
- REQUIRE(it == expected0[count]);
- }
- REQUIRE(count == BX_COUNTOF(expected0) );
- list.remove(17);
- list.remove(31);
- list.remove(16);
- list.pushBack(16);
- uint16_t expected1[] = { 15, 7, 11, 13, 16 };
- count = 0;
- for (uint16_t it = list.getFront(); it != UINT16_MAX; it = list.getNext(it), ++count)
- {
- REQUIRE(it == expected1[count]);
- }
- REQUIRE(count == BX_COUNTOF(expected1) );
- list.popBack();
- list.popFront();
- list.popBack();
- list.popBack();
- REQUIRE(list.getFront() == 7);
- REQUIRE(list.getBack() == 7);
- list.popBack();
- REQUIRE(list.getFront() == UINT16_MAX);
- REQUIRE(list.getBack() == UINT16_MAX);
- }
- TEST_CASE("HandleAllocLruT", "")
- {
- bx::HandleAllocLruT<16> lru;
- uint16_t handle[4] =
- {
- lru.alloc(),
- lru.alloc(),
- lru.alloc(),
- lru.alloc(),
- };
- lru.touch(handle[1]);
- uint16_t expected0[] = { handle[1], handle[3], handle[2], handle[0] };
- uint16_t count = 0;
- for (uint16_t it = lru.getFront(); it != UINT16_MAX; it = lru.getNext(it), ++count)
- {
- REQUIRE(it == expected0[count]);
- }
- }
- TEST_CASE("HandleHashTable", "")
- {
- typedef bx::HandleHashMapT<512> HashMap;
- HashMap hm;
- REQUIRE(512 == hm.getMaxCapacity() );
- bx::StringView sv0("test0");
- bool ok = hm.insert(bx::hash<bx::HashMurmur2A>(sv0), 0);
- REQUIRE(ok);
- ok = hm.insert(bx::hash<bx::HashMurmur2A>(sv0), 0);
- REQUIRE(!ok);
- REQUIRE(1 == hm.getNumElements() );
- bx::StringView sv1("test1");
- ok = hm.insert(bx::hash<bx::HashMurmur2A>(sv1), 0);
- REQUIRE(ok);
- REQUIRE(2 == hm.getNumElements() );
- hm.removeByHandle(0);
- REQUIRE(0 == hm.getNumElements() );
- ok = hm.insert(bx::hash<bx::HashMurmur2A>(sv0), 0);
- REQUIRE(ok);
- hm.removeByKey(bx::hash<bx::HashMurmur2A>(sv0) );
- REQUIRE(0 == hm.getNumElements() );
- for (uint32_t ii = 0, num = hm.getMaxCapacity(); ii < num; ++ii)
- {
- ok = hm.insert(ii, uint16_t(ii) );
- REQUIRE(ok);
- }
- }
|