2019-06-09 11:57:33 +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
|
2019-06-21 12:38:07 +00:00
|
|
|
* along with famedlysdk. If not, see <http://www.gnu.org/licenses/>.
|
2019-06-09 11:57:33 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-09 10:16:48 +00:00
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:core';
|
|
|
|
import 'dart:math';
|
2020-05-02 05:02:11 +00:00
|
|
|
|
2019-06-09 10:16:48 +00:00
|
|
|
import 'package:http/http.dart';
|
2020-05-02 05:02:11 +00:00
|
|
|
import 'package:http/testing.dart';
|
2019-06-09 10:16:48 +00:00
|
|
|
|
|
|
|
class FakeMatrixApi extends MockClient {
|
|
|
|
FakeMatrixApi()
|
|
|
|
: super((request) async {
|
2019-06-18 09:37:06 +00:00
|
|
|
// Collect data from Request
|
2020-03-30 09:08:38 +00:00
|
|
|
var action =
|
|
|
|
request.url.path.split('/_matrix')[1] + '?' + request.url.query;
|
|
|
|
if (action.endsWith('?')) action = action.replaceAll('?', '');
|
|
|
|
final method = request.method;
|
2019-06-18 09:37:06 +00:00
|
|
|
final dynamic data =
|
2020-03-30 09:08:38 +00:00
|
|
|
method == 'GET' ? request.url.queryParameters : request.body;
|
2019-06-18 09:37:06 +00:00
|
|
|
var res = {};
|
2019-06-09 10:16:48 +00:00
|
|
|
|
2019-08-29 10:28:50 +00:00
|
|
|
//print("$method request to $action with Data: $data");
|
2019-06-09 10:16:48 +00:00
|
|
|
|
2019-06-18 09:37:06 +00:00
|
|
|
// Sync requests with timeout
|
2020-03-30 09:08:38 +00:00
|
|
|
if (data is Map<String, dynamic> && data['timeout'] is String) {
|
2020-01-02 14:33:26 +00:00
|
|
|
await Future.delayed(Duration(seconds: 5));
|
2019-06-18 09:37:06 +00:00
|
|
|
}
|
2019-06-09 10:16:48 +00:00
|
|
|
|
2020-03-30 09:08:38 +00:00
|
|
|
if (request.url.origin != 'https://fakeserver.notexisting') {
|
2019-06-18 09:37:06 +00:00
|
|
|
return Response(
|
2020-03-30 09:08:38 +00:00
|
|
|
'<html><head></head><body>Not found...</body></html>', 404);
|
2020-01-02 14:33:26 +00:00
|
|
|
}
|
2019-06-09 10:16:48 +00:00
|
|
|
|
2019-06-18 09:37:06 +00:00
|
|
|
// Call API
|
2020-01-02 14:33:26 +00:00
|
|
|
if (api.containsKey(method) && api[method].containsKey(action)) {
|
2019-06-18 09:37:06 +00:00
|
|
|
res = api[method][action](data);
|
2020-03-30 09:08:38 +00:00
|
|
|
if (res.containsKey('errcode')) {
|
2020-01-14 11:27:26 +00:00
|
|
|
return Response(json.encode(res), 405);
|
|
|
|
}
|
2020-03-30 09:08:38 +00:00
|
|
|
} else if (method == 'PUT' &&
|
|
|
|
action.contains('/client/r0/sendToDevice/')) {
|
2020-02-15 07:48:41 +00:00
|
|
|
return Response(json.encode({}), 200);
|
2020-03-30 09:08:38 +00:00
|
|
|
} else if (method == 'GET' &&
|
|
|
|
action.contains('/client/r0/rooms/') &&
|
|
|
|
action.contains('/state/m.room.member/')) {
|
|
|
|
res = {'displayname': ''};
|
2019-12-29 10:28:33 +00:00
|
|
|
return Response(json.encode(res), 200);
|
2020-01-02 14:33:26 +00:00
|
|
|
} else {
|
2019-06-18 09:37:06 +00:00
|
|
|
res = {
|
2020-03-30 09:08:38 +00:00
|
|
|
'errcode': 'M_UNRECOGNIZED',
|
|
|
|
'error': 'Unrecognized request'
|
2019-06-18 09:37:06 +00:00
|
|
|
};
|
2020-01-14 11:27:26 +00:00
|
|
|
return Response(json.encode(res), 405);
|
2020-01-02 14:33:26 +00:00
|
|
|
}
|
2019-06-18 09:37:06 +00:00
|
|
|
|
2020-01-14 11:27:26 +00:00
|
|
|
return Response(json.encode(res), 200);
|
2019-06-18 09:37:06 +00:00
|
|
|
});
|
2019-06-09 10:16:48 +00:00
|
|
|
|
2019-12-29 10:28:33 +00:00
|
|
|
static Map<String, dynamic> messagesResponse = {
|
2020-03-30 09:08:38 +00:00
|
|
|
'start': 't47429-4392820_219380_26003_2265',
|
|
|
|
'end': 't47409-4357353_219380_26003_2265',
|
|
|
|
'chunk': [
|
2019-12-29 10:28:33 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'body': 'This is an example text message',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': '<b>This is an example text message</b>'
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.message',
|
|
|
|
'event_id': '3143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!1234:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234}
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {'name': 'The room name'},
|
|
|
|
'type': 'm.room.name',
|
|
|
|
'event_id': '2143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!1234:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': ''
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'body': 'Gangnam Style',
|
|
|
|
'url': 'mxc://example.org/a526eYUSFFxlgbQYZmo442',
|
|
|
|
'info': {
|
|
|
|
'thumbnail_url': 'mxc://example.org/FHyPlCeYUSFFxlgbQYZmoEoe',
|
|
|
|
'thumbnail_info': {
|
|
|
|
'mimetype': 'image/jpeg',
|
|
|
|
'size': 46144,
|
|
|
|
'w': 300,
|
|
|
|
'h': 300
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'w': 480,
|
|
|
|
'h': 320,
|
|
|
|
'duration': 2140786,
|
|
|
|
'size': 1563685,
|
|
|
|
'mimetype': 'video/mp4'
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'msgtype': 'm.video'
|
2019-12-29 10:28:33 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.message',
|
|
|
|
'event_id': '1143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!1234:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234}
|
2019-12-29 10:28:33 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2019-11-29 16:19:32 +00:00
|
|
|
static Map<String, dynamic> syncResponse = {
|
2020-03-30 09:08:38 +00:00
|
|
|
'next_batch': Random().nextDouble().toString(),
|
|
|
|
'presence': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.presence',
|
|
|
|
'content': {'presence': 'online'}
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'account_data': {
|
|
|
|
'events': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'global': {
|
|
|
|
'content': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight'}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'pattern': 'alice',
|
|
|
|
'rule_id': '.m.rule.contains_user_name'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'override': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': ['dont_notify'],
|
|
|
|
'conditions': [],
|
|
|
|
'default': true,
|
|
|
|
'enabled': false,
|
|
|
|
'rule_id': '.m.rule.master'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': ['dont_notify'],
|
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'content.msgtype',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.notice'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.suppress_notices'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'room': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': ['dont_notify'],
|
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'room_id',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': '!localpart:server.abc',
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '!localpart:server.abc'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': [],
|
|
|
|
'underride': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'ring'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.call.invite'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.call'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight'}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
|
|
|
{'kind': 'contains_display_name'}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.contains_display_name'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
|
|
|
{'is': '2', 'kind': 'room_member_count'},
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.message'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.room_one_to_one'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.member'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'content.membership',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'invite'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'state_key',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': '@alice:example.com'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.invite_for_me'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.member'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.member_event'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-12-04 09:58:47 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-12-04 09:58:47 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.message'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.message'
|
2019-12-04 09:58:47 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.push_rules'
|
2019-12-04 09:58:47 +00:00
|
|
|
},
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'org.example.custom.config',
|
|
|
|
'content': {'custom_config_key': 'custom_config_value'}
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'@bob:example.com': [
|
|
|
|
'!726s6s6q:example.com',
|
|
|
|
'!hgfedcba:example.com'
|
2019-11-29 16:19:32 +00:00
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.direct'
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'to_device': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.new_device',
|
|
|
|
'content': {
|
|
|
|
'device_id': 'XYZABCDE',
|
|
|
|
'rooms': ['!726s6s6q:example.com']
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
2020-02-15 07:48:41 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'content': {
|
|
|
|
'algorithm': 'm.megolm.v1.aes-sha2',
|
|
|
|
'room_id': '!726s6s6q:example.com',
|
|
|
|
'session_id': 'ciM/JWTPrmiWPPZNkRLDPQYf9AW/I46bxyLSr+Bx5oU',
|
|
|
|
'session_key':
|
|
|
|
'AgAAAAAQcQ6XrFJk6Prm8FikZDqfry/NbDz8Xw7T6e+/9Yf/q3YHIPEQlzv7IZMNcYb51ifkRzFejVvtphS7wwG2FaXIp4XS2obla14iKISR0X74ugB2vyb1AydIHE/zbBQ1ic5s3kgjMFlWpu/S3FQCnCrv+DPFGEt3ERGWxIl3Bl5X53IjPyVkz65oljz2TZESwz0GH/QFvyOOm8ci0q/gceaF3S7Dmafg3dwTKYwcA5xkcc+BLyrLRzB6Hn+oMAqSNSscnm4mTeT5zYibIhrzqyUTMWr32spFtI9dNR/RFSzfCw'
|
2020-02-15 07:48:41 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room_key'
|
2020-02-15 07:48:41 +00:00
|
|
|
},
|
2019-11-29 16:19:32 +00:00
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'rooms': {
|
|
|
|
'join': {
|
|
|
|
'!726s6s6q:example.com': {
|
|
|
|
'unread_notifications': {
|
|
|
|
'highlight_count': 2,
|
|
|
|
'notification_count': 2,
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'state': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'state_key': '@alice:example.com',
|
|
|
|
'content': {'membership': 'join'},
|
|
|
|
'origin_server_ts': 1417731086795,
|
|
|
|
'event_id': '66697273743031:example.com'
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.canonical_alias',
|
|
|
|
'content': {
|
|
|
|
'alias': '#famedlyContactDiscovery:fakeServer.notExisting'
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'state_key': '',
|
|
|
|
'origin_server_ts': 1417731086796,
|
|
|
|
'event_id': '66697273743032:example.com'
|
2020-02-04 13:41:13 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.encryption',
|
|
|
|
'state_key': '',
|
|
|
|
'content': {'algorithm': 'm.megolm.v1.aes-sha2'},
|
|
|
|
'origin_server_ts': 1417731086795,
|
|
|
|
'event_id': '666972737430353:example.com'
|
2020-02-04 13:41:13 +00:00
|
|
|
},
|
2019-11-29 16:19:32 +00:00
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'timeline': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@bob:example.com',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'state_key': '@bob:example.com',
|
|
|
|
'content': {'membership': 'join'},
|
|
|
|
'prev_content': {'membership': 'invite'},
|
|
|
|
'origin_server_ts': 1417731086795,
|
|
|
|
'event_id': '7365636s6r6432:example.com'
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.message',
|
|
|
|
'txn_id': '1234',
|
|
|
|
'content': {'body': 'I am a fish', 'msgtype': 'm.text'},
|
|
|
|
'origin_server_ts': 1417731086797,
|
|
|
|
'event_id': '74686972643033:example.com'
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'limited': true,
|
|
|
|
'prev_batch': 't34-23535_0_0'
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'ephemeral': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.typing',
|
|
|
|
'content': {
|
|
|
|
'user_ids': ['@alice:example.com']
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'7365636s6r6432:example.com': {
|
|
|
|
'm.read': {
|
|
|
|
'@alice:example.com': {'ts': 1436451550453}
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'room_id': '!726s6s6q:example.com',
|
|
|
|
'type': 'm.receipt'
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'account_data': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.tag',
|
|
|
|
'content': {
|
|
|
|
'tags': {
|
|
|
|
'work': {'order': 1}
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'org.example.custom.room.config',
|
|
|
|
'content': {'custom_config_key': 'custom_config_value'}
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'invite': {
|
|
|
|
'!696r7674:example.com': {
|
|
|
|
'invite_state': {
|
|
|
|
'events': [
|
2019-11-29 16:19:32 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.name',
|
|
|
|
'state_key': '',
|
|
|
|
'content': {'name': 'My Room Name'}
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'type': 'm.room.member',
|
|
|
|
'state_key': '@bob:example.com',
|
|
|
|
'content': {'membership': 'invite'}
|
2019-11-29 16:19:32 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static Map<String, dynamic> archiveSyncResponse = {
|
2020-03-30 09:08:38 +00:00
|
|
|
'next_batch': Random().nextDouble().toString(),
|
|
|
|
'presence': {'events': []},
|
|
|
|
'account_data': {'events': []},
|
|
|
|
'to_device': {'events': []},
|
|
|
|
'rooms': {
|
|
|
|
'join': {},
|
|
|
|
'invite': {},
|
|
|
|
'leave': {
|
|
|
|
'!5345234234:example.com': {
|
|
|
|
'timeline': {
|
|
|
|
'events': [
|
2019-12-19 11:26:21 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'body': 'This is an example text message',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': '<b>This is an example text message</b>'
|
2019-12-19 11:26:21 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.message',
|
|
|
|
'event_id': '143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!5345234234:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234}
|
2019-12-19 11:26:21 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'state': {
|
|
|
|
'events': [
|
2019-12-19 11:26:21 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {'name': 'The room name'},
|
|
|
|
'type': 'm.room.name',
|
|
|
|
'event_id': '2143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!5345234234:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': ''
|
2019-12-19 11:26:21 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'account_data': {
|
|
|
|
'events': [
|
2019-12-19 11:26:21 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'test.type.data',
|
|
|
|
'content': {'foo': 'bar'},
|
2019-12-19 11:26:21 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'!5345234235:example.com': {
|
|
|
|
'timeline': {'events': []},
|
|
|
|
'state': {
|
|
|
|
'events': [
|
2019-12-19 11:26:21 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {'name': 'The room name 2'},
|
|
|
|
'type': 'm.room.name',
|
|
|
|
'event_id': '2143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!5345234235:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': ''
|
2019-12-19 11:26:21 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
2019-11-29 16:19:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-09 10:16:48 +00:00
|
|
|
static final Map<String, Map<String, dynamic>> api = {
|
2020-03-30 09:08:38 +00:00
|
|
|
'GET': {
|
|
|
|
'/client/r0/devices': (var req) => {
|
|
|
|
'devices': [
|
2020-02-19 13:26:38 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'device_id': 'QBUAZIFURK',
|
|
|
|
'display_name': 'android',
|
|
|
|
'last_seen_ip': '1.2.3.4',
|
|
|
|
'last_seen_ts': 1474491775024
|
2020-02-19 13:26:38 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/1/state/m.room.member/@alice:example.com': (var req) =>
|
|
|
|
{'displayname': 'Alice'},
|
|
|
|
'/client/r0/profile/@getme:example.com': (var req) => {
|
|
|
|
'avatar_url': 'mxc://test',
|
|
|
|
'displayname': 'You got me',
|
2019-11-30 09:36:30 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/state/m.room.member/@getme:example.com':
|
2019-08-08 09:41:42 +00:00
|
|
|
(var req) => {
|
2020-03-30 09:08:38 +00:00
|
|
|
'avatar_url': 'mxc://test',
|
|
|
|
'displayname': 'You got me',
|
2019-08-08 09:41:42 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/event/1234': (var req) => {
|
|
|
|
'content': {
|
|
|
|
'body': 'This is an example text message',
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'format': 'org.matrix.custom.html',
|
|
|
|
'formatted_body': '<b>This is an example text message</b>'
|
2019-06-28 08:59:00 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.message',
|
|
|
|
'event_id': '143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!localpart:server.abc',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234}
|
2019-06-28 08:59:00 +00:00
|
|
|
},
|
2020-05-02 05:02:11 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/messages?from=&dir=b&limit=10&filter=%7B%22lazy_load_members%22:true%7D':
|
2019-12-29 10:28:33 +00:00
|
|
|
(var req) => messagesResponse,
|
2020-05-02 05:02:11 +00:00
|
|
|
'/client/r0/rooms/!1234:example.com/messages?from=1234&dir=b&limit=100&filter=%7B%22lazy_load_members%22:true%7D':
|
2019-12-29 10:28:33 +00:00
|
|
|
(var req) => messagesResponse,
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/versions': (var req) => {
|
|
|
|
'versions': [
|
|
|
|
'r0.0.1',
|
|
|
|
'r0.1.0',
|
|
|
|
'r0.2.0',
|
|
|
|
'r0.3.0',
|
|
|
|
'r0.4.0',
|
|
|
|
'r0.5.0'
|
2019-08-06 09:47:09 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'unstable_features': {'m.lazy_load_members': true},
|
2019-06-18 09:37:06 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/login': (var req) => {
|
|
|
|
'flows': [
|
|
|
|
{'type': 'm.login.password'}
|
2019-06-18 09:37:06 +00:00
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!696r7674:example.com/members': (var req) => {
|
|
|
|
'chunk': [
|
2020-02-27 08:41:49 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'membership': 'join',
|
|
|
|
'avatar_url': 'mxc://example.org/SEsfnsuifSDFSSEF',
|
|
|
|
'displayname': 'Alice Margatroid'
|
2020-02-27 08:41:49 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.member',
|
|
|
|
'event_id': '§143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!636q39766251:example.com',
|
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': '@alice:example.com'
|
2020-02-27 08:41:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!726s6s6q:example.com/members': (var req) => {
|
|
|
|
'chunk': [
|
2019-08-08 07:58:37 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'membership': 'join',
|
|
|
|
'avatar_url': 'mxc://example.org/SEsfnsuifSDFSSEF',
|
|
|
|
'displayname': 'Alice Margatroid'
|
2019-08-08 07:58:37 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.member',
|
|
|
|
'event_id': '§143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!636q39766251:example.com',
|
|
|
|
'sender': '@alice:example.com',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': '@alice:example.com'
|
2019-08-08 07:58:37 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/members': (var req) => {
|
|
|
|
'chunk': [
|
2019-06-18 10:06:55 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'content': {
|
|
|
|
'membership': 'join',
|
|
|
|
'avatar_url': 'mxc://example.org/SEsfnsuifSDFSSEF',
|
|
|
|
'displayname': 'Alice Margatroid'
|
2019-06-18 10:06:55 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'type': 'm.room.member',
|
|
|
|
'event_id': '§143273582443PhrSn:example.org',
|
|
|
|
'room_id': '!636q39766251:example.com',
|
|
|
|
'sender': '@example:example.org',
|
|
|
|
'origin_server_ts': 1432735824653,
|
|
|
|
'unsigned': {'age': 1234},
|
|
|
|
'state_key': '@alice:example.org'
|
2019-06-18 10:06:55 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/pushrules/': (var req) => {
|
|
|
|
'global': {
|
|
|
|
'content': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight'}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'pattern': 'alice',
|
|
|
|
'rule_id': '.m.rule.contains_user_name'
|
2019-06-21 07:41:09 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'override': [
|
2019-06-21 07:41:09 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': ['dont_notify'],
|
|
|
|
'conditions': [],
|
|
|
|
'default': true,
|
|
|
|
'enabled': false,
|
|
|
|
'rule_id': '.m.rule.master'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': ['dont_notify'],
|
|
|
|
'conditions': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'content.msgtype',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.notice'
|
2019-06-21 12:38:07 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.suppress_notices'
|
2019-06-21 07:41:09 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'room': [],
|
|
|
|
'sender': [],
|
|
|
|
'underride': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'ring'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.call.invite'
|
2019-06-21 12:38:07 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.call'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight'}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
|
|
|
{'kind': 'contains_display_name'}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.contains_display_name'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
|
|
|
{'is': '2', 'kind': 'room_member_count'}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.room_one_to_one'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'sound', 'value': 'default'},
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.member'
|
2019-06-21 12:38:07 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'content.membership',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'invite'
|
2019-06-21 12:38:07 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'state_key',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': '@alice:example.com'
|
2019-06-21 12:38:07 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.invite_for_me'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.member'
|
2019-06-21 12:38:07 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.member_event'
|
2019-06-21 07:41:09 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{'set_tweak': 'highlight', 'value': false}
|
2019-06-21 12:38:07 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'conditions': [
|
2019-06-21 12:38:07 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'key': 'type',
|
|
|
|
'kind': 'event_match',
|
|
|
|
'pattern': 'm.room.message'
|
2019-06-21 12:38:07 +00:00
|
|
|
}
|
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'default': true,
|
|
|
|
'enabled': true,
|
|
|
|
'rule_id': '.m.rule.message'
|
2019-06-21 07:41:09 +00:00
|
|
|
}
|
2019-06-21 12:38:07 +00:00
|
|
|
]
|
2019-06-21 07:41:09 +00:00
|
|
|
}
|
2019-06-21 12:38:07 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/sync?filter=%7B%22room%22:%7B%22include_leave%22:true,%22timeline%22:%7B%22limit%22:10%7D%7D%7D&timeout=0':
|
2019-11-29 16:19:32 +00:00
|
|
|
(var req) => archiveSyncResponse,
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/sync?filter=%7B%22room%22:%7B%22state%22:%7B%22lazy_load_members%22:true%7D%7D%7D':
|
2019-11-29 16:19:32 +00:00
|
|
|
(var req) => syncResponse,
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/register/available?username=testuser': (var req) =>
|
|
|
|
{'available': true},
|
2019-06-09 10:16:48 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'POST': {
|
|
|
|
'/client/r0/keys/claim': (var req) => {
|
|
|
|
'failures': {},
|
|
|
|
'one_time_keys': {
|
|
|
|
'@alice:example.com': {
|
|
|
|
'JLAFKJWSCS': {
|
|
|
|
'signed_curve25519:AAAAHg': {
|
|
|
|
'key': 'zKbLg+NrIjpnagy+pIY6uPL4ZwEG2v+8F9lmgsnlZzs',
|
|
|
|
'signatures': {
|
|
|
|
'@alice:example.com': {
|
|
|
|
'ed25519:JLAFKJWSCS':
|
|
|
|
'FLWxXqGbwrb8SM3Y795eB6OA8bwBcoMZFXBqnTn58AYWZSqiD45tlBVcDa2L7RwdKXebW/VzDlnfVJ+9jok1Bw'
|
2020-02-15 07:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/keys/upload': (var req) => {
|
|
|
|
'one_time_key_counts': {
|
|
|
|
'curve25519': 10,
|
|
|
|
'signed_curve25519': 100,
|
2020-02-15 07:48:41 +00:00
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/keys/query': (var req) => {
|
|
|
|
'failures': {},
|
|
|
|
'device_keys': {
|
|
|
|
'@alice:example.com': {
|
|
|
|
'JLAFKJWSCS': {
|
|
|
|
'user_id': '@alice:example.com',
|
|
|
|
'device_id': 'JLAFKJWSCS',
|
|
|
|
'algorithms': [
|
|
|
|
'm.olm.v1.curve25519-aes-sha2',
|
|
|
|
'm.megolm.v1.aes-sha2'
|
2020-02-04 13:41:13 +00:00
|
|
|
],
|
2020-03-30 09:08:38 +00:00
|
|
|
'keys': {
|
|
|
|
'curve25519:JLAFKJWSCS':
|
|
|
|
'3C5BFWi2Y8MaVvjM8M22DBmh24PmgR0nPvJOIArzgyI',
|
|
|
|
'ed25519:JLAFKJWSCS':
|
|
|
|
'lEuiRJBit0IG6nUf5pUzWTUEsRVVe/HJkoKuEww9ULI'
|
2020-02-04 13:41:13 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'signatures': {
|
|
|
|
'@alice:example.com': {
|
|
|
|
'ed25519:JLAFKJWSCS':
|
|
|
|
'dSO80A01XiigH3uBiDVx/EjzaoycHcjq9lfQX0uWsqxl2giMIiSPR8a4d291W1ihKJL/a+myXS367WT6NAIcBA'
|
2020-02-04 13:41:13 +00:00
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'unsigned': {'device_display_name': "Alice's mobile phone"}
|
2020-02-04 13:41:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/register': (var req) => {'user_id': '@testuser:example.com'},
|
|
|
|
'/client/r0/register?kind=user': (var req) =>
|
|
|
|
{'user_id': '@testuser:example.com'},
|
|
|
|
'/client/r0/register?kind=guest': (var req) =>
|
|
|
|
{'user_id': '@testuser:example.com'},
|
|
|
|
'/client/r0/user/@test:fakeServer.notExisting/openid/request_token':
|
2020-01-13 11:52:42 +00:00
|
|
|
(var req) => {
|
2020-03-30 09:08:38 +00:00
|
|
|
'access_token': 'SomeT0kenHere',
|
|
|
|
'token_type': 'Bearer',
|
|
|
|
'matrix_server_name': 'example.com',
|
|
|
|
'expires_in': 3600
|
2020-01-13 11:52:42 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/login': (var req) => {
|
|
|
|
'user_id': '@test:fakeServer.notExisting',
|
|
|
|
'access_token': 'abc123',
|
|
|
|
'device_id': 'GHTYAJCE'
|
2019-06-18 09:37:06 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/media/r0/upload?filename=file.jpeg': (var req) =>
|
|
|
|
{'content_uri': 'mxc://example.com/AQwafuaFswefuhsfAFAgsw'},
|
|
|
|
'/client/r0/logout': (var reqI) => {},
|
|
|
|
'/client/r0/pushers/set': (var reqI) => {},
|
|
|
|
'/client/r0/join/1234': (var reqI) => {'room_id': '1234'},
|
|
|
|
'/client/r0/logout/all': (var reqI) => {},
|
|
|
|
'/client/r0/createRoom': (var reqI) => {
|
|
|
|
'room_id': '!1234:fakeServer.notExisting',
|
2019-06-18 10:06:55 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/read_markers': (var reqI) => {},
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/kick': (var reqI) => {},
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/ban': (var reqI) => {},
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/unban': (var reqI) => {},
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/invite': (var reqI) => {},
|
2019-06-09 10:16:48 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'PUT': {
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/send/m.room.message/testtxid':
|
2019-09-09 13:22:02 +00:00
|
|
|
(var reqI) => {
|
2020-03-30 09:08:38 +00:00
|
|
|
'event_id': '42',
|
2019-09-09 13:22:02 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!1234:example.com/send/m.room.message/1234':
|
2019-06-26 14:36:34 +00:00
|
|
|
(var reqI) => {
|
2020-03-30 09:08:38 +00:00
|
|
|
'event_id': '42',
|
2019-06-26 14:36:34 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/profile/@test:fakeServer.notExisting/avatar_url':
|
2019-09-09 13:22:02 +00:00
|
|
|
(var reqI) => {},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/state/m.room.avatar/':
|
|
|
|
(var reqI) => {'event_id': 'YUwRidLecu:example.com'},
|
|
|
|
'/client/r0/rooms/!localpart:server.abc/state/m.room.name': (var reqI) =>
|
2019-08-08 09:41:42 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'event_id': '42',
|
2019-08-08 09:41:42 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/state/m.room.topic': (var reqI) =>
|
2019-08-08 09:41:42 +00:00
|
|
|
{
|
2020-03-30 09:08:38 +00:00
|
|
|
'event_id': '42',
|
2019-08-08 09:41:42 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/rooms/!localpart:server.abc/state/m.room.power_levels':
|
2019-08-08 09:41:42 +00:00
|
|
|
(var reqI) => {
|
2020-03-30 09:08:38 +00:00
|
|
|
'event_id': '42',
|
2019-08-08 09:41:42 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'/client/r0/user/@test:fakeServer.notExisting/account_data/m.direct':
|
2019-08-08 09:41:42 +00:00
|
|
|
(var reqI) => {},
|
2019-06-26 14:36:34 +00:00
|
|
|
},
|
2020-03-30 09:08:38 +00:00
|
|
|
'DELETE': {
|
|
|
|
'/unknown/token': (var req) => {'errcode': 'M_UNKNOWN_TOKEN'},
|
2019-06-09 10:16:48 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|