#include "lib/self_test.h" #include "lib/allocators/headerless.h" class TestHeaderless: public CxxTest::TestSuite { public: void test_Basic() { HeaderlessAllocator a(8192); // can't Allocate unaligned sizes TS_ASSERT_EQUALS(a.Allocate(1), 0); // can't Allocate too small amounts TS_ASSERT_EQUALS(a.Allocate(16), 0); // can Allocate the entire pool char* p1 = (char*)a.Allocate(4096); char* p2 = (char*)a.Allocate(4096); TS_ASSERT_DIFFERS(p1, 0); TS_ASSERT_DIFFERS(p2, 0); // back-to-back (non-freelist) allocations should be contiguous TS_ASSERT_EQUALS(p1+4096, p2); // allocations are writable p1[0] = 11; p1[4095] = 12; } void test_Free() { // Deallocate allows immediate reuse of the freed pointer HeaderlessAllocator a(4096); void* p1 = a.Allocate(1024); a.Deallocate(p1, 1024); void* p2 = a.Allocate(1024); TS_ASSERT_EQUALS(p1, p2); } void test_Coalesce() { HeaderlessAllocator a(0x10000); // can Allocate non-power-of-two sizes void* p1 = a.Allocate(0x5670); void* p2 = a.Allocate(0x7890); void* p3 = a.Allocate(0x1230); TS_ASSERT_DIFFERS(p1, 0); TS_ASSERT_DIFFERS(p2, 0); TS_ASSERT_DIFFERS(p3, 0); // must be able to allocate the entire range after freeing the items a.Deallocate(p1, 0x5670); a.Deallocate(p2, 0x7890); a.Deallocate(p3, 0x1230); void* p4 = a.Allocate(0x10000); TS_ASSERT_DIFFERS(p4, 0); } void test_Reset() { // after Reset, must return the same pointer as a freshly constructed instance HeaderlessAllocator a(4096); void* p1 = a.Allocate(128); a.Reset(); void* p2 = a.Allocate(128); TS_ASSERT_EQUALS(p1, p2); } // will the allocator survive a series of random but valid Allocate/Deallocate? void test_Randomized() { const size_t poolSize = 1024*1024; HeaderlessAllocator a(poolSize); typedef std::map AllocMap; AllocMap allocs; srand(1); for(int i = 0; i < 1000; i++) { // allocate if(rand() >= RAND_MAX/2) { const size_t maxSize = (size_t)((rand() / (float)RAND_MAX) * poolSize); const size_t size = maxSize & ~0xFu; void* p = a.Allocate(size); if(!p) continue; TS_ASSERT(allocs.find(p) == allocs.end()); allocs[p] = size; } // free else { if(allocs.empty()) continue; // find random allocation to deallocate AllocMap::iterator it = allocs.begin(); const int numToSkip = rand() % allocs.size(); for(int skip = 0; skip < numToSkip; skip++) ++it; void* p = (*it).first; size_t size = (*it).second; allocs.erase(it); a.Deallocate(p, size); } } } };