0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-22 07:31:11 +08:00
pugixml/tests/test_memory.cpp
arseny.kapoulkine 1fdd096c80 tests: Tests can work without exceptions now
git-svn-id: http://pugixml.googlecode.com/svn/trunk@194 99668b35-9821-0410-8761-19e4c4f06640
2009-10-29 08:11:22 +00:00

56 lines
1.1 KiB
C++

#include "common.hpp"
namespace
{
char buffer[8];
int allocate_count = 0;
int deallocate_count = 0;
void* allocate(size_t size)
{
CHECK(size == 8);
++allocate_count;
return buffer;
}
void deallocate(void* ptr)
{
CHECK(ptr == buffer);
++deallocate_count;
}
}
TEST(custom_memory_management)
{
// remember old functions
allocation_function old_allocate = get_memory_allocation_function();
deallocation_function old_deallocate = get_memory_deallocation_function();
// replace functions
set_memory_management_functions(allocate, deallocate);
{
// parse document
xml_document doc;
CHECK(doc.load("<node/>"));
CHECK(allocate_count == 1);
CHECK(deallocate_count == 0);
CHECK_STRING(buffer, "<node\0>");
// modify document
doc.child("node").set_name("foobars");
CHECK(allocate_count == 2);
CHECK(deallocate_count == 0);
CHECK_STRING(buffer, "foobars");
}
CHECK(allocate_count == 2);
CHECK(deallocate_count == 2);
CHECK_STRING(buffer, "foobars");
// restore old functions
set_memory_management_functions(old_allocate, old_deallocate);
}