2014-05-10 08:03:36 -04:00
|
|
|
|
2014-05-27 07:44:56 -04:00
|
|
|
#include "Globals.h"
|
2014-05-21 14:58:48 -04:00
|
|
|
#include "ChunkData.h"
|
2014-05-10 08:03:36 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2016-06-16 11:34:17 -04:00
|
|
|
LOGD("Test started");
|
|
|
|
|
2014-06-16 10:12:50 -04:00
|
|
|
class cMockAllocationPool
|
|
|
|
: public cAllocationPool<cChunkData::sChunkSection>
|
2015-05-24 09:16:05 -04:00
|
|
|
{
|
2014-06-16 10:12:50 -04:00
|
|
|
virtual cChunkData::sChunkSection * Allocate()
|
|
|
|
{
|
|
|
|
return new cChunkData::sChunkSection();
|
|
|
|
}
|
2016-03-24 12:18:14 -04:00
|
|
|
|
2014-06-16 10:12:50 -04:00
|
|
|
virtual void Free(cChunkData::sChunkSection * a_Ptr)
|
|
|
|
{
|
|
|
|
delete a_Ptr;
|
|
|
|
}
|
|
|
|
} Pool;
|
2014-05-11 10:52:02 -04:00
|
|
|
{
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkData buffer(Pool);
|
2014-05-11 10:52:02 -04:00
|
|
|
|
|
|
|
// Empty chunks
|
2014-05-24 08:33:40 -04:00
|
|
|
buffer.SetBlock(0, 0, 0, 0xAB);
|
|
|
|
testassert(buffer.GetBlock(0, 0, 0) == 0xAB);
|
|
|
|
buffer.SetMeta(0, 16, 0, 0xC);
|
|
|
|
testassert(buffer.GetMeta(0, 16, 0) == 0xC);
|
2014-05-11 10:52:02 -04:00
|
|
|
|
|
|
|
// loaded but not written segments
|
2014-05-24 08:33:40 -04:00
|
|
|
testassert(buffer.GetBlock(1, 0, 0) == 0x0);
|
|
|
|
testassert(buffer.GetMeta(1, 16, 0) == 0x0);
|
2014-05-11 10:52:02 -04:00
|
|
|
|
|
|
|
// Notloaded segments
|
2014-05-24 08:33:40 -04:00
|
|
|
testassert(buffer.GetBlock(0, 32, 0) == 0x0);
|
|
|
|
testassert(buffer.GetMeta(0, 48, 0) == 0x0);
|
2014-05-11 10:52:02 -04:00
|
|
|
|
2016-03-24 12:18:14 -04:00
|
|
|
// Out of range SetBlock
|
2014-05-11 10:52:02 -04:00
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(-1, 0, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(0, -1, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(0, 0, -1, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(256, 0, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(0, 256, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetBlock(0, 0, 256, 0);
|
|
|
|
);
|
2016-03-24 12:18:14 -04:00
|
|
|
// Out of range SetMeta
|
2014-05-11 10:52:02 -04:00
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(-1, 0, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(0, -1, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(0, 0, -1, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(256, 0, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(0, 256, 0, 0);
|
|
|
|
);
|
|
|
|
CheckAsserts(
|
|
|
|
buffer.SetMeta(0, 0, 256, 0);
|
|
|
|
);
|
|
|
|
|
2016-03-24 12:18:14 -04:00
|
|
|
// Reading out of range blocks should return air
|
|
|
|
testassert(buffer.GetBlock(-1, 0, 0) == 0);
|
|
|
|
testassert(buffer.GetBlock(0, -1, 0) == 0);
|
|
|
|
testassert(buffer.GetBlock(0, 0, -1) == 0);
|
|
|
|
testassert(buffer.GetBlock(256, 0, 0) == 0);
|
|
|
|
testassert(buffer.GetBlock(0, 256, 0) == 0);
|
|
|
|
testassert(buffer.GetBlock(0, 0, 256) == 0);
|
|
|
|
|
|
|
|
// Reading out of range metas should return 0
|
|
|
|
testassert(buffer.GetMeta(-1, 0, 0) == 0);
|
|
|
|
testassert(buffer.GetMeta(0, -1, 0) == 0);
|
|
|
|
testassert(buffer.GetMeta(0, 0, -1) == 0);
|
|
|
|
testassert(buffer.GetMeta(256, 0, 0) == 0);
|
|
|
|
testassert(buffer.GetMeta(0, 256, 0) == 0);
|
|
|
|
testassert(buffer.GetMeta(0, 0, 256) == 0);
|
2014-05-11 10:52:02 -04:00
|
|
|
}
|
2016-03-24 12:18:14 -04:00
|
|
|
|
2014-05-11 10:52:02 -04:00
|
|
|
{
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkData buffer(Pool);
|
2016-03-24 12:18:14 -04:00
|
|
|
|
2014-05-11 10:52:02 -04:00
|
|
|
// Zero's
|
2014-05-24 08:33:40 -04:00
|
|
|
buffer.SetBlock(0, 0, 0, 0x0);
|
2014-05-30 05:35:29 -04:00
|
|
|
buffer.SetBlock(0, 0, 1, 0xab);
|
2014-05-24 08:33:40 -04:00
|
|
|
testassert(buffer.GetBlock(0, 0, 0) == 0x0);
|
2014-05-30 05:35:29 -04:00
|
|
|
testassert(buffer.GetBlock(0, 0, 1) == 0xab);
|
2014-05-11 10:52:02 -04:00
|
|
|
|
2014-05-24 08:33:40 -04:00
|
|
|
buffer.SetMeta(0, 16, 0, 0x0);
|
2014-05-30 05:35:29 -04:00
|
|
|
buffer.SetMeta(0, 16, 1, 0xc);
|
2014-05-24 08:33:40 -04:00
|
|
|
testassert(buffer.GetMeta(0, 16, 0) == 0x0);
|
2014-05-30 05:35:29 -04:00
|
|
|
testassert(buffer.GetMeta(0, 16, 1) == 0xc);
|
2014-05-11 10:52:02 -04:00
|
|
|
}
|
2016-03-24 12:18:14 -04:00
|
|
|
|
|
|
|
|
2014-05-17 08:59:31 -04:00
|
|
|
{
|
|
|
|
// Operator =
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkData buffer(Pool);
|
2014-05-24 08:33:40 -04:00
|
|
|
buffer.SetBlock(0, 0, 0, 0x42);
|
2014-06-16 10:12:50 -04:00
|
|
|
cChunkData copy(Pool);
|
2014-05-17 09:35:08 -04:00
|
|
|
copy = std::move(buffer);
|
2014-05-24 08:33:40 -04:00
|
|
|
testassert(copy.GetBlock(0, 0, 0) == 0x42);
|
2014-05-17 08:59:31 -04:00
|
|
|
}
|
2016-03-24 12:18:14 -04:00
|
|
|
|
2014-05-10 08:03:36 -04:00
|
|
|
return 0;
|
|
|
|
}
|