mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
27 lines
525 B
C++
27 lines
525 B
C++
|
#include <gtest/gtest.h>
|
||
|
#include <llarp/api/messages.hpp>
|
||
|
|
||
|
class APITest : public ::testing::Test
|
||
|
{
|
||
|
public:
|
||
|
llarp_crypto crypto;
|
||
|
std::string apiPassword = "password";
|
||
|
APITest()
|
||
|
{
|
||
|
llarp_crypto_libsodium_init(&crypto);
|
||
|
}
|
||
|
|
||
|
~APITest()
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
TEST_F(APITest, TestMessageWellFormed)
|
||
|
{
|
||
|
llarp::api::CreateSessionMessage msg;
|
||
|
msg.msgID = 0;
|
||
|
msg.sessionID = 12345;
|
||
|
msg.CalculateHash(&crypto, apiPassword);
|
||
|
llarp::Info("msghash=", msg.hash);
|
||
|
ASSERT_TRUE(msg.IsWellFormed(&crypto, apiPassword));
|
||
|
};
|