1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/**
* (c) 2019 by Mega Limited, Wellsford, New Zealand
*
* This file is part of the MEGA SDK - Client Access Engine.
*
* Applications using the MEGA API must present a valid application key
* and comply with the the rules set forth in the Terms of Service.
*
* The MEGA SDK is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @copyright Simplified (2-clause) BSD License.
*
* You should have received a copy of the license along with this
* program.
*/
#include <gtest/gtest.h>
#include <mega/pendingcontactrequest.h>
namespace
{
void checkPcrs(const mega::PendingContactRequest& exp, const mega::PendingContactRequest& act)
{
ASSERT_EQ(exp.id, act.id);
ASSERT_EQ(exp.originatoremail, act.originatoremail);
ASSERT_EQ(exp.targetemail, act.targetemail);
ASSERT_EQ(exp.ts, act.ts);
ASSERT_EQ(exp.uts, act.uts);
ASSERT_EQ(exp.msg, act.msg);
ASSERT_EQ(exp.isoutgoing, act.isoutgoing);
}
}
TEST(PendingContactRequest, serialize_unserialize)
{
mega::PendingContactRequest pcr{1, "blah", "foo", 2, 3, "hello", true};
std::string d;
ASSERT_TRUE(pcr.serialize(&d));
auto newPcr = std::unique_ptr<mega::PendingContactRequest>{mega::PendingContactRequest::unserialize(&d)};
checkPcrs(pcr, *newPcr);
}
TEST(PendingContactRequest, unserialize_32bit)
{
mega::PendingContactRequest pcr{1, "blah", "foo", 2, 3, "hello", true};
// This is the result of serialization on 32bit Windows
const std::array<char, 40> rawData = {
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x62, 0x6c, 0x61,
0x68, 0x03, 0x66, 0x6f, 0x6f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x68, 0x65,
0x6c, 0x6c, 0x6f, 0x01
};
std::string d(rawData.data(), rawData.size());
auto newPcr = std::unique_ptr<mega::PendingContactRequest>{mega::PendingContactRequest::unserialize(&d)};
checkPcrs(pcr, *newPcr);
}
|