2019-06-10 06:28:21 +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-10 06:28:21 +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-10 06:28:21 +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-10 06:28:21 +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-10 06:28:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-10-04 09:44:32 +00:00
|
|
|
import 'package:test/test.dart';
|
Update lib/src/client.dart, lib/src/user.dart, lib/src/timeline.dart, lib/src/room.dart, lib/src/presence.dart, lib/src/event.dart, lib/src/utils/profile.dart, lib/src/utils/receipt.dart, test/client_test.dart, test/event_test.dart, test/presence_test.dart, test/room_test.dart, test/timeline_test.dart, test/user_test.dart files
2020-01-04 17:56:17 +00:00
|
|
|
import 'package:famedlysdk/src/client.dart';
|
2020-04-24 07:24:06 +00:00
|
|
|
import 'package:famedlysdk/src/utils/uri_extension.dart';
|
2019-06-10 06:28:21 +00:00
|
|
|
|
Update lib/src/client.dart, lib/src/user.dart, lib/src/timeline.dart, lib/src/room.dart, lib/src/presence.dart, lib/src/event.dart, lib/src/utils/profile.dart, lib/src/utils/receipt.dart, test/client_test.dart, test/event_test.dart, test/presence_test.dart, test/room_test.dart, test/timeline_test.dart, test/user_test.dart files
2020-01-04 17:56:17 +00:00
|
|
|
import 'fake_matrix_api.dart';
|
2020-01-02 14:09:49 +00:00
|
|
|
|
2019-06-10 06:28:21 +00:00
|
|
|
void main() {
|
|
|
|
/// All Tests related to the MxContent
|
2020-03-30 09:08:38 +00:00
|
|
|
group('MxContent', () {
|
|
|
|
test('Formatting', () async {
|
2020-06-03 10:16:01 +00:00
|
|
|
var client = Client('testclient', httpClient: FakeMatrixApi());
|
2020-03-30 09:08:38 +00:00
|
|
|
await client.checkServer('https://fakeserver.notexisting');
|
|
|
|
final mxc = 'mxc://exampleserver.abc/abcdefghijklmn';
|
2020-04-24 07:24:06 +00:00
|
|
|
final content = Uri.parse(mxc);
|
|
|
|
expect(content.isScheme('mxc'), true);
|
2019-06-10 06:28:21 +00:00
|
|
|
|
2019-06-21 12:38:07 +00:00
|
|
|
expect(content.getDownloadLink(client),
|
2020-06-03 10:16:01 +00:00
|
|
|
'${client.api.homeserver.toString()}/_matrix/media/r0/download/exampleserver.abc/abcdefghijklmn');
|
2019-06-21 12:38:07 +00:00
|
|
|
expect(content.getThumbnail(client, width: 50, height: 50),
|
2020-06-03 10:16:01 +00:00
|
|
|
'${client.api.homeserver.toString()}/_matrix/media/r0/thumbnail/exampleserver.abc/abcdefghijklmn?width=50&height=50&method=crop');
|
2019-06-21 12:38:07 +00:00
|
|
|
expect(
|
|
|
|
content.getThumbnail(client,
|
|
|
|
width: 50, height: 50, method: ThumbnailMethod.scale),
|
2020-06-03 10:16:01 +00:00
|
|
|
'${client.api.homeserver.toString()}/_matrix/media/r0/thumbnail/exampleserver.abc/abcdefghijklmn?width=50&height=50&method=scale');
|
2019-06-10 06:28:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|