mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
41 lines
1.2 KiB
Dart
41 lines
1.2 KiB
Dart
// ignore_for_file: depend_on_referenced_packages
|
|
|
|
import 'package:matrix/encryption/utils/key_verification.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:matrix_api_lite/fake_matrix_api.dart';
|
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions/flutter_hive_collections_database.dart';
|
|
|
|
Future<Client> prepareTestClient({
|
|
bool loggedIn = false,
|
|
Uri? homeserver,
|
|
String id = 'FluffyChat Widget Test',
|
|
}) async {
|
|
homeserver ??= Uri.parse('https://fakeserver.notexisting');
|
|
final client = Client(
|
|
'FluffyChat Widget Tests',
|
|
httpClient: FakeMatrixApi(),
|
|
verificationMethods: {
|
|
KeyVerificationMethod.numbers,
|
|
KeyVerificationMethod.emoji,
|
|
},
|
|
importantStateEvents: <String>{
|
|
'im.ponies.room_emotes', // we want emotes to work properly
|
|
},
|
|
databaseBuilder: FlutterHiveCollectionsDatabase.databaseBuilder,
|
|
supportedLoginTypes: {
|
|
AuthenticationTypes.password,
|
|
AuthenticationTypes.sso
|
|
},
|
|
);
|
|
await client.checkHomeserver(homeserver);
|
|
if (loggedIn) {
|
|
await client.login(
|
|
LoginType.mLoginToken,
|
|
identifier: AuthenticationUserIdentifier(user: '@alice:example.invalid'),
|
|
password: '1234',
|
|
);
|
|
}
|
|
return client;
|
|
}
|