mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
62 lines
1.7 KiB
Dart
62 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:yubico_authenticator/android/init.dart' as android;
|
|
import 'package:yubico_authenticator/app/views/device_button.dart';
|
|
import 'package:yubico_authenticator/core/state.dart';
|
|
import 'package:yubico_authenticator/desktop/init.dart' as desktop;
|
|
|
|
import 'android/util.dart';
|
|
|
|
Future<Widget> getAuthenticatorApp() async => isDesktop
|
|
? await desktop.initialize([])
|
|
: isAndroid
|
|
? await android.initialize()
|
|
: throw UnimplementedError('Platform not supported');
|
|
|
|
const shortestWaitMs = 10;
|
|
const shortWaitMs = 50;
|
|
const longWaitMs = 200;
|
|
const veryLongWaitS = 10; // seconds
|
|
|
|
extension AppWidgetTester on WidgetTester {
|
|
|
|
Future<void> shortestWait() async {
|
|
await pump(const Duration(milliseconds: shortestWaitMs));
|
|
}
|
|
|
|
Future<void> shortWait() async {
|
|
await pump(const Duration(milliseconds: shortWaitMs));
|
|
}
|
|
|
|
Future<void> longWait() async {
|
|
await pump(const Duration(milliseconds: longWaitMs));
|
|
}
|
|
|
|
Future<void> veryLongWait() async {
|
|
await pump(const Duration(seconds: veryLongWaitS));
|
|
}
|
|
|
|
|
|
/// Taps the device button
|
|
Future<void> tapDeviceButton() async {
|
|
await tap(find.byType(DeviceButton).hitTestable());
|
|
await pump(const Duration(milliseconds: 500));
|
|
}
|
|
|
|
Future<void> startUp([Map<dynamic, dynamic>? startUpParams]) async {
|
|
if (isAndroid) {
|
|
return AndroidTestUtils.startUp(this, startUpParams);
|
|
} else {
|
|
/// desktop
|
|
return await pumpWidget(
|
|
await getAuthenticatorApp(), const Duration(milliseconds: 2000));
|
|
}
|
|
}
|
|
|
|
void testLog(bool quiet, String message) {
|
|
if (!quiet) {
|
|
printToConsole(message);
|
|
}
|
|
}
|
|
}
|