2019-06-11 09:48:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Zender & Kurtz GbR.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Christian Pauly <krille@famedly.com>
|
|
|
|
* Marcel Radzio <mtrnord@famedly.com>
|
|
|
|
*
|
|
|
|
* This file is part of famedlysdk.
|
|
|
|
*
|
|
|
|
* famedlysdk is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* famedlysdk 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. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-06-21 12:38:07 +00:00
|
|
|
* along with famedlysdk. If not, see <http://www.gnu.org/licenses/>.
|
2019-06-11 09:48:31 +00:00
|
|
|
*/
|
|
|
|
|
2019-07-22 09:54:06 +00:00
|
|
|
import 'dart:convert';
|
|
|
|
|
2019-07-24 08:13:02 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
Update lib/src/client.dart, lib/src/user.dart, lib/src/timeline.dart, lib/src/room.dart, lib/src/presence.dart, lib/src/event.dart, lib/src/utils/profile.dart, lib/src/utils/receipt.dart, test/client_test.dart, test/event_test.dart, test/presence_test.dart, test/room_test.dart, test/timeline_test.dart, test/user_test.dart files
2020-01-04 17:56:17 +00:00
|
|
|
import 'package:famedlysdk/src/event.dart';
|
2019-10-04 09:44:32 +00:00
|
|
|
import 'package:test/test.dart';
|
2019-06-11 09:48:31 +00:00
|
|
|
|
Update lib/src/client.dart, lib/src/user.dart, lib/src/timeline.dart, lib/src/room.dart, lib/src/presence.dart, lib/src/event.dart, lib/src/utils/profile.dart, lib/src/utils/receipt.dart, test/client_test.dart, test/event_test.dart, test/presence_test.dart, test/room_test.dart, test/timeline_test.dart, test/user_test.dart files
2020-01-04 17:56:17 +00:00
|
|
|
import 'fake_matrix_api.dart';
|
2019-07-24 08:13:02 +00:00
|
|
|
|
2019-06-11 09:48:31 +00:00
|
|
|
void main() {
|
|
|
|
/// All Tests related to the Event
|
|
|
|
group("Event", () {
|
2019-07-22 09:54:06 +00:00
|
|
|
final int timestamp = DateTime.now().millisecondsSinceEpoch;
|
|
|
|
final String id = "!4fsdfjisjf:server.abc";
|
|
|
|
final String senderID = "@alice:server.abc";
|
|
|
|
final String type = "m.room.message";
|
|
|
|
final String msgtype = "m.text";
|
|
|
|
final String body = "Hello World";
|
|
|
|
final String formatted_body = "<b>Hello</b> World";
|
|
|
|
|
|
|
|
final String contentJson =
|
2020-02-11 11:06:54 +00:00
|
|
|
'{"msgtype":"$msgtype","body":"$body","formatted_body":"$formatted_body","m.relates_to":{"m.in_reply_to":{"event_id":"\$1234:example.com"}}}';
|
2019-06-11 09:48:31 +00:00
|
|
|
|
2019-07-22 09:54:06 +00:00
|
|
|
Map<String, dynamic> jsonObj = {
|
|
|
|
"event_id": id,
|
2019-08-07 10:27:02 +00:00
|
|
|
"sender": senderID,
|
2019-07-22 09:54:06 +00:00
|
|
|
"origin_server_ts": timestamp,
|
|
|
|
"type": type,
|
2019-12-12 12:19:18 +00:00
|
|
|
"room_id": "1234",
|
2019-08-07 10:27:02 +00:00
|
|
|
"status": 2,
|
|
|
|
"content": contentJson,
|
2019-07-22 09:54:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
test("Create from json", () async {
|
|
|
|
Event event = Event.fromJson(jsonObj, null);
|
2019-12-12 12:19:18 +00:00
|
|
|
jsonObj.remove("status");
|
|
|
|
jsonObj["content"] = json.decode(contentJson);
|
|
|
|
expect(event.toJson(), jsonObj);
|
|
|
|
jsonObj["content"] = contentJson;
|
2019-06-11 09:48:31 +00:00
|
|
|
|
2019-08-07 10:27:02 +00:00
|
|
|
expect(event.eventId, id);
|
|
|
|
expect(event.senderId, senderID);
|
2019-06-26 15:27:27 +00:00
|
|
|
expect(event.status, 2);
|
2019-06-11 09:48:31 +00:00
|
|
|
expect(event.text, body);
|
|
|
|
expect(event.formattedText, formatted_body);
|
2020-01-14 11:27:26 +00:00
|
|
|
expect(event.body, body);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.type, EventTypes.Message);
|
2020-02-11 11:06:54 +00:00
|
|
|
expect(event.isReply, true);
|
2019-08-08 09:57:40 +00:00
|
|
|
jsonObj["state_key"] = "";
|
2020-01-02 14:09:49 +00:00
|
|
|
Event state = Event.fromJson(jsonObj, null);
|
2019-08-08 09:57:40 +00:00
|
|
|
expect(state.eventId, id);
|
|
|
|
expect(state.stateKey, "");
|
2020-01-14 11:27:26 +00:00
|
|
|
expect(state.status, 2);
|
2019-06-11 09:48:31 +00:00
|
|
|
});
|
2019-07-22 09:54:06 +00:00
|
|
|
test("Test all EventTypes", () async {
|
|
|
|
Event event;
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.avatar";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomAvatar);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.name";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomName);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.topic";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomTopic);
|
|
|
|
|
2020-01-29 12:11:21 +00:00
|
|
|
jsonObj["type"] = "m.room.aliases";
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomAliases);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.canonical_alias";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomCanonicalAlias);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.create";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomCreate);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.join_rules";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomJoinRules);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.member";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomMember);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.power_levels";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomPowerLevels);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.guest_access";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.GuestAccess);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.history_visibility";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.HistoryVisibility);
|
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.message";
|
2019-08-07 10:27:02 +00:00
|
|
|
jsonObj["content"] = json.decode(jsonObj["content"]);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.notice";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Notice);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.emote";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Emote);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.image";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Image);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.video";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Video);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.audio";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Audio);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.file";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.File);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["content"]["msgtype"] = "m.location";
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Location);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
|
|
|
jsonObj["type"] = "m.room.message";
|
|
|
|
jsonObj["content"]["msgtype"] = "m.text";
|
|
|
|
jsonObj["content"]["m.relates_to"] = {};
|
|
|
|
jsonObj["content"]["m.relates_to"]["m.in_reply_to"] = {
|
|
|
|
"event_id": "1234",
|
|
|
|
};
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-01-04 09:31:27 +00:00
|
|
|
expect(event.messageType, MessageTypes.Reply);
|
2019-07-22 09:54:06 +00:00
|
|
|
});
|
2019-07-24 08:13:02 +00:00
|
|
|
|
2019-12-12 12:19:18 +00:00
|
|
|
test("redact", () async {
|
|
|
|
final Room room =
|
|
|
|
Room(id: "1234", client: Client("testclient", debug: true));
|
|
|
|
final Map<String, dynamic> redactionEventJson = {
|
|
|
|
"content": {"reason": "Spamming"},
|
|
|
|
"event_id": "143273582443PhrSn:example.org",
|
|
|
|
"origin_server_ts": 1432735824653,
|
|
|
|
"redacts": id,
|
|
|
|
"room_id": "1234",
|
|
|
|
"sender": "@example:example.org",
|
|
|
|
"type": "m.room.redaction",
|
|
|
|
"unsigned": {"age": 1234}
|
|
|
|
};
|
2020-01-02 14:09:49 +00:00
|
|
|
Event redactedBecause = Event.fromJson(redactionEventJson, room);
|
2019-12-12 12:19:18 +00:00
|
|
|
Event event = Event.fromJson(jsonObj, room);
|
|
|
|
event.setRedactionEvent(redactedBecause);
|
|
|
|
expect(event.redacted, true);
|
|
|
|
expect(event.redactedBecause.toJson(), redactedBecause.toJson());
|
|
|
|
expect(event.content.isEmpty, true);
|
|
|
|
redactionEventJson.remove("redacts");
|
|
|
|
expect(event.unsigned["redacted_because"], redactionEventJson);
|
|
|
|
});
|
|
|
|
|
2019-07-24 08:13:02 +00:00
|
|
|
test("remove", () async {
|
|
|
|
Event event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: "1234", client: Client("testclient", debug: true)));
|
2019-07-24 08:48:13 +00:00
|
|
|
final bool removed1 = await event.remove();
|
2019-07-24 08:13:02 +00:00
|
|
|
event.status = 0;
|
2019-07-24 08:48:13 +00:00
|
|
|
final bool removed2 = await event.remove();
|
|
|
|
expect(removed1, false);
|
|
|
|
expect(removed2, true);
|
2019-07-24 08:13:02 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test("sendAgain", () async {
|
|
|
|
Client matrix = Client("testclient", debug: true);
|
2020-01-02 14:09:49 +00:00
|
|
|
matrix.httpClient = FakeMatrixApi();
|
2019-07-24 08:13:02 +00:00
|
|
|
await matrix.checkServer("https://fakeServer.notExisting");
|
|
|
|
await matrix.login("test", "1234");
|
|
|
|
|
|
|
|
Event event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: "!1234:example.com", client: matrix));
|
|
|
|
final String resp1 = await event.sendAgain();
|
|
|
|
event.status = -1;
|
|
|
|
final String resp2 = await event.sendAgain(txid: "1234");
|
|
|
|
expect(resp1, null);
|
|
|
|
expect(resp2, "42");
|
|
|
|
});
|
2020-02-21 15:05:19 +00:00
|
|
|
|
|
|
|
test("requestKey", () async {
|
|
|
|
Client matrix = Client("testclient", debug: true);
|
|
|
|
matrix.httpClient = FakeMatrixApi();
|
|
|
|
await matrix.checkServer("https://fakeServer.notExisting");
|
|
|
|
await matrix.login("test", "1234");
|
|
|
|
|
|
|
|
Event event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: "!1234:example.com", client: matrix));
|
|
|
|
String exception;
|
|
|
|
try {
|
|
|
|
await event.requestKey();
|
|
|
|
} catch (e) {
|
|
|
|
exception = e;
|
|
|
|
}
|
|
|
|
expect(exception, "Session key not unknown");
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
"event_id": id,
|
|
|
|
"sender": senderID,
|
|
|
|
"origin_server_ts": timestamp,
|
|
|
|
"type": "m.room.encrypted",
|
|
|
|
"room_id": "1234",
|
|
|
|
"status": 2,
|
|
|
|
"content": json.encode({
|
|
|
|
"msgtype": "m.bad.encrypted",
|
|
|
|
"body": DecryptError.UNKNOWN_SESSION,
|
|
|
|
"algorithm": "m.megolm.v1.aes-sha2",
|
|
|
|
"ciphertext": "AwgAEnACgAkLmt6qF84IK++J7UDH2Za1YVchHyprqTqsg...",
|
|
|
|
"device_id": "RJYKSTBOIE",
|
|
|
|
"sender_key": "IlRMeOPX2e0MurIyfWEucYBRVOEEUMrOHqn/8mLqMjA",
|
|
|
|
"session_id": "X3lUlvLELLYxeTx4yOVu6UDpasGEVO0Jbu+QFnm0cKQ"
|
|
|
|
}),
|
|
|
|
}, Room(id: "!1234:example.com", client: matrix));
|
|
|
|
|
|
|
|
await event.requestKey();
|
|
|
|
});
|
2019-06-11 09:48:31 +00:00
|
|
|
});
|
|
|
|
}
|