famedlysdk/test/user_test.dart

140 lines
4.8 KiB
Dart
Raw Normal View History

2019-06-11 09:53:32 +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:53:32 +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:53:32 +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:53:32 +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:53:32 +00:00
*/
2020-06-03 10:16:01 +00:00
import 'package:famedlysdk/famedlysdk.dart';
import 'package:famedlysdk/matrix_api.dart';
import 'package:famedlysdk/src/event.dart';
import 'package:famedlysdk/src/user.dart';
2019-10-04 09:44:32 +00:00
import 'package:test/test.dart';
2019-06-11 09:53:32 +00:00
2020-06-03 10:16:01 +00:00
import 'fake_matrix_api.dart';
2019-06-11 09:53:32 +00:00
void main() {
/// All Tests related to the Event
group('User', () {
2020-08-06 06:55:35 +00:00
var client = Client('testclient', httpClient: FakeMatrixApi());
2020-06-03 10:16:01 +00:00
final user1 = User(
'@alice:example.com',
membership: 'join',
displayName: 'Alice M',
avatarUrl: 'mxc://bla',
room: Room(id: '!localpart:server.abc', client: client),
);
test('create', () async {
expect(user1.powerLevel, 0);
expect(user1.stateKey, '@alice:example.com');
expect(user1.id, '@alice:example.com');
expect(user1.membership, Membership.join);
expect(user1.avatarUrl.toString(), 'mxc://bla');
expect(user1.displayName, 'Alice M');
});
test('Create from json', () async {
final id = '@alice:server.abc';
final membership = Membership.join;
final displayName = 'Alice';
final avatarUrl = '';
2019-06-11 09:53:32 +00:00
final jsonObj = {
'content': {
'membership': 'join',
'avatar_url': avatarUrl,
'displayname': displayName
2019-08-08 09:54:39 +00:00
},
'type': 'm.room.member',
'event_id': '143273582443PhrSn:example.org',
'room_id': '!636q39766251:example.com',
'sender': id,
'origin_server_ts': 1432735824653,
'unsigned': {'age': 1234},
'state_key': id
2019-06-11 09:53:32 +00:00
};
var user = Event.fromJson(jsonObj, null).asUser;
2019-06-11 09:53:32 +00:00
expect(user.id, id);
expect(user.membership, membership);
expect(user.displayName, displayName);
2020-04-24 07:24:06 +00:00
expect(user.avatarUrl.toString(), avatarUrl);
expect(user.calcDisplayname(), displayName);
2019-06-11 09:53:32 +00:00
});
2019-07-03 09:27:46 +00:00
test('calcDisplayname', () async {
final user1 = User('@alice:example.com');
final user2 = User('@SuperAlice:example.com');
2020-04-23 09:46:10 +00:00
final user3 = User('@alice_mep:example.com');
expect(user1.calcDisplayname(), 'Alice');
expect(user2.calcDisplayname(), 'SuperAlice');
2020-04-23 09:46:10 +00:00
expect(user3.calcDisplayname(), 'Alice Mep');
2020-06-03 10:16:01 +00:00
expect(user3.calcDisplayname(formatLocalpart: false), 'alice_mep');
expect(
user3.calcDisplayname(mxidLocalPartFallback: false), 'Unknown user');
2020-06-03 10:16:01 +00:00
});
test('kick', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
await user1.kick();
});
test('ban', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
await user1.ban();
});
test('unban', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
await user1.unban();
});
test('setPower', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
await user1.setPower(50);
});
test('startDirectChat', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-08-11 16:11:51 +00:00
await client.login(user: 'test', password: '1234');
2020-06-03 10:16:01 +00:00
await user1.startDirectChat();
});
test('getPresence', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
await client.handleSync(SyncUpdate.fromJson({
'presence': {
'events': [
{
'sender': '@alice:example.com',
'type': 'm.presence',
'content': {'presence': 'online'}
}
]
}
}));
expect(user1.presence.presence.presence, PresenceType.online);
});
test('canBan', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
expect(user1.canBan, false);
});
test('canKick', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
expect(user1.canKick, false);
});
test('canChangePowerLevel', () async {
2020-10-23 09:34:08 +00:00
await client.checkHomeserver('https://fakeserver.notexisting');
2020-06-03 10:16:01 +00:00
expect(user1.canChangePowerLevel, false);
2019-07-03 09:27:46 +00:00
});
2020-08-17 12:25:48 +00:00
test('dispose client', () async {
await client.dispose(closeDatabase: true);
2020-08-17 12:25:48 +00:00
});
2019-06-11 09:53:32 +00:00
});
}