yubioath-flutter/integration_test/test_util.dart

212 lines
6.1 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
* Copyright (C) 2022 Yubico.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-05-12 16:35:14 +03:00
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:yubico_authenticator/app/views/device_button.dart';
import 'package:yubico_authenticator/app/views/keys.dart' as app_keys;
2022-10-03 16:34:06 +03:00
import 'package:yubico_authenticator/app/views/keys.dart';
2022-05-12 16:35:14 +03:00
import 'package:yubico_authenticator/core/state.dart';
2022-10-03 16:34:06 +03:00
import 'package:yubico_authenticator/management/views/keys.dart';
2022-05-12 16:35:14 +03:00
2022-09-13 13:32:13 +03:00
import 'android/util.dart' as android_test_util;
import 'approved_yubikeys.dart';
2022-09-13 13:32:13 +03:00
import 'desktop/util.dart' as desktop_test_util;
2023-01-02 20:02:32 +03:00
const shortWaitMs = 10;
const longWaitMs = 50;
2022-09-12 07:34:49 +03:00
/// information about YubiKey as seen by the app
String? yubiKeyName;
String? yubiKeyFirmware;
String? yubiKeySerialNumber;
bool collectedYubiKeyInformation = false;
2022-09-12 07:34:49 +03:00
extension AppWidgetTester on WidgetTester {
2022-09-12 07:34:49 +03:00
Future<void> shortWait() async {
await pump(const Duration(milliseconds: shortWaitMs));
}
Future<void> longWait() async {
await pump(const Duration(milliseconds: longWaitMs));
}
/// waits up to [timeOutSec] seconds evaluating whether [Finder] f is
/// visible
Future<Finder> waitForFinder(Finder f, [int timeOutSec = 20]) async {
int delayMs = 500;
int elapsedTime = 0;
var evaluated = f.evaluate();
while (evaluated.isEmpty && elapsedTime < timeOutSec * 1000) {
await pump(Duration(milliseconds: delayMs));
elapsedTime += delayMs;
evaluated = f.evaluate();
}
if (evaluated.isEmpty) {
testLog(false, 'Failed to find ${f.description} in $timeOutSec seconds.');
}
return f;
}
Finder findDeviceButton() {
return find.byType(DeviceButton).hitTestable();
}
2022-09-12 07:34:49 +03:00
/// Taps the device button
Future<void> tapDeviceButton() async {
await tap(findDeviceButton());
await pump(const Duration(milliseconds: 500));
}
2023-01-11 12:04:15 +03:00
Finder findActionIconButton() {
return find.byKey(actionsIconButtonKey).hitTestable();
}
Future<void> tapActionIconButton() async {
await tap(findActionIconButton());
await pump(const Duration(milliseconds: 500));
}
Future<void> tapTopLeftCorner() async {
await tapAt(const Offset(0, 0));
await longWait();
}
2022-10-03 16:34:06 +03:00
/// Drawer helpers
bool hasDrawer() => scaffoldGlobalKey.currentState!.hasDrawer;
/// Open drawer
Future<void> openDrawer() async {
if (hasDrawer()) {
scaffoldGlobalKey.currentState!.openDrawer();
await pump(const Duration(milliseconds: 500));
}
}
/// Close drawer
Future<void> closeDrawer() async {
if (hasDrawer()) {
scaffoldGlobalKey.currentState!.closeDrawer();
await pump(const Duration(milliseconds: 500));
}
}
/// Is drawer opened?
/// If there is no drawer say it is open (all items are available)
bool isDrawerOpened() =>
hasDrawer() == false || scaffoldGlobalKey.currentState!.isDrawerOpen;
/// Management screen
Future<void> openManagementScreen() async {
if (!isDrawerOpened()) {
await openDrawer();
}
await tap(find.byKey(managementAppDrawer));
await pump(const Duration(milliseconds: 500));
expect(find.byKey(screenKey), findsOneWidget);
}
2022-09-13 13:32:13 +03:00
Future<void> startUp([Map<dynamic, dynamic> startUpParams = const {}]) async {
var result = isAndroid == true
2022-09-13 13:32:13 +03:00
? await android_test_util.startUp(this, startUpParams)
: await desktop_test_util.startUp(this, startUpParams);
2022-09-13 13:32:13 +03:00
await collectYubiKeyInformation();
if (!approvedYubiKeys.contains(yubiKeySerialNumber)) {
testLog(false,
'The connected key is refused by the tests: $yubiKeySerialNumber');
expect(approvedYubiKeys.contains(yubiKeySerialNumber), equals(true));
}
return result;
}
2022-09-12 07:34:49 +03:00
void testLog(bool quiet, String message) {
if (!quiet) {
printToConsole(message);
}
}
/// get key information
2022-09-13 13:32:13 +03:00
Future<void> collectYubiKeyInformation() async {
if (collectedYubiKeyInformation) {
return;
}
await tapDeviceButton();
var deviceInfo = find.byKey(app_keys.deviceInfoListTile);
if (deviceInfo.evaluate().isNotEmpty) {
ListTile lt = deviceInfo.evaluate().single.widget as ListTile;
yubiKeyName = (lt.title as Text).data;
var subtitle = (lt.subtitle as Text?)?.data;
if (subtitle != null) {
2023-01-11 12:04:15 +03:00
RegExpMatch? match = RegExp(r'S/N: (\d.*) F/W: (\d\.\d\.\d)')
.firstMatch(subtitle);
if (match != null) {
2023-01-11 12:04:15 +03:00
yubiKeySerialNumber = match.group(1);
yubiKeyFirmware = match.group(2);
} else {
2023-01-11 12:04:15 +03:00
match = RegExp(r'F/W: (\d\.\d\.\d)').firstMatch(subtitle);
if (match != null) {
2023-01-11 12:04:15 +03:00
yubiKeyFirmware = match.group(1);
}
}
}
}
// close the opened menu
2023-01-11 12:04:15 +03:00
await tapTopLeftCorner();
testLog(false,
'Connected YubiKey: $yubiKeySerialNumber/$yubiKeyFirmware - $yubiKeyName');
if (!approvedYubiKeys.contains(yubiKeySerialNumber)) {
2022-09-13 13:32:13 +03:00
if (yubiKeySerialNumber == null) {
expect(approvedYubiKeys.contains(yubiKeySerialNumber), equals(true),
reason: 'No YubiKey connected');
} else {
expect(approvedYubiKeys.contains(yubiKeySerialNumber), equals(true),
reason:
'YubiKey with S/N $yubiKeySerialNumber is not approved for integration tests.');
}
}
collectedYubiKeyInformation = true;
}
}
2022-09-13 13:32:13 +03:00
@isTest
2022-09-13 13:32:13 +03:00
void appTest(
String description,
WidgetTesterCallback callback, {
bool? skip,
Map startUpParams = const {},
}) {
testWidgets(description, (WidgetTester tester) async {
await tester.startUp(startUpParams);
await callback(tester);
});
}