Newer
Older
#include <chrono>
#include <thread>
#include <gtest/gtest.h>
#include "client.hpp"
#include "mtx/requests.hpp"
#include "mtx/responses.hpp"
using namespace mtx::client;
using namespace mtx::identifiers;
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
using namespace std;
using ErrType = std::experimental::optional<errors::ClientError>;
void
validate_login(const std::string &user, const mtx::responses::Login &res)
{
EXPECT_EQ(res.user_id.toString(), user);
EXPECT_EQ(res.home_server, "localhost");
ASSERT_TRUE(res.access_token.size() > 100);
ASSERT_TRUE(res.device_id.size() > 5);
}
TEST(ClientAPI, LoginSuccess)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login("alice", "secret", [](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
});
mtx_client->login("bob", "secret", [](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@bob:localhost", res);
});
mtx_client->login("carl", "secret", [](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@carl:localhost", res);
});
mtx_client->close();
}
TEST(ClientAPI, LoginWrongPassword)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login(
"alice", "wrong_password", [](const mtx::responses::Login &res, ErrType err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_FORBIDDEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
EXPECT_EQ(res.user_id.toString(), "");
EXPECT_EQ(res.device_id, "");
EXPECT_EQ(res.home_server, "");
EXPECT_EQ(res.access_token, "");
});
mtx_client->close();
}
TEST(ClientAPI, LoginWrongUsername)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login("john", "secret", [](const mtx::responses::Login &res, ErrType err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_FORBIDDEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
EXPECT_EQ(res.user_id.toString(), "");
EXPECT_EQ(res.device_id, "");
EXPECT_EQ(res.home_server, "");
EXPECT_EQ(res.access_token, "");
});
mtx_client->close();
}
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
TEST(ClientAPI, ChangeDisplayName)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login(
"alice", "secret", [mtx_client](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
// Change the display name to Arthur Dent and verify its success through the lack
// of an error
mtx_client->set_displayname("Arthur Dent",
[](ErrType err) { ASSERT_FALSE(err); });
});
mtx_client->close();
}
TEST(ClientAPI, EmptyDisplayName)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login(
"alice", "secret", [mtx_client](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
// Change the display name to an empty string and verify its success through the
// lack of an error
mtx_client->set_displayname("", [](ErrType err) { ASSERT_FALSE(err); });
});
mtx_client->close();
}
TEST(ClientAPI, CreateRoom)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login(
"alice", "secret", [mtx_client](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
});
// Waiting for the previous request to complete.
std::this_thread::sleep_for(std::chrono::seconds(3));
mtx::requests::CreateRoom req;
req.name = "Name";
req.topic = "Topic";
mtx_client->create_room(req, [](const mtx::responses::CreateRoom &res, ErrType err) {
ASSERT_FALSE(err);
ASSERT_TRUE(res.room_id.localpart().size() > 10);
EXPECT_EQ(res.room_id.hostname(), "localhost");
});
mtx_client->close();
}
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
TEST(ClientAPI, LogoutSuccess)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
std::string token;
// Login and prove that login was successful by creating a room
mtx_client->login(
"alice", "secret", [&token](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
token = res.access_token;
});
while (token.empty()) {
// Block while we are logging in
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
mtx_client->set_access_token(token);
mtx::requests::CreateRoom req;
req.name = "Test1";
req.topic = "Topic1";
mtx_client->create_room(req, [](const mtx::responses::CreateRoom &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
// Logout and prove that logout was successful and deleted the access_token_ for the client
mtx_client->logout([mtx_client, &token](const mtx::responses::Logout &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
token.clear();
});
while (token.size()) {
// Block while we are logging out
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
// Verify that sending requests with this mtx_client fails after logout
mtx::requests::CreateRoom failReq;
failReq.name = "42";
failReq.topic = "LifeUniverseEverything";
mtx_client->create_room(failReq, [](const mtx::responses::CreateRoom &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_MISSING_TOKEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
});
mtx_client->close();
}
TEST(ClientAPI, LogoutInvalidatesTokenOnServer)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
std::string token;
// Login and prove that login was successful by creating a room
mtx_client->login(
"alice", "secret", [&token](const mtx::responses::Login &res, ErrType err) {
ASSERT_FALSE(err);
validate_login("@alice:localhost", res);
token = res.access_token;
});
while (token.empty()) {
// Block while we are logging in
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
mtx_client->set_access_token(token);
mtx::requests::CreateRoom req;
req.name = "Test1";
req.topic = "Topic1";
mtx_client->create_room(req, [](const mtx::responses::CreateRoom &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
// Logout and prove that logout was successful by verifying the old access_token_ is no
// longer valid
mtx_client->logout([mtx_client, &token](const mtx::responses::Logout &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
mtx_client->set_access_token(token);
token.clear();
});
while (token.size()) {
// Block while we are logging out
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
// Verify that creating a room with the old access_token_ no longer succeeds after logout
mtx::requests::CreateRoom failReq;
failReq.name = "42";
failReq.topic = "LifeUniverseEverything";
mtx_client->create_room(failReq, [](const mtx::responses::CreateRoom &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_UNKNOWN_TOKEN");
EXPECT_EQ(err->status_code, boost::beast::http::status::forbidden);
});
mtx_client->close();
}
TEST(ClientAPI, CreateRoomInvites)
{
auto alice = std::make_shared<Client>("localhost");
auto bob = std::make_shared<Client>("localhost");
auto carl = std::make_shared<Client>("localhost");
alice->login("alice", "secret", [alice](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
bob->login("bob", "secret", [bob](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
carl->login("carl", "secret", [carl](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
ASSERT_FALSE(err);
});
// Waiting for the previous requests to complete.
std::this_thread::sleep_for(std::chrono::seconds(3));
mtx::requests::CreateRoom req;
req.name = "Name";
req.topic = "Topic";
req.invite = {"@bob:localhost", "@carl:localhost"};
alice->create_room(req, [bob, carl](const mtx::responses::CreateRoom &res, ErrType err) {
ASSERT_FALSE(err);
auto room_id = res.room_id;
bob->join_room(res.room_id,
[](const nlohmann::json &, ErrType err) { ASSERT_FALSE(err); });
carl->join_room(res.room_id,
[](const nlohmann::json &, ErrType err) { ASSERT_FALSE(err); });
});
alice->close();
bob->close();
carl->close();
}
TEST(ClientAPI, JoinRoom)
{
auto alice = std::make_shared<Client>("localhost");
auto bob = std::make_shared<Client>("localhost");
alice->login("alice", "secret", [alice](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
bob->login("bob", "secret", [bob](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
// Waiting for the previous requests to complete.
std::this_thread::sleep_for(std::chrono::seconds(3));
// Creating a random room alias.
// TODO: add a type for room aliases.
const auto alias = utils::random_token(20, false);
req.name = "Name";
req.topic = "Topic";
req.invite = {"@bob:localhost"};
req.room_alias_name = alias;
alice->create_room(req, [bob, alias](const mtx::responses::CreateRoom &res, ErrType err) {
ASSERT_FALSE(err);
auto room_id = res.room_id;
bob->join_room(res.room_id,
[](const nlohmann::json &, ErrType err) { ASSERT_FALSE(err); });
using namespace mtx::identifiers;
bob->join_room(parse<Room>("!random_room_id:localhost"),
[](const nlohmann::json &, ErrType err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode),
"M_UNRECOGNIZED");
});
// Join the room using an alias.
bob->join_room("#" + alias + ":localhost",
[](const nlohmann::json &, ErrType err) { ASSERT_FALSE(err); });
});
alice->close();
bob->close();
}
TEST(ClientAPI, LeaveRoom)
{
auto alice = std::make_shared<Client>("localhost");
auto bob = std::make_shared<Client>("localhost");
alice->login("alice", "secret", [alice](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
bob->login("bob", "secret", [bob](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
ASSERT_FALSE(err);
});
// Waiting for the previous requests to complete.
std::this_thread::sleep_for(std::chrono::seconds(3));
mtx::requests::CreateRoom req;
req.name = "Name";
req.topic = "Topic";
req.invite = {"@bob:localhost"};
alice->create_room(req, [bob](const mtx::responses::CreateRoom &res, ErrType err) {
ASSERT_FALSE(err);
auto room_id = res.room_id;
bob->join_room(res.room_id, [room_id, bob](const nlohmann::json &, ErrType err) {
ASSERT_FALSE(err);
bob->leave_room(
room_id, [](const nlohmann::json &, ErrType err) { ASSERT_FALSE(err); });
});
});
// Trying to leave a non-existent room should fail.
bob->leave_room(
parse<Room>("!random_room_id:localhost"), [](const nlohmann::json &, ErrType err) {
ASSERT_TRUE(err);
EXPECT_EQ(mtx::errors::to_string(err->matrix_error.errcode), "M_UNRECOGNIZED");
EXPECT_EQ(err->matrix_error.error, "Not a known room");
});
alice->close();
bob->close();
}
TEST(ClientAPI, Sync)
{
std::shared_ptr<Client> mtx_client = std::make_shared<Client>("localhost");
mtx_client->login(
"alice", "secret", [mtx_client](const mtx::responses::Login &res, ErrType err) {
boost::ignore_unused(res);
ASSERT_FALSE(err);
});
// Waiting for the previous request to complete.
std::this_thread::sleep_for(std::chrono::seconds(2));
mtx::requests::CreateRoom req;
req.name = "Name";
req.topic = "Topic";
mtx_client->create_room(
req, [](const mtx::responses::CreateRoom &, ErrType err) { ASSERT_FALSE(err); });
// Waiting for the previous request to complete.
std::this_thread::sleep_for(std::chrono::seconds(2));
mtx_client->sync("", "", false, 0, [](const mtx::responses::Sync &res, ErrType err) {
ASSERT_FALSE(err);
ASSERT_TRUE(res.rooms.join.size() > 0);
ASSERT_TRUE(res.next_batch.size() > 0);
});
mtx_client->close();
}