297 lines
9.5 KiB
Dart
297 lines
9.5 KiB
Dart
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
import 'package:famedlysdk/src/Client.dart';
|
|
import 'package:famedlysdk/src/Event.dart';
|
|
import 'package:famedlysdk/src/Room.dart';
|
|
import 'package:famedlysdk/src/RoomState.dart';
|
|
import 'package:famedlysdk/src/Timeline.dart';
|
|
import 'package:famedlysdk/src/User.dart';
|
|
import 'package:famedlysdk/src/utils/ChatTime.dart';
|
|
import 'package:famedlysdk/src/utils/MatrixFile.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'FakeMatrixApi.dart';
|
|
|
|
void main() {
|
|
Client matrix;
|
|
Room room;
|
|
|
|
/// All Tests related to the Event
|
|
group("Room", () {
|
|
test('Login', () async {
|
|
matrix = Client("testclient", debug: true);
|
|
matrix.connection.httpClient = FakeMatrixApi();
|
|
|
|
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 {
|
|
final String id = "!localpart:server.abc";
|
|
final Membership membership = Membership.join;
|
|
final int notificationCount = 2;
|
|
final int highlightCount = 1;
|
|
final List<String> heroes = [
|
|
"@alice:matrix.org",
|
|
"@bob:example.com",
|
|
"@charley:example.org"
|
|
];
|
|
|
|
Map<String, dynamic> jsonObj = {
|
|
"room_id": id,
|
|
"membership": membership.toString().split('.').last,
|
|
"avatar_url": "",
|
|
"notification_count": notificationCount,
|
|
"highlight_count": highlightCount,
|
|
"prev_batch": "",
|
|
"joined_member_count": notificationCount,
|
|
"invited_member_count": notificationCount,
|
|
"heroes": heroes.join(","),
|
|
};
|
|
|
|
room = await Room.getRoomFromTableRow(jsonObj, matrix);
|
|
|
|
expect(room.id, id);
|
|
expect(room.membership, membership);
|
|
expect(room.notificationCount, notificationCount);
|
|
expect(room.highlightCount, highlightCount);
|
|
expect(room.mJoinedMemberCount, notificationCount);
|
|
expect(room.mInvitedMemberCount, notificationCount);
|
|
expect(room.mHeroes, heroes);
|
|
expect(room.displayname, "alice, bob, charley");
|
|
|
|
room.states["m.room.canonical_alias"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.canonical_alias",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "123",
|
|
content: {"alias": "#testalias:example.com"},
|
|
stateKey: "");
|
|
expect(room.displayname, "testalias");
|
|
expect(room.canonicalAlias, "#testalias:example.com");
|
|
|
|
room.states["m.room.name"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.name",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "123",
|
|
content: {"name": "testname"},
|
|
stateKey: "");
|
|
expect(room.displayname, "testname");
|
|
|
|
expect(room.topic, "");
|
|
room.states["m.room.topic"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.topic",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "123",
|
|
content: {"topic": "testtopic"},
|
|
stateKey: "");
|
|
expect(room.topic, "testtopic");
|
|
|
|
expect(room.avatar.mxc, "");
|
|
room.states["m.room.avatar"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.avatar",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "123",
|
|
content: {"url": "mxc://testurl"},
|
|
stateKey: "");
|
|
expect(room.avatar.mxc, "mxc://testurl");
|
|
|
|
expect(room.lastEvent, null);
|
|
room.states["m.room.message"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.message",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "12345",
|
|
time: ChatTime.now(),
|
|
content: {"msgtype": "m.text", "body": "test"},
|
|
stateKey: "");
|
|
expect(room.lastEvent.eventId, "12345");
|
|
expect(room.lastMessage, "test");
|
|
expect(room.timeCreated, room.lastEvent.time);
|
|
});
|
|
|
|
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);
|
|
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");
|
|
expect(event.eventId, "143273582443PhrSn:example.org");
|
|
});
|
|
|
|
test("setName", () async {
|
|
final dynamic resp = await room.setName("Testname");
|
|
expect(resp["event_id"], "42");
|
|
});
|
|
|
|
test("setDescription", () async {
|
|
final dynamic resp = await room.setDescription("Testname");
|
|
expect(resp["event_id"], "42");
|
|
});
|
|
|
|
test("kick", () async {
|
|
final dynamic resp = await room.kick("Testname");
|
|
expect(resp, {});
|
|
});
|
|
|
|
test("ban", () async {
|
|
final dynamic resp = await room.ban("Testname");
|
|
expect(resp, {});
|
|
});
|
|
|
|
test("unban", () async {
|
|
final dynamic resp = await room.unban("Testname");
|
|
expect(resp, {});
|
|
});
|
|
|
|
test("PowerLevels", () async {
|
|
room.states["m.room.power_levels"] = RoomState(
|
|
senderId: "@test:example.com",
|
|
typeKey: "m.room.power_levels",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "123",
|
|
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": {"@test:fakeServer.notExisting": 100},
|
|
"users_default": 10
|
|
},
|
|
stateKey: "");
|
|
expect(room.ownPowerLevel, 100);
|
|
expect(room.getPowerLevelByUserId(matrix.userID), room.ownPowerLevel);
|
|
expect(room.getPowerLevelByUserId("@nouser:example.com"), 10);
|
|
expect(room.powerLevels,
|
|
room.states["m.room.power_levels"].content["users"]);
|
|
final dynamic resp =
|
|
await room.setPower("@test:fakeServer.notExisting", 90);
|
|
expect(resp["event_id"], "42");
|
|
});
|
|
|
|
test("invite", () async {
|
|
final dynamic resp = await room.invite("Testname");
|
|
expect(resp, {});
|
|
});
|
|
|
|
test("getParticipants", () async {
|
|
room.states["@alice:test.abc"] = RoomState(
|
|
senderId: "@alice:test.abc",
|
|
typeKey: "m.room.member",
|
|
roomId: room.id,
|
|
room: room,
|
|
eventId: "12345",
|
|
time: ChatTime.now(),
|
|
content: {"displayname": "alice"},
|
|
stateKey: "@alice:test.abc");
|
|
final List<User> userList = room.getParticipants();
|
|
expect(userList.length, 1);
|
|
expect(userList[0].displayName, "alice");
|
|
});
|
|
|
|
test("addToDirectChat", () async {
|
|
final dynamic resp = await room.addToDirectChat("Testname");
|
|
expect(resp, {});
|
|
});
|
|
|
|
test("getTimeline", () async {
|
|
final Timeline timeline = await room.getTimeline();
|
|
expect(timeline.events, []);
|
|
});
|
|
|
|
test("getUserByMXID", () async {
|
|
final User user = await room.getUserByMXID("@getme:example.com");
|
|
expect(user.stateKey, "@getme:example.com");
|
|
expect(user.calcDisplayname(), "You got me");
|
|
});
|
|
|
|
test('setAvatar', () async {
|
|
final MatrixFile testFile =
|
|
MatrixFile(bytes: [], path: "/root/file.jpeg");
|
|
final dynamic resp = await room.setAvatar(testFile);
|
|
expect(resp, "YUwRidLecu:example.com");
|
|
});
|
|
|
|
test('sendEvent', () async {
|
|
final dynamic resp = await room.sendEvent(
|
|
{"msgtype": "m.text", "body": "hello world"},
|
|
txid: "testtxid");
|
|
expect(resp, "42");
|
|
});
|
|
|
|
test('sendEvent', () async {
|
|
final dynamic resp =
|
|
await room.sendTextEvent("Hello world", txid: "testtxid");
|
|
expect(resp, "42");
|
|
});
|
|
|
|
// Not working because there is no real file to test it...
|
|
/*test('sendImageEvent', () async {
|
|
final File testFile = File.fromUri(Uri.parse("fake/path/file.jpeg"));
|
|
final dynamic resp =
|
|
await room.sendImageEvent(testFile, txid: "testtxid");
|
|
expect(resp, "42");
|
|
});*/
|
|
|
|
test('sendFileEvent', () async {
|
|
final MatrixFile testFile =
|
|
MatrixFile(bytes: [], path: "/root/file.jpeg");
|
|
final dynamic resp =
|
|
await room.sendFileEvent(testFile, "m.file", txid: "testtxid");
|
|
expect(resp, "42");
|
|
});
|
|
});
|
|
}
|