122 lines
4.5 KiB
Dart
122 lines
4.5 KiB
Dart
import "package:flutter/material.dart";
|
|
import "package:flutter_test/flutter_test.dart";
|
|
import "package:integration_test/integration_test.dart";
|
|
import "package:photos/main.dart" as app;
|
|
import "package:scrollable_positioned_list/scrollable_positioned_list.dart";
|
|
|
|
void main() {
|
|
group("App test", () {
|
|
final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
|
|
testWidgets("Demo test", (tester) async {
|
|
app.main();
|
|
|
|
await tester.pumpAndSettle(const Duration(seconds: 5));
|
|
|
|
await dismissUpdateAppDialog(tester);
|
|
|
|
//Automatically clicks the sign in button on the landing page
|
|
final signInButton = find.byKey(const ValueKey("signInButton"));
|
|
await tester.tap(signInButton);
|
|
await tester.pumpAndSettle();
|
|
|
|
//Need to enter email address manually and clicks the login button automatically
|
|
final emailInputField = find.byKey(const ValueKey("emailInputField"));
|
|
final logInButton = find.byKey(const ValueKey("logInButton"));
|
|
await tester.tap(emailInputField);
|
|
await tester.pumpAndSettle(const Duration(seconds: 12));
|
|
await findAndTapFAB(tester, logInButton);
|
|
|
|
//Need to enter OTT manually and clicks the verify button automatically
|
|
final ottVerificationInputField =
|
|
find.byKey(const ValueKey("ottVerificationInputField"));
|
|
final verifyOttButton = find.byKey(const ValueKey("verifyOttButton"));
|
|
await tester.tap(ottVerificationInputField);
|
|
await tester.pumpAndSettle(const Duration(seconds: 6));
|
|
await findAndTapFAB(tester, verifyOttButton);
|
|
|
|
//Need to enter password manually and clicks the verify button automatically
|
|
final passwordInputField =
|
|
find.byKey(const ValueKey("passwordInputField"));
|
|
final verifyPasswordButton =
|
|
find.byKey(const ValueKey("verifyPasswordButton"));
|
|
await tester.tap(passwordInputField);
|
|
await tester.pumpAndSettle(const Duration(seconds: 10));
|
|
await findAndTapFAB(tester, verifyPasswordButton);
|
|
|
|
await tester.pumpAndSettle(const Duration(seconds: 1));
|
|
await dismissUpdateAppDialog(tester);
|
|
|
|
//Grant permission to access photos. Must manually click the system dialog.
|
|
final grantPermissionButton =
|
|
find.byKey(const ValueKey("grantPermissionButton"));
|
|
await tester.tap(grantPermissionButton);
|
|
await tester.pumpAndSettle(const Duration(seconds: 1));
|
|
await tester.pumpAndSettle(const Duration(seconds: 3));
|
|
|
|
//Automatically skips backup
|
|
final skipBackupButton = find.byKey(const ValueKey("skipBackupButton"));
|
|
await tester.tap(skipBackupButton);
|
|
await tester.pumpAndSettle(const Duration(seconds: 2));
|
|
|
|
await binding.traceAction(
|
|
() async {
|
|
//scroll gallery
|
|
final scrollablePositionedList =
|
|
find.byType(ScrollablePositionedList);
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, -5000),
|
|
4500,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, 5000),
|
|
4500,
|
|
);
|
|
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, -7000),
|
|
4500,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, 7000),
|
|
4500,
|
|
);
|
|
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, -9000),
|
|
4500,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
await tester.fling(
|
|
scrollablePositionedList,
|
|
const Offset(0, 9000),
|
|
4500,
|
|
);
|
|
await tester.pumpAndSettle();
|
|
},
|
|
reportKey: 'scrolling_summary',
|
|
);
|
|
});
|
|
});
|
|
}
|
|
|
|
Future<void> findAndTapFAB(WidgetTester tester, Finder finder) async {
|
|
final RenderBox box = tester.renderObject(finder);
|
|
final Offset desiredOffset = Offset(box.size.width - 10, box.size.height / 2);
|
|
// Calculate the global position of the desired offset within the widget.
|
|
final Offset globalPosition = box.localToGlobal(desiredOffset);
|
|
await tester.tapAt(globalPosition);
|
|
await tester.pumpAndSettle(const Duration(seconds: 3));
|
|
}
|
|
|
|
Future<void> dismissUpdateAppDialog(WidgetTester tester) async {
|
|
await tester.tapAt(const Offset(0, 0));
|
|
await tester.pumpAndSettle();
|
|
}
|