forked from meganz/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextChat_test.cpp
More file actions
129 lines (113 loc) · 3.88 KB
/
TextChat_test.cpp
File metadata and controls
129 lines (113 loc) · 3.88 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
* (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/megaclient.h>
#include <mega/megaapp.h>
#include <mega/types.h>
#include "DefaultedFileSystemAccess.h"
#include "utils.h"
#ifdef ENABLE_CHAT
namespace
{
class MockFileSystemAccess : public mt::DefaultedFileSystemAccess
{
};
void checkTextChats(const mega::TextChat& exp, const mega::TextChat& act)
{
ASSERT_EQ(exp.id, act.id);
ASSERT_EQ(exp.priv, act.priv);
ASSERT_EQ(exp.shard, act.shard);
ASSERT_EQ(*exp.userpriv, *act.userpriv);
ASSERT_EQ(exp.group, act.group);
ASSERT_EQ(exp.title, act.title);
ASSERT_EQ(exp.ou, act.ou);
ASSERT_EQ(exp.ts, act.ts);
ASSERT_EQ(exp.attachedNodes, act.attachedNodes);
ASSERT_EQ(exp.isFlagSet(0), act.isFlagSet(0));
ASSERT_EQ(exp.publicchat, act.publicchat);
ASSERT_EQ(exp.unifiedKey, act.unifiedKey);
}
}
TEST(TextChat, serialize_unserialize)
{
mega::MegaApp app;
MockFileSystemAccess fsaccess;
auto client = mt::makeClient(app, fsaccess);
mega::TextChat tc;
tc.id = 1;
tc.priv = mega::PRIV_STANDARD;
tc.shard = 2;
tc.userpriv = new mega::userpriv_vector;
tc.userpriv->emplace_back(3, mega::PRIV_MODERATOR);
tc.userpriv->emplace_back(4, mega::PRIV_RO);
tc.group = true;
tc.title = "foo";
tc.ou = 5;
tc.ts = 6;
tc.attachedNodes[7].insert(8);
tc.attachedNodes[7].insert(9);
tc.attachedNodes[8].insert(10);
tc.setFlag(true, 0);
tc.publicchat = true;
tc.unifiedKey = "bar";
std::string d;
ASSERT_TRUE(tc.serialize(&d));
auto newTc = mega::TextChat::unserialize(client.get(), &d);
checkTextChats(tc, *newTc);
}
TEST(TextChat, unserialize_32bit)
{
mega::MegaApp app;
MockFileSystemAccess fsaccess;
auto client = mt::makeClient(app, fsaccess);
mega::TextChat tc;
tc.id = 1;
tc.priv = mega::PRIV_STANDARD;
tc.shard = 2;
tc.userpriv = new mega::userpriv_vector;
tc.userpriv->emplace_back(3, mega::PRIV_MODERATOR);
tc.userpriv->emplace_back(4, mega::PRIV_RO);
tc.group = true;
tc.title = "foo";
tc.ou = 5;
tc.ts = 6;
tc.attachedNodes[7].insert(8);
tc.attachedNodes[7].insert(9);
tc.attachedNodes[8].insert(10);
tc.setFlag(true, 0);
tc.publicchat = true;
tc.unifiedKey = "bar";
// This is the result of serialization on 32bit Windows
const std::array<char, 125> rawData = {
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x66, 0x6f, 0x6f,
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x02, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x03, 0x00, 0x62, 0x61, 0x72
};
std::string d(rawData.data(), rawData.size());
auto newTc = mega::TextChat::unserialize(client.get(), &d);
checkTextChats(tc, *newTc);
}
#endif