ddnet/src/test/bytes_be.cpp

29 lines
714 B
C++
Raw Normal View History

#include "test.h"
#include <gtest/gtest.h>
#include <base/system.h>
static const int INT_DATA[] = {0, 1, -1, 32, 64, 256, -512, 12345, -123456, 1234567, 12345678, 123456789, 2147483647, (-2147483647 - 1)};
static const unsigned UINT_DATA[] = {0u, 1u, 2u, 32u, 64u, 256u, 512u, 12345u, 123456u, 1234567u, 12345678u, 123456789u, 2147483647u, 2147483648u, 4294967295u};
TEST(BytePacking, RoundtripInt)
{
2022-07-10 19:09:58 +00:00
for(auto i : INT_DATA)
{
unsigned char aPacked[4];
2022-07-10 19:09:58 +00:00
int_to_bytes_be(aPacked, i);
EXPECT_EQ(bytes_be_to_int(aPacked), i);
}
}
TEST(BytePacking, RoundtripUnsigned)
{
2022-07-10 19:09:58 +00:00
for(auto u : UINT_DATA)
{
unsigned char aPacked[4];
2022-07-10 19:09:58 +00:00
uint_to_bytes_be(aPacked, u);
EXPECT_EQ(bytes_be_to_uint(aPacked), u);
}
}