2019-06-11 09:48:31 +00:00
|
|
|
/*
|
2020-06-03 10:16:01 +00:00
|
|
|
* Ansible inventory script used at Famedly GmbH for managing many hosts
|
|
|
|
* Copyright (C) 2019, 2020 Famedly GmbH
|
2019-06-11 09:48:31 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2019-06-11 09:48:31 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* This program 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 Affero General Public License for more details.
|
2019-06-11 09:48:31 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://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';
|
2020-06-03 10:16:01 +00:00
|
|
|
import 'package:famedlysdk/matrix_api.dart';
|
2020-06-04 11:39:51 +00:00
|
|
|
import 'package:famedlysdk/encryption.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';
|
2020-06-03 10:16:01 +00:00
|
|
|
import 'fake_matrix_localizations.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
|
2020-03-30 09:08:38 +00:00
|
|
|
group('Event', () {
|
|
|
|
final timestamp = DateTime.now().millisecondsSinceEpoch;
|
|
|
|
final id = '!4fsdfjisjf:server.abc';
|
|
|
|
final senderID = '@alice:server.abc';
|
|
|
|
final type = 'm.room.message';
|
|
|
|
final msgtype = 'm.text';
|
|
|
|
final body = 'Hello World';
|
|
|
|
final formatted_body = '<b>Hello</b> World';
|
|
|
|
|
|
|
|
final 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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
var jsonObj = <String, dynamic>{
|
|
|
|
'event_id': id,
|
|
|
|
'sender': senderID,
|
|
|
|
'origin_server_ts': timestamp,
|
|
|
|
'type': type,
|
|
|
|
'room_id': '1234',
|
|
|
|
'status': 2,
|
|
|
|
'content': contentJson,
|
2019-07-22 09:54:06 +00:00
|
|
|
};
|
2020-08-06 06:55:35 +00:00
|
|
|
var client = Client('testclient', httpClient: FakeMatrixApi());
|
2020-06-03 10:16:01 +00:00
|
|
|
var event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: '!localpart:server.abc', client: client));
|
2019-07-22 09:54:06 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
test('Create from json', () async {
|
|
|
|
jsonObj.remove('status');
|
|
|
|
jsonObj['content'] = json.decode(contentJson);
|
2019-12-12 12:19:18 +00:00
|
|
|
expect(event.toJson(), jsonObj);
|
2020-03-30 09:08:38 +00:00
|
|
|
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-07-27 07:39:48 +00:00
|
|
|
expect(event.relationshipType, RelationshipTypes.Reply);
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['state_key'] = '';
|
|
|
|
var state = Event.fromJson(jsonObj, null);
|
2019-08-08 09:57:40 +00:00
|
|
|
expect(state.eventId, id);
|
2020-03-30 09:08:38 +00:00
|
|
|
expect(state.stateKey, '');
|
2020-01-14 11:27:26 +00:00
|
|
|
expect(state.status, 2);
|
2019-06-11 09:48:31 +00:00
|
|
|
});
|
2020-03-30 09:08:38 +00:00
|
|
|
test('Test all EventTypes', () async {
|
2019-07-22 09:54:06 +00:00
|
|
|
Event event;
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.avatar';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomAvatar);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.name';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomName);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.topic';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomTopic);
|
|
|
|
|
2020-03-30 09:08:38 +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);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.canonical_alias';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomCanonicalAlias);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.create';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomCreate);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.join_rules';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomJoinRules);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.member';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomMember);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.power_levels';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.RoomPowerLevels);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.guest_access';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.GuestAccess);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.history_visibility';
|
2019-07-22 09:54:06 +00:00
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.type, EventTypes.HistoryVisibility);
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['type'] = 'm.room.message';
|
|
|
|
jsonObj['content'] = json.decode(jsonObj['content']);
|
2019-07-22 09:54:06 +00:00
|
|
|
|
2020-06-03 10:16:01 +00:00
|
|
|
jsonObj['content'].remove('m.relates_to');
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.notice';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.emote';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.image';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.video';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.audio';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.file';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
jsonObj['content']['msgtype'] = 'm.location';
|
2019-07-22 09:54:06 +00:00
|
|
|
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
|
|
|
|
2020-03-30 09:08:38 +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',
|
2019-07-22 09:54:06 +00:00
|
|
|
};
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
2020-07-27 07:39:48 +00:00
|
|
|
expect(event.messageType, MessageTypes.Text);
|
|
|
|
expect(event.relationshipType, RelationshipTypes.Reply);
|
|
|
|
expect(event.relationshipEventId, '1234');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('relationship types', () async {
|
|
|
|
Event event;
|
|
|
|
|
|
|
|
jsonObj['content'] = <String, dynamic>{
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'text': 'beep',
|
|
|
|
};
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.relationshipType, null);
|
|
|
|
expect(event.relationshipEventId, null);
|
|
|
|
|
|
|
|
jsonObj['content']['m.relates_to'] = <String, dynamic>{
|
|
|
|
'rel_type': 'm.replace',
|
|
|
|
'event_id': 'abc',
|
|
|
|
};
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.relationshipType, RelationshipTypes.Edit);
|
|
|
|
expect(event.relationshipEventId, 'abc');
|
|
|
|
|
|
|
|
jsonObj['content']['m.relates_to']['rel_type'] = 'm.annotation';
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.relationshipType, RelationshipTypes.Reaction);
|
|
|
|
expect(event.relationshipEventId, 'abc');
|
|
|
|
|
|
|
|
jsonObj['content']['m.relates_to'] = {
|
|
|
|
'm.in_reply_to': {
|
|
|
|
'event_id': 'def',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
event = Event.fromJson(jsonObj, null);
|
|
|
|
expect(event.relationshipType, RelationshipTypes.Reply);
|
|
|
|
expect(event.relationshipEventId, 'def');
|
2019-07-22 09:54:06 +00:00
|
|
|
});
|
2019-07-24 08:13:02 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
test('redact', () async {
|
2020-06-03 10:16:01 +00:00
|
|
|
final redactJsonObj = Map<String, dynamic>.from(jsonObj);
|
|
|
|
final testTypes = [
|
|
|
|
EventTypes.RoomMember,
|
|
|
|
EventTypes.RoomCreate,
|
|
|
|
EventTypes.RoomJoinRules,
|
|
|
|
EventTypes.RoomPowerLevels,
|
|
|
|
EventTypes.RoomAliases,
|
|
|
|
EventTypes.HistoryVisibility,
|
|
|
|
];
|
|
|
|
for (final testType in testTypes) {
|
|
|
|
redactJsonObj['type'] = testType;
|
2020-08-06 06:55:35 +00:00
|
|
|
final room = Room(id: '1234', client: Client('testclient'));
|
2020-06-03 10:16:01 +00:00
|
|
|
final 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}
|
|
|
|
};
|
|
|
|
var redactedBecause = Event.fromJson(redactionEventJson, room);
|
|
|
|
var event = Event.fromJson(redactJsonObj, 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-12-12 12:19:18 +00:00
|
|
|
});
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
test('remove', () async {
|
|
|
|
var event = Event.fromJson(
|
2020-08-06 06:55:35 +00:00
|
|
|
jsonObj, Room(id: '1234', client: Client('testclient')));
|
2020-03-30 09:08:38 +00:00
|
|
|
final removed1 = await event.remove();
|
2019-07-24 08:13:02 +00:00
|
|
|
event.status = 0;
|
2020-03-30 09:08:38 +00:00
|
|
|
final removed2 = await event.remove();
|
2019-07-24 08:48:13 +00:00
|
|
|
expect(removed1, false);
|
|
|
|
expect(removed2, true);
|
2019-07-24 08:13:02 +00:00
|
|
|
});
|
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
test('sendAgain', () async {
|
2020-08-06 06:55:35 +00:00
|
|
|
var matrix = Client('testclient', httpClient: FakeMatrixApi());
|
2020-03-30 09:08:38 +00:00
|
|
|
await matrix.checkServer('https://fakeServer.notExisting');
|
2020-08-11 16:11:51 +00:00
|
|
|
await matrix.login(user: 'test', password: '1234');
|
2019-07-24 08:13:02 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
var event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: '!1234:example.com', client: matrix));
|
|
|
|
final resp1 = await event.sendAgain();
|
2019-07-24 08:13:02 +00:00
|
|
|
event.status = -1;
|
2020-03-30 09:08:38 +00:00
|
|
|
final resp2 = await event.sendAgain(txid: '1234');
|
2019-07-24 08:13:02 +00:00
|
|
|
expect(resp1, null);
|
2020-06-05 13:34:13 +00:00
|
|
|
expect(resp2.startsWith('\$event'), true);
|
2020-05-19 09:28:13 +00:00
|
|
|
|
|
|
|
await matrix.dispose(closeDatabase: true);
|
2019-07-24 08:13:02 +00:00
|
|
|
});
|
2020-02-21 15:05:19 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
test('requestKey', () async {
|
2020-08-06 06:55:35 +00:00
|
|
|
var matrix = Client('testclient', httpClient: FakeMatrixApi());
|
2020-03-30 09:08:38 +00:00
|
|
|
await matrix.checkServer('https://fakeServer.notExisting');
|
2020-08-11 16:11:51 +00:00
|
|
|
await matrix.login(user: 'test', password: '1234');
|
2020-02-21 15:05:19 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
var event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: '!1234:example.com', client: matrix));
|
2020-02-21 15:05:19 +00:00
|
|
|
String exception;
|
|
|
|
try {
|
|
|
|
await event.requestKey();
|
|
|
|
} catch (e) {
|
2020-06-10 08:44:22 +00:00
|
|
|
exception = e.toString();
|
2020-02-21 15:05:19 +00:00
|
|
|
}
|
2020-06-10 08:44:22 +00:00
|
|
|
expect(exception, 'Session key not requestable');
|
2020-02-21 15:05:19 +00:00
|
|
|
|
2020-06-03 10:16:01 +00:00
|
|
|
var event2 = Event.fromJson({
|
2020-03-30 09:08:38 +00:00
|
|
|
'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,
|
2020-06-10 08:44:22 +00:00
|
|
|
'can_request_session': true,
|
2020-03-30 09:08:38 +00:00
|
|
|
'algorithm': 'm.megolm.v1.aes-sha2',
|
|
|
|
'ciphertext': 'AwgAEnACgAkLmt6qF84IK++J7UDH2Za1YVchHyprqTqsg...',
|
|
|
|
'device_id': 'RJYKSTBOIE',
|
|
|
|
'sender_key': 'IlRMeOPX2e0MurIyfWEucYBRVOEEUMrOHqn/8mLqMjA',
|
|
|
|
'session_id': 'X3lUlvLELLYxeTx4yOVu6UDpasGEVO0Jbu+QFnm0cKQ'
|
2020-02-21 15:05:19 +00:00
|
|
|
}),
|
2020-03-30 09:08:38 +00:00
|
|
|
}, Room(id: '!1234:example.com', client: matrix));
|
2020-02-21 15:05:19 +00:00
|
|
|
|
2020-06-03 10:16:01 +00:00
|
|
|
await event2.requestKey();
|
2020-05-19 09:28:13 +00:00
|
|
|
|
|
|
|
await matrix.dispose(closeDatabase: true);
|
2020-02-21 15:05:19 +00:00
|
|
|
});
|
2020-06-03 10:16:01 +00:00
|
|
|
test('requestKey', () async {
|
|
|
|
jsonObj['state_key'] = '@alice:example.com';
|
|
|
|
var event = Event.fromJson(
|
|
|
|
jsonObj, Room(id: '!localpart:server.abc', client: client));
|
|
|
|
expect(event.stateKeyUser.id, '@alice:example.com');
|
|
|
|
});
|
|
|
|
test('canRedact', () async {
|
|
|
|
expect(event.canRedact, true);
|
|
|
|
});
|
|
|
|
test('getLocalizedBody', () async {
|
2020-08-06 06:55:35 +00:00
|
|
|
final matrix = Client('testclient', httpClient: FakeMatrixApi());
|
2020-06-03 10:16:01 +00:00
|
|
|
final room = Room(id: '!1234:example.com', client: matrix);
|
|
|
|
var event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'avatar_url': 'mxc://example.org/SEsfnsuifSDFSSEF',
|
|
|
|
'displayname': 'Alice Margatroid',
|
|
|
|
'membership': 'join'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'age': 1234,
|
|
|
|
'redacted_because': {
|
|
|
|
'content': {'reason': 'Spamming'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'redacts': '\$143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.redaction',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'Landing',
|
|
|
|
'info': {
|
|
|
|
'h': 200,
|
|
|
|
'mimetype': 'image/png',
|
|
|
|
'size': 73602,
|
|
|
|
'thumbnail_info': {
|
|
|
|
'h': 200,
|
|
|
|
'mimetype': 'image/png',
|
|
|
|
'size': 73602,
|
|
|
|
'w': 140
|
|
|
|
},
|
|
|
|
'thumbnail_url': 'mxc://matrix.org/sHhqkFCvSkFwtmvtETOtKnLP',
|
|
|
|
'w': 140
|
|
|
|
},
|
|
|
|
'url': 'mxc://matrix.org/sHhqkFCvSkFwtmvtETOtKnLP'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.sticker',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'reason': 'Spamming'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'redacts': '\$143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.redaction',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'aliases': ['#somewhere:example.org', '#another:example.org']
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': 'example.org',
|
|
|
|
'type': 'm.room.aliases',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'aliases': ['#somewhere:example.org', '#another:example.org']
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': 'example.org',
|
|
|
|
'type': 'm.room.aliases',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'alias': '#somewhere:localhost'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.canonical_alias',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'creator': '@example:example.org',
|
|
|
|
'm.federate': true,
|
|
|
|
'predecessor': {
|
|
|
|
'event_id': '\$something:example.org',
|
|
|
|
'room_id': '!oldroom:example.org'
|
|
|
|
},
|
|
|
|
'room_version': '1'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.create',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'This room has been replaced',
|
|
|
|
'replacement_room': '!newroom:example.org'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.tombstone',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'join_rule': 'public'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.join_rules',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'avatar_url': 'mxc://example.org/SEsfnsuifSDFSSEF',
|
|
|
|
'displayname': 'Alice Margatroid',
|
|
|
|
'membership': 'join'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'invite'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member'
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'leave'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'join'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'ban'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'join'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'join'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'invite'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'invite'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'join'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'leave'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'invite'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'membership': 'leave'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@alice:example.org',
|
|
|
|
'state_key': '@alice:example.org',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'unsigned': {
|
|
|
|
'prev_content': {'membership': 'invite'},
|
|
|
|
}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'ban': 50,
|
|
|
|
'events': {'m.room.name': 100, 'm.room.power_levels': 100},
|
|
|
|
'events_default': 0,
|
|
|
|
'invite': 50,
|
|
|
|
'kick': 50,
|
|
|
|
'notifications': {'room': 20},
|
|
|
|
'redact': 50,
|
|
|
|
'state_default': 50,
|
|
|
|
'users': {'@example:localhost': 100},
|
|
|
|
'users_default': 0
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.power_levels',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'name': 'The room name'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.name',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'topic': 'A room topic'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.topic',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'info': {'h': 398, 'mimetype': 'image/jpeg', 'size': 31037, 'w': 394},
|
|
|
|
'url': 'mxc://example.org/JWEIFJgwEIhweiWJE'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.avatar',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {'history_visibility': 'shared'},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.history_visibility',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'algorithm': 'm.megolm.v1.aes-sha2',
|
|
|
|
'rotation_period_ms': 604800000,
|
|
|
|
'rotation_period_msgs': 100
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'state_key': '',
|
|
|
|
'type': 'm.room.encryption',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()),
|
|
|
|
'Example activatedEndToEndEncryption. needPantalaimonWarning');
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'This is an example text message',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': '<b>This is an example text message</b>',
|
|
|
|
'msgtype': 'm.text'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()),
|
|
|
|
'This is an example text message');
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'thinks this is an example emote',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': 'thinks <b>this</b> is an example emote',
|
|
|
|
'msgtype': 'm.emote'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()),
|
|
|
|
'* thinks this is an example emote');
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'This is an example notice',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': 'This is an <strong>example</strong> notice',
|
|
|
|
'msgtype': 'm.notice'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()),
|
|
|
|
'This is an example notice');
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'filename.jpg',
|
|
|
|
'info': {'h': 398, 'mimetype': 'image/jpeg', 'size': 31037, 'w': 394},
|
|
|
|
'msgtype': 'm.image',
|
|
|
|
'url': 'mxc://example.org/JWEIFJgwEIhweiWJE'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'something-important.doc',
|
|
|
|
'filename': 'something-important.doc',
|
|
|
|
'info': {'mimetype': 'application/msword', 'size': 46144},
|
|
|
|
'msgtype': 'm.file',
|
|
|
|
'url': 'mxc://example.org/FHyPlCeYUSFFxlgbQYZmoEoe'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'Bee Gees - Stayin Alive',
|
|
|
|
'info': {
|
|
|
|
'duration': 2140786,
|
|
|
|
'mimetype': 'audio/mpeg',
|
|
|
|
'size': 1563685
|
|
|
|
},
|
|
|
|
'msgtype': 'm.audio',
|
|
|
|
'url': 'mxc://example.org/ffed755USFFxlgbQYZGtryd'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'Big Ben, London, UK',
|
|
|
|
'geo_uri': 'geo:51.5008,0.1247',
|
|
|
|
'info': {
|
|
|
|
'thumbnail_info': {
|
|
|
|
'h': 300,
|
|
|
|
'mimetype': 'image/jpeg',
|
|
|
|
'size': 46144,
|
|
|
|
'w': 300
|
|
|
|
},
|
|
|
|
'thumbnail_url': 'mxc://example.org/FHyPlCeYUSFFxlgbQYZmoEoe'
|
|
|
|
},
|
|
|
|
'msgtype': 'm.location'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
|
|
|
|
event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'Gangnam Style',
|
|
|
|
'info': {
|
|
|
|
'duration': 2140786,
|
|
|
|
'h': 320,
|
|
|
|
'mimetype': 'video/mp4',
|
|
|
|
'size': 1563685,
|
|
|
|
'thumbnail_info': {
|
|
|
|
'h': 300,
|
|
|
|
'mimetype': 'image/jpeg',
|
|
|
|
'size': 46144,
|
|
|
|
'w': 300
|
|
|
|
},
|
|
|
|
'thumbnail_url': 'mxc://example.org/FHyPlCeYUSFFxlgbQYZmoEoe',
|
|
|
|
'w': 480
|
|
|
|
},
|
|
|
|
'msgtype': 'm.video',
|
|
|
|
'url': 'mxc://example.org/a526eYUSFFxlgbQYZmo442'
|
|
|
|
},
|
|
|
|
'event_id': '\$143273582443PhrSn:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'room_id': '!jEsUZKDJdhlrceRyVU:example.org',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'unsigned': {'age': 1234}
|
|
|
|
}, room);
|
|
|
|
expect(event.getLocalizedBody(FakeMatrixLocalizations()), null);
|
|
|
|
});
|
2020-07-27 07:39:48 +00:00
|
|
|
|
|
|
|
test('aggregations', () {
|
|
|
|
var event = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'blah',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
},
|
|
|
|
'event_id': '\$source',
|
|
|
|
}, null);
|
|
|
|
var edit1 = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'blah',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'm.relates_to': {
|
|
|
|
'event_id': '\$source',
|
|
|
|
'rel_type': RelationshipTypes.Edit,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'event_id': '\$edit1',
|
|
|
|
}, null);
|
|
|
|
var edit2 = Event.fromJson({
|
|
|
|
'content': {
|
|
|
|
'body': 'blah',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'm.relates_to': {
|
|
|
|
'event_id': '\$source',
|
|
|
|
'rel_type': RelationshipTypes.Edit,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'event_id': '\$edit2',
|
|
|
|
}, null);
|
|
|
|
var room = Room(client: client);
|
|
|
|
var timeline = Timeline(events: <Event>[event, edit1, edit2], room: room);
|
|
|
|
expect(event.hasAggregatedEvents(timeline, RelationshipTypes.Edit), true);
|
|
|
|
expect(event.aggregatedEvents(timeline, RelationshipTypes.Edit),
|
|
|
|
{edit1, edit2});
|
|
|
|
expect(event.aggregatedEvents(timeline, RelationshipTypes.Reaction),
|
|
|
|
<Event>{});
|
|
|
|
expect(event.hasAggregatedEvents(timeline, RelationshipTypes.Reaction),
|
|
|
|
false);
|
|
|
|
|
|
|
|
timeline.removeAggregatedEvent(edit2);
|
|
|
|
expect(event.aggregatedEvents(timeline, RelationshipTypes.Edit), {edit1});
|
|
|
|
timeline.addAggregatedEvent(edit2);
|
|
|
|
expect(event.aggregatedEvents(timeline, RelationshipTypes.Edit),
|
|
|
|
{edit1, edit2});
|
|
|
|
|
|
|
|
timeline.removeAggregatedEvent(event);
|
|
|
|
expect(
|
|
|
|
event.aggregatedEvents(timeline, RelationshipTypes.Edit), <Event>{});
|
|
|
|
});
|
2020-08-11 08:12:26 +00:00
|
|
|
test('getDisplayEvent', () {
|
|
|
|
var event = Event.fromJson({
|
|
|
|
'type': EventTypes.Message,
|
|
|
|
'content': {
|
|
|
|
'body': 'blah',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
},
|
|
|
|
'event_id': '\$source',
|
|
|
|
'sender': '@alice:example.org',
|
|
|
|
}, null);
|
|
|
|
event.sortOrder = 0;
|
|
|
|
var edit1 = Event.fromJson({
|
|
|
|
'type': EventTypes.Message,
|
|
|
|
'content': {
|
|
|
|
'body': '* edit 1',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'm.new_content': {
|
|
|
|
'body': 'edit 1',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
},
|
|
|
|
'm.relates_to': {
|
|
|
|
'event_id': '\$source',
|
|
|
|
'rel_type': RelationshipTypes.Edit,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'event_id': '\$edit1',
|
|
|
|
'sender': '@alice:example.org',
|
|
|
|
}, null);
|
|
|
|
edit1.sortOrder = 1;
|
|
|
|
var edit2 = Event.fromJson({
|
|
|
|
'type': EventTypes.Message,
|
|
|
|
'content': {
|
|
|
|
'body': '* edit 2',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'm.new_content': {
|
|
|
|
'body': 'edit 2',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
},
|
|
|
|
'm.relates_to': {
|
|
|
|
'event_id': '\$source',
|
|
|
|
'rel_type': RelationshipTypes.Edit,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'event_id': '\$edit2',
|
|
|
|
'sender': '@alice:example.org',
|
|
|
|
}, null);
|
|
|
|
edit2.sortOrder = 2;
|
|
|
|
var edit3 = Event.fromJson({
|
|
|
|
'type': EventTypes.Message,
|
|
|
|
'content': {
|
|
|
|
'body': '* edit 3',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'm.new_content': {
|
|
|
|
'body': 'edit 3',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
},
|
|
|
|
'm.relates_to': {
|
|
|
|
'event_id': '\$source',
|
|
|
|
'rel_type': RelationshipTypes.Edit,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'event_id': '\$edit3',
|
|
|
|
'sender': '@bob:example.org',
|
|
|
|
}, null);
|
|
|
|
edit3.sortOrder = 3;
|
|
|
|
var room = Room(client: client);
|
|
|
|
// no edits
|
|
|
|
var displayEvent =
|
|
|
|
event.getDisplayEvent(Timeline(events: <Event>[event], room: room));
|
|
|
|
expect(displayEvent.body, 'blah');
|
|
|
|
// one edit
|
|
|
|
displayEvent = event
|
|
|
|
.getDisplayEvent(Timeline(events: <Event>[event, edit1], room: room));
|
|
|
|
expect(displayEvent.body, 'edit 1');
|
|
|
|
// two edits
|
|
|
|
displayEvent = event.getDisplayEvent(
|
|
|
|
Timeline(events: <Event>[event, edit1, edit2], room: room));
|
|
|
|
expect(displayEvent.body, 'edit 2');
|
|
|
|
// foreign edit
|
|
|
|
displayEvent = event
|
|
|
|
.getDisplayEvent(Timeline(events: <Event>[event, edit3], room: room));
|
|
|
|
expect(displayEvent.body, 'blah');
|
|
|
|
// mixed foreign and non-foreign
|
|
|
|
displayEvent = event.getDisplayEvent(
|
|
|
|
Timeline(events: <Event>[event, edit1, edit2, edit3], room: room));
|
|
|
|
expect(displayEvent.body, 'edit 2');
|
|
|
|
});
|
2019-06-11 09:48:31 +00:00
|
|
|
});
|
|
|
|
}
|