libcruft-util/test/alloc/linear.cpp

47 lines
1.3 KiB
C++
Raw Normal View History

2015-11-13 17:17:37 +11:00
#include "tap.hpp"
#include "alloc/linear.hpp"
2015-11-13 17:17:37 +11:00
///////////////////////////////////////////////////////////////////////////////
2015-11-13 17:17:37 +11:00
int
main (void)
{
cruft::TAP::logger tap;
2015-11-13 17:17:37 +11:00
constexpr size_t BUFFER_SIZE = 1024;
alignas (std::max_align_t) u08 memory[BUFFER_SIZE];
cruft::alloc::linear store (cruft::make_view (memory));
2015-11-13 17:17:37 +11:00
2017-08-31 13:48:33 +10:00
tap.expect_eq (store.begin (), std::begin (memory), "base pointers match");
2016-06-22 19:51:18 +10:00
tap.expect_eq (store.offset (std::begin (memory)), 0u, "base offset is 0");
2015-11-30 16:08:07 +11:00
tap.expect_eq (store.capacity (), BUFFER_SIZE, "bytes capacity matches");
2015-11-13 17:17:37 +11:00
tap.expect_throw<std::bad_alloc> (
[&] (void) { store.allocate (BUFFER_SIZE + 1, 1); },
2015-11-13 17:17:37 +11:00
"excessive allocation throws bad_alloc"
);
tap.expect_nothrow (
[&] (void) { store.allocate (BUFFER_SIZE); },
2015-11-13 17:17:37 +11:00
"maximum allocation succeeds"
);
2015-11-30 16:08:07 +11:00
tap.expect_eq (store.used (), BUFFER_SIZE, "bytes used matches");
tap.expect_eq (store.remain (), 0u, "bytes remain matches");
2015-11-13 17:17:37 +11:00
tap.expect_throw<std::bad_alloc> (
[&] (void) { store.allocate (1, 1); },
2015-11-13 17:17:37 +11:00
"minimum allocation fails after exhaustion"
);
store.reset ();
tap.expect_nothrow (
[&] (void) { store.allocate (1, 1); },
2015-11-13 17:17:37 +11:00
"minimum allocation succeeds after reset"
);
return tap.status ();
}