famedlysdk/test/Room_test.dart

170 lines
5.9 KiB
Dart
Raw Normal View History

2019-06-11 10:21:45 +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
* along with famedlysdk. If not, see <http://www.gnu.org/licenses/>.
2019-06-11 10:21:45 +00:00
*/
import 'package:famedlysdk/src/Client.dart';
import 'package:famedlysdk/src/Event.dart';
import 'package:famedlysdk/src/Room.dart';
2019-06-18 10:06:55 +00:00
import 'package:famedlysdk/src/User.dart';
import 'package:flutter_test/flutter_test.dart';
2019-06-11 10:21:45 +00:00
import 'FakeMatrixApi.dart';
void main() {
2019-06-18 10:06:55 +00:00
Client matrix;
Room room;
2019-06-11 10:21:45 +00:00
/// All Tests related to the Event
group("Room", () {
2019-06-18 10:06:55 +00:00
test('Login', () async {
matrix = Client("testclient", debug: true);
2019-06-11 10:21:45 +00:00
matrix.connection.httpClient = FakeMatrixApi();
2019-06-18 10:06:55 +00:00
final bool checkResp =
await matrix.checkServer("https://fakeServer.notExisting");
final bool loginResp = await matrix.login("test", "1234");
expect(checkResp, true);
expect(loginResp, true);
});
test("Create from json", () async {
2019-06-11 10:25:47 +00:00
final String id = "!localpart:server.abc";
2019-06-11 10:21:45 +00:00
final String name = "My Room";
final Membership membership = Membership.join;
2019-06-11 10:21:45 +00:00
final String topic = "This is my own room";
final int unread = DateTime.now().millisecondsSinceEpoch;
final int notificationCount = 2;
final int highlightCount = 1;
final String fullyRead = "fjh82jdjifd:server.abc";
final String notificationSettings = "all";
final String guestAccess = "forbidden";
2019-07-23 09:09:13 +00:00
final String canonicalAlias = "#testroom:example.com";
2019-06-11 10:21:45 +00:00
final String historyVisibility = "invite";
final String joinRules = "invite";
2019-06-11 10:25:47 +00:00
final int now = DateTime.now().millisecondsSinceEpoch;
2019-06-12 06:40:43 +00:00
final String msgtype = "m.text";
final String body = "Hello World";
final String formatted_body = "<b>Hello</b> World";
final String contentJson =
'{"msgtype":"$msgtype","body":"$body","formatted_body":"$formatted_body"}';
2019-08-06 09:47:09 +00:00
final List<String> heroes = [
"@alice:matrix.org",
"@bob:example.com",
"@charley:example.org"
];
2019-06-11 10:21:45 +00:00
2019-08-06 09:47:09 +00:00
Map<String, dynamic> jsonObj = {
2019-06-11 10:21:45 +00:00
"id": id,
"membership": membership.toString().split('.').last,
2019-06-11 10:21:45 +00:00
"topic": name,
"description": topic,
"avatar_url": "",
"notification_count": notificationCount,
"highlight_count": highlightCount,
"unread": unread,
"fully_read": fullyRead,
"notification_settings": notificationSettings,
"direct_chat_matrix_id": "",
"draft": "",
"prev_batch": "",
"guest_access": guestAccess,
"history_visibility": historyVisibility,
"join_rules": joinRules,
2019-07-23 09:09:13 +00:00
"canonical_alias": canonicalAlias,
2019-06-11 10:21:45 +00:00
"power_events_default": 0,
"power_state_default": 0,
"power_redact": 0,
"power_invite": 0,
"power_ban": 0,
"power_kick": 0,
"power_user_default": 0,
"power_event_avatar": 0,
"power_event_history_visibility": 0,
"power_event_canonical_alias": 0,
"power_event_aliases": 0,
"power_event_name": 0,
"power_event_power_levels": 0,
2019-06-12 06:40:43 +00:00
"content_json": contentJson,
2019-08-06 09:47:09 +00:00
"joined_member_count": notificationCount,
"invited_member_count": notificationCount,
"heroes": heroes.join(","),
2019-06-11 10:21:45 +00:00
};
2019-06-11 10:25:47 +00:00
room = await Room.getRoomFromTableRow(jsonObj, matrix);
2019-06-11 10:21:45 +00:00
2019-06-12 06:40:43 +00:00
expect(room.id, id);
2019-06-12 10:30:22 +00:00
expect(room.membership, membership);
2019-06-12 06:40:43 +00:00
expect(room.name, name);
2019-08-06 09:47:09 +00:00
expect(room.displayname, name);
2019-06-12 06:40:43 +00:00
expect(room.topic, topic);
expect(room.avatar.mxc, "");
expect(room.notificationCount, notificationCount);
expect(room.highlightCount, highlightCount);
expect(room.unread.toTimeStamp(), unread);
expect(room.fullyRead, fullyRead);
expect(room.notificationSettings, notificationSettings);
expect(room.directChatMatrixID, "");
2019-07-23 09:09:13 +00:00
expect(room.canonicalAlias, canonicalAlias);
2019-06-12 06:40:43 +00:00
expect(room.prev_batch, "");
2019-06-12 08:04:54 +00:00
expect(room.lastMessage, body);
2019-06-11 10:25:47 +00:00
expect(room.timeCreated.toTimeStamp() >= now, true);
2019-06-11 10:21:45 +00:00
room.powerLevels.forEach((String key, int value) {
expect(value, 0);
});
2019-08-06 09:47:09 +00:00
expect(room.mJoinedMemberCount, notificationCount);
expect(room.mInvitedMemberCount, notificationCount);
expect(room.mHeroes, heroes);
jsonObj["topic"] = "";
room = await Room.getRoomFromTableRow(jsonObj, matrix);
expect(room.displayname, "testroom");
jsonObj["canonical_alias"] = "";
room = await Room.getRoomFromTableRow(jsonObj, matrix);
expect(room.displayname, "alice, bob, charley");
2019-06-11 10:21:45 +00:00
});
2019-06-18 10:06:55 +00:00
test("sendReadReceipt", () async {
final dynamic resp =
await room.sendReadReceipt("§1234:fakeServer.notExisting");
expect(resp, {});
});
test("requestParticipants", () async {
final List<User> participants = await room.requestParticipants();
expect(participants.length, 1);
User user = participants[0];
expect(user.id, "@alice:example.org");
expect(user.displayName, "Alice Margatroid");
expect(user.membership, Membership.join);
2019-06-18 10:06:55 +00:00
expect(user.avatarUrl.mxc, "mxc://example.org/SEsfnsuifSDFSSEF");
expect(user.room.id, "!localpart:server.abc");
});
test("getEventByID", () async {
final Event event = await room.getEventById("1234");
2019-08-08 08:31:39 +00:00
expect(event.eventId, "143273582443PhrSn:example.org");
});
2019-06-11 10:21:45 +00:00
});
}