feat: introduce extended integration tests

- test both FLOSS and non-floss builds
- test on Synapse, Dendrite and Conduit
- remove Synapse-specific test
- add static Release mode app launch test

Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
TheOneWithTheBraid 2022-07-12 18:29:54 +02:00
commit 5f5a08f729
13 changed files with 490 additions and 30 deletions

View file

@ -2,7 +2,6 @@ import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:http/http.dart';
import 'package:integration_test/integration_test.dart';
import 'package:fluffychat/main.dart' as app;
@ -13,10 +12,6 @@ void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
group('Integration Test', () {
test('Check server availability', () async {
final response = await get(Uri.parse('$homeserver/_matrix/static/'));
expect(response.statusCode, 200);
}, timeout: const Timeout(Duration(seconds: 10)));
testWidgets('Test if the app starts', (WidgetTester tester) async {
app.main();
await tester.pumpAndSettle();