1
0
cuberite-2a/tests/ChunkData/Coordinates.cpp

144 lines
2.5 KiB
C++
Raw Normal View History

2014-05-10 12:03:36 +00:00
#include "TestGlobals.h"
2014-05-21 18:58:48 +00:00
#include "ChunkData.h"
2014-05-10 12:03:36 +00:00
int main(int argc, char** argv)
{
{
2014-05-21 18:58:48 +00:00
cChunkData buffer;
// Empty chunks
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);
// loaded but not written segments
testassert(buffer.GetBlock(1,0,0) == 0x0);
testassert(buffer.GetMeta(1,16,0) == 0x0);
// Notloaded segments
testassert(buffer.GetBlock(0,32,0) == 0x0);
testassert(buffer.GetMeta(0,48,0) == 0x0);
// Out of Range
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);
);
// Out of Range
CheckAsserts(
buffer.GetBlock(-1, 0, 0);
);
CheckAsserts(
buffer.GetBlock(0, -1, 0);
);
CheckAsserts(
buffer.GetBlock(0, 0, -1);
);
CheckAsserts(
buffer.GetBlock(256, 0, 0);
);
CheckAsserts(
buffer.GetBlock(0, 256, 0);
);
CheckAsserts(
buffer.GetBlock(0, 0, 256);
);
// Out of Range
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);
);
// Out of Range
CheckAsserts(
buffer.GetMeta(-1, 0, 0);
);
CheckAsserts(
buffer.GetMeta(0, -1, 0);
);
CheckAsserts(
buffer.GetMeta(0, 0, -1);
);
CheckAsserts(
buffer.GetMeta(256, 0, 0);
);
CheckAsserts(
buffer.GetMeta(0, 256, 0);
);
CheckAsserts(
buffer.GetMeta(0, 0, 256);
);
}
2014-05-10 14:30:48 +00:00
{
2014-05-21 18:58:48 +00:00
cChunkData buffer;
// Zero's
buffer.SetBlock(0,0,0, 0x0);
buffer.SetBlock(0,0,1, 0xAB);
testassert(buffer.GetBlock(0,0,0) == 0x0);
testassert(buffer.GetBlock(0,0,1) == 0xAB);
buffer.SetMeta(0,16,0, 0x0);
buffer.SetMeta(0,16,1, 0xC);
testassert(buffer.GetMeta(0,16,0) == 0x0);
testassert(buffer.GetMeta(0,16,1) == 0xC);
}
2014-05-10 14:30:48 +00:00
2014-05-17 12:59:31 +00:00
{
// Operator =
2014-05-21 18:58:48 +00:00
cChunkData buffer;
2014-05-17 12:59:31 +00:00
buffer.SetBlock(0,0,0,0x42);
2014-05-21 18:58:48 +00:00
cChunkData copy;
2014-05-17 14:19:35 +00:00
#if __cplusplus < 201103L
copy = buffer;
#else
2014-05-17 13:35:08 +00:00
copy = std::move(buffer);
2014-05-17 14:19:35 +00:00
#endif
2014-05-17 13:35:08 +00:00
testassert(copy.GetBlock(0,0,0) == 0x42);
2014-05-17 14:19:35 +00:00
#if __cplusplus < 201103L
copy = copy;
#else
2014-05-17 13:35:08 +00:00
copy = std::move(copy);
2014-05-17 14:19:35 +00:00
#endif
2014-05-17 12:59:31 +00:00
testassert(copy.GetBlock(0,0,0) == 0x42);
}
2014-05-10 12:03:36 +00:00
return 0;
}