2024-03-05 17:20:27 +08:00
|
|
|
import 'dart:io';
|
|
|
|
|
2024-03-07 12:48:51 +08:00
|
|
|
import 'desktop_runner_1.dart';
|
|
|
|
import 'desktop_runner_2.dart';
|
|
|
|
import 'desktop_runner_3.dart';
|
2024-10-08 14:29:07 +08:00
|
|
|
import 'desktop_runner_4.dart';
|
2024-10-29 14:55:20 +08:00
|
|
|
import 'desktop_runner_5.dart';
|
|
|
|
import 'desktop_runner_6.dart';
|
|
|
|
import 'desktop_runner_7.dart';
|
|
|
|
import 'desktop_runner_8.dart';
|
2024-11-14 06:55:09 +01:00
|
|
|
import 'desktop_runner_9.dart';
|
2024-11-12 09:06:30 +08:00
|
|
|
import 'mobile_runner_1.dart';
|
2023-04-03 18:50:22 -10:00
|
|
|
|
|
|
|
/// The main task runner for all integration tests in AppFlowy.
|
|
|
|
///
|
|
|
|
/// Having a single entrypoint for integration tests is necessary due to an
|
|
|
|
/// [issue caused by switching files with integration testing](https://github.com/flutter/flutter/issues/101031).
|
|
|
|
/// If flutter/flutter#101031 is resolved, this file can be removed completely.
|
|
|
|
/// Once removed, the integration_test.yaml must be updated to exclude this as
|
|
|
|
/// as the test target.
|
2023-11-24 11:54:47 +08:00
|
|
|
Future<void> main() async {
|
2024-03-05 17:20:27 +08:00
|
|
|
if (Platform.isLinux || Platform.isMacOS || Platform.isWindows) {
|
2024-03-07 12:48:51 +08:00
|
|
|
await runIntegration1OnDesktop();
|
|
|
|
await runIntegration2OnDesktop();
|
|
|
|
await runIntegration3OnDesktop();
|
2024-10-08 14:29:07 +08:00
|
|
|
await runIntegration4OnDesktop();
|
2024-10-29 14:55:20 +08:00
|
|
|
await runIntegration5OnDesktop();
|
|
|
|
await runIntegration6OnDesktop();
|
|
|
|
await runIntegration7OnDesktop();
|
|
|
|
await runIntegration8OnDesktop();
|
2024-11-14 06:55:09 +01:00
|
|
|
await runIntegration9OnDesktop();
|
2024-03-05 17:20:27 +08:00
|
|
|
} else if (Platform.isIOS || Platform.isAndroid) {
|
2024-11-12 09:06:30 +08:00
|
|
|
await runIntegration1OnMobile();
|
2024-03-05 17:20:27 +08:00
|
|
|
} else {
|
|
|
|
throw Exception('Unsupported platform');
|
|
|
|
}
|
2023-04-03 18:50:22 -10:00
|
|
|
}
|