lokinet/test/base32_unittest.cpp

26 lines
511 B
C++
Raw Normal View History

2018-07-06 16:08:30 +00:00
#include <gtest/gtest.h>
2018-12-12 01:02:36 +00:00
#include <encode.hpp>
2018-07-06 16:08:30 +00:00
#include <llarp/aligned.hpp>
#include <llarp/logger.hpp>
struct Base32Test : public ::testing::Test
{
Base32Test()
: crypto(llarp::Crypto::sodium{})
2018-07-06 16:08:30 +00:00
{
}
llarp::Crypto crypto;
2018-07-06 16:08:30 +00:00
};
TEST_F(Base32Test, Serialize)
{
llarp::AlignedBuffer< 32 > addr, otherAddr;
addr.Randomize();
char tmp[64] = {0};
std::string encoded = llarp::Base32Encode(addr, tmp);
ASSERT_TRUE(llarp::Base32Decode(tmp, otherAddr));
ASSERT_TRUE(otherAddr == addr);
};