mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
96 lines
2.5 KiB
Dart
96 lines
2.5 KiB
Dart
|
import 'dart:io';
|
||
|
import 'package:appflowy/generated/locale_keys.g.dart';
|
||
|
import 'package:appflowy/workspace/application/settings/prelude.dart';
|
||
|
import 'package:appflowy/workspace/presentation/home/menu/menu.dart';
|
||
|
import 'package:appflowy/workspace/presentation/settings/settings_dialog.dart';
|
||
|
import 'package:easy_localization/easy_localization.dart';
|
||
|
import 'package:flutter/services.dart';
|
||
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
import 'package:integration_test/integration_test.dart';
|
||
|
|
||
|
import 'util/keyboard.dart';
|
||
|
import 'util/util.dart';
|
||
|
|
||
|
void main() {
|
||
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
||
|
|
||
|
group('hotkeys test', () {
|
||
|
testWidgets('toggle theme mode', (tester) async {
|
||
|
await tester.initializeAppFlowy();
|
||
|
|
||
|
await tester.tapGoButton();
|
||
|
tester.expectToSeeHomePage();
|
||
|
|
||
|
await tester.openSettings();
|
||
|
await tester.openSettingsPage(SettingsPage.appearance);
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
tester.expectToSeeText(
|
||
|
LocaleKeys.settings_appearance_themeMode_system.tr(),
|
||
|
);
|
||
|
|
||
|
await tester.tapButton(
|
||
|
find.bySemanticsLabel(
|
||
|
LocaleKeys.settings_appearance_themeMode_system.tr(),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
await tester.tapButton(
|
||
|
find.bySemanticsLabel(
|
||
|
LocaleKeys.settings_appearance_themeMode_dark.tr(),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
await tester.pumpAndSettle(const Duration(seconds: 1));
|
||
|
|
||
|
await tester.tap(find.byType(SettingsDialog));
|
||
|
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
await FlowyTestKeyboard.simulateKeyDownEvent(
|
||
|
[
|
||
|
Platform.isMacOS
|
||
|
? LogicalKeyboardKey.meta
|
||
|
: LogicalKeyboardKey.control,
|
||
|
LogicalKeyboardKey.shift,
|
||
|
LogicalKeyboardKey.keyL,
|
||
|
],
|
||
|
tester: tester,
|
||
|
);
|
||
|
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
tester.expectToSeeText(
|
||
|
LocaleKeys.settings_appearance_themeMode_light.tr(),
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testWidgets('show or hide home menu', (tester) async {
|
||
|
await tester.initializeAppFlowy();
|
||
|
|
||
|
await tester.tapGoButton();
|
||
|
tester.expectToSeeHomePage();
|
||
|
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
expect(find.byType(HomeMenu), findsOneWidget);
|
||
|
|
||
|
await FlowyTestKeyboard.simulateKeyDownEvent(
|
||
|
[
|
||
|
Platform.isMacOS
|
||
|
? LogicalKeyboardKey.meta
|
||
|
: LogicalKeyboardKey.control,
|
||
|
LogicalKeyboardKey.backslash,
|
||
|
],
|
||
|
tester: tester,
|
||
|
);
|
||
|
|
||
|
await tester.pumpAndSettle();
|
||
|
|
||
|
expect(find.byType(HomeMenu), findsNothing);
|
||
|
});
|
||
|
});
|
||
|
}
|