2023-06-05 05:10:14 +00:00
|
|
|
import 'dart:ui';
|
|
|
|
|
2023-02-26 08:27:17 +00:00
|
|
|
import 'package:appflowy/generated/locale_keys.g.dart';
|
2023-06-05 05:10:14 +00:00
|
|
|
import 'package:appflowy/plugins/document/presentation/banner.dart';
|
|
|
|
import 'package:appflowy/user/presentation/skip_log_in_screen.dart';
|
2023-02-26 08:27:17 +00:00
|
|
|
import 'package:appflowy/workspace/presentation/home/home_stack.dart';
|
2023-06-05 05:10:14 +00:00
|
|
|
import 'package:appflowy/workspace/presentation/home/menu/app/header/add_button.dart';
|
|
|
|
import 'package:appflowy/workspace/presentation/home/menu/app/section/item.dart';
|
2022-12-20 03:14:42 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
|
|
|
|
import 'base.dart';
|
|
|
|
|
2023-06-05 05:10:14 +00:00
|
|
|
const String readme = 'Read me';
|
|
|
|
|
2022-12-20 03:14:42 +00:00
|
|
|
extension AppFlowyLaunch on WidgetTester {
|
|
|
|
Future<void> tapGoButton() async {
|
2023-06-05 05:10:14 +00:00
|
|
|
final goButton = find.byType(GoButton);
|
|
|
|
await tapButton(goButton);
|
2022-12-20 03:14:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapCreateButton() async {
|
|
|
|
await tapButtonWithName(LocaleKeys.settings_files_create.tr());
|
|
|
|
}
|
|
|
|
|
2023-06-05 05:10:14 +00:00
|
|
|
void expectToSeeWelcomePage() {
|
2022-12-20 03:14:42 +00:00
|
|
|
expect(find.byType(HomeStack), findsOneWidget);
|
|
|
|
expect(find.textContaining('Read me'), findsNWidgets(2));
|
|
|
|
}
|
2023-06-05 05:10:14 +00:00
|
|
|
|
|
|
|
Future<void> tapAddButton() async {
|
|
|
|
final addButton = find.byType(AddButton);
|
|
|
|
await tapButton(addButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapCreateDocumentButton() async {
|
|
|
|
await tapButtonWithName(LocaleKeys.document_menuName.tr());
|
|
|
|
}
|
|
|
|
|
|
|
|
Finder findPageName(String name) {
|
|
|
|
return find.byWidgetPredicate(
|
|
|
|
(widget) => widget is ViewSectionItem && widget.view.name == name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void expectToSeePageName(String name) {
|
|
|
|
final pageName = findPageName(name);
|
|
|
|
expect(pageName, findsOneWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void expectNotToSeePageName(String name) {
|
|
|
|
final pageName = findPageName(name);
|
|
|
|
expect(pageName, findsNothing);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> hoverOnPageName(String name) async {
|
|
|
|
final pageName = find.byWidgetPredicate(
|
|
|
|
(widget) => widget is ViewSectionItem && widget.view.name == name,
|
|
|
|
);
|
|
|
|
|
|
|
|
final gesture = await createGesture(kind: PointerDeviceKind.mouse);
|
|
|
|
await gesture.addPointer(location: Offset.zero);
|
|
|
|
addTearDown(gesture.removePointer);
|
|
|
|
await pump();
|
|
|
|
await gesture.moveTo(getCenter(pageName));
|
|
|
|
await pumpAndSettle();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapPageOptionButton() async {
|
|
|
|
final optionButton = find.byType(ViewDisclosureButton);
|
|
|
|
await tapButton(optionButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapDeletePageButton() async {
|
|
|
|
await tapPageOptionButton();
|
|
|
|
await tapButtonWithName(ViewDisclosureAction.delete.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void expectToSeeDocumentBanner() {
|
|
|
|
expect(find.byType(DocumentBanner), findsOneWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void expectNotToSeeDocumentBanner() {
|
|
|
|
expect(find.byType(DocumentBanner), findsNothing);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapRestoreButton() async {
|
|
|
|
final restoreButton = find.textContaining(
|
|
|
|
LocaleKeys.deletePagePrompt_restore.tr(),
|
|
|
|
);
|
|
|
|
await tapButton(restoreButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> tapDeletePermanentlyButton() async {
|
|
|
|
final restoreButton = find.textContaining(
|
|
|
|
LocaleKeys.deletePagePrompt_deletePermanent.tr(),
|
|
|
|
);
|
|
|
|
await tapButton(restoreButton);
|
|
|
|
}
|
2022-12-20 03:14:42 +00:00
|
|
|
}
|