mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 08:22:16 +03:00
154 lines
5.9 KiB
Dart
154 lines
5.9 KiB
Dart
/*
|
|
* Copyright (C) 2023 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.
|
|
*/
|
|
|
|
@Tags(['desktop', 'android'])
|
|
library;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
import 'package:yubico_authenticator/app/views/keys.dart';
|
|
import 'package:yubico_authenticator/core/state.dart';
|
|
|
|
import 'utils/keyless_test_util.dart';
|
|
import 'utils/test_util.dart';
|
|
|
|
void main() {
|
|
var binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
|
|
|
|
group('Startup', () {
|
|
appTestKeyless('App starts', (WidgetTester tester) async {},
|
|
tags: 'minimal');
|
|
});
|
|
group('Settings', () {
|
|
appTestKeyless('Click through all Themes', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(find.byKey(settingDrawerIcon).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(find.byKey(themeModeSetting));
|
|
await tester.shortWait();
|
|
await tester
|
|
.tap(find.byKey(themeModeOption(ThemeMode.light)).hitTestable());
|
|
await tester.longWait();
|
|
await tester.tap(find.byKey(themeModeSetting));
|
|
await tester.shortWait();
|
|
await tester
|
|
.tap(find.byKey(themeModeOption(ThemeMode.dark)).hitTestable());
|
|
await tester.longWait();
|
|
await tester.tap(find.byKey(themeModeSetting));
|
|
await tester.shortWait();
|
|
await tester
|
|
.tap(find.byKey(themeModeOption(ThemeMode.system)).hitTestable());
|
|
await tester.longWait();
|
|
});
|
|
});
|
|
group('Help and about', () {
|
|
var helpDrawerButton = find.byKey(helpDrawerIcon).hitTestable();
|
|
|
|
appTestKeyless('Check Licenses view', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
var licensesButtonText = find.byKey(licensesButton).hitTestable();
|
|
await tester.tap(licensesButtonText);
|
|
await tester.shortWait();
|
|
|
|
/// TODO: do want to click all licenses and see that they show?
|
|
});
|
|
group('Opening of URLs', () {
|
|
appTestKeyless('TOS link', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
if (isAndroid) {
|
|
expect(find.byKey(tosButton).hitTestable(), findsOneWidget);
|
|
} else {
|
|
await tester.tap(find.byKey(tosButton).hitTestable());
|
|
await tester.longWait();
|
|
}
|
|
});
|
|
appTestKeyless('Privacy link', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
if (isAndroid) {
|
|
expect(find.byKey(privacyButton).hitTestable(), findsOneWidget);
|
|
} else {
|
|
await tester.tap(find.byKey(privacyButton).hitTestable());
|
|
await tester.longWait();
|
|
}
|
|
});
|
|
appTestKeyless('Feedback link', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
if (isAndroid) {
|
|
expect(find.byKey(userGuideButton).hitTestable(), findsOneWidget);
|
|
} else {
|
|
await tester.tap(find.byKey(userGuideButton).hitTestable());
|
|
await tester.longWait();
|
|
}
|
|
});
|
|
appTestKeyless('Help link', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.longWait();
|
|
if (isAndroid) {
|
|
expect(find.byKey(helpButton).hitTestable(), findsOneWidget);
|
|
} else {
|
|
await tester.tap(find.byKey(helpButton).hitTestable());
|
|
await tester.longWait();
|
|
}
|
|
});
|
|
});
|
|
group('Troubleshooting', () {
|
|
appTestKeyless('Diagnostics Button', skip: isAndroid,
|
|
(WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
await tester.tap(find.byKey(diagnosticsChip).hitTestable());
|
|
await tester.longWait();
|
|
});
|
|
appTestKeyless('Log button', (WidgetTester tester) async {
|
|
await tester.tap(find.byKey(actionsIconButtonKey).hitTestable());
|
|
await tester.shortWait();
|
|
await tester.tap(helpDrawerButton);
|
|
await tester.shortWait();
|
|
await tester.tap(find.byKey(logChip).hitTestable());
|
|
await tester.longWait();
|
|
});
|
|
// appTestKeyless('Allow screenshots', (WidgetTester tester) async {
|
|
// /// Pausing test until we have Android CI.
|
|
// await tester.tap(helpDrawerButton);
|
|
// await tester.shortWait();
|
|
// await tester.tap(find.byKey(screenshotChip).hitTestable());
|
|
// await tester.longWait();
|
|
// await tester.tap(find.byKey(screenshotChip).hitTestable());
|
|
// await tester.shortWait();
|
|
// });
|
|
});
|
|
});
|
|
}
|