mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
df8409178b
* refactor: remove singleton db * chore: fix warning * chore: fix warning * chore: update test * chore: only resotre or backup when init call * test: fix * test: fix * test: fix * fix: timeout notification * chore: rename * chore: rename * chore: disable test * chore: remove log * chore: remove log * chore: add log * chore: rename test functions * chore: add test asset * chore: bump client api * chore: disable some tests
96 lines
2.6 KiB
Dart
96 lines
2.6 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/sidebar/sidebar.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();
|
|
await tester.expectToSeeHomePageWithGetStartedPage();
|
|
|
|
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();
|
|
await tester.expectToSeeHomePageWithGetStartedPage();
|
|
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byType(HomeSideBar), findsOneWidget);
|
|
|
|
await FlowyTestKeyboard.simulateKeyDownEvent(
|
|
[
|
|
Platform.isMacOS
|
|
? LogicalKeyboardKey.meta
|
|
: LogicalKeyboardKey.control,
|
|
LogicalKeyboardKey.backslash,
|
|
],
|
|
tester: tester,
|
|
);
|
|
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byType(HomeSideBar), findsNothing);
|
|
});
|
|
});
|
|
}
|