mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
126 lines
4.2 KiB
Dart
126 lines
4.2 KiB
Dart
/*
|
|
* 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.
|
|
*/
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
import 'package:yubico_authenticator/core/state.dart';
|
|
import 'package:yubico_authenticator/oath/keys.dart' as keys;
|
|
|
|
import 'utils/oath_test_util.dart';
|
|
import 'utils/test_util.dart';
|
|
|
|
void main() {
|
|
var binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
|
|
|
|
group('OATH UI tests', () {
|
|
appTest('Menu items exist', (WidgetTester tester) async {
|
|
await tester.tapActionIconButton();
|
|
expect(find.byKey(keys.addAccountAction), findsOneWidget);
|
|
expect(find.byKey(keys.setOrManagePasswordAction), findsOneWidget);
|
|
expect(find.byKey(keys.resetAction), findsOneWidget);
|
|
|
|
// close dialog
|
|
await tester.tapTopLeftCorner();
|
|
});
|
|
});
|
|
|
|
group('Account tests', () {
|
|
appTest('Create OATH account', (WidgetTester tester) async {
|
|
// account with issuer
|
|
var testAccount = const Account(
|
|
issuer: 'IssuerForTests',
|
|
name: 'NameForTests',
|
|
secret: 'aaaaaaaaaaaaaaaa',
|
|
);
|
|
|
|
await tester.deleteAccount(testAccount);
|
|
await tester.addAccount(testAccount);
|
|
|
|
// account without issuer
|
|
testAccount = const Account(
|
|
name: 'NoIssuerName',
|
|
secret: 'bbbbbbbbbbbbbbbb',
|
|
);
|
|
|
|
await tester.deleteAccount(testAccount);
|
|
await tester.addAccount(testAccount);
|
|
});
|
|
|
|
/// deletes accounts created in previous test
|
|
appTest('Delete OATH account', (WidgetTester tester) async {
|
|
var testAccount =
|
|
const Account(issuer: 'IssuerForTests', name: 'NameForTests');
|
|
|
|
await tester.deleteAccount(testAccount);
|
|
expect(await tester.findAccount(testAccount), isNull);
|
|
|
|
testAccount = const Account(issuer: null, name: 'NoIssuerName');
|
|
await tester.deleteAccount(testAccount);
|
|
expect(await tester.findAccount(testAccount), isNull);
|
|
});
|
|
|
|
/// adds an account, renames, verifies
|
|
appTest('Rename OATH account', (WidgetTester tester) async {
|
|
var testAccount =
|
|
const Account(issuer: 'IssuerToRename', name: 'NameToRename');
|
|
|
|
/// delete account if it exists
|
|
await tester.deleteAccount(testAccount);
|
|
await tester.deleteAccount(
|
|
const Account(issuer: 'RenamedIssuer', name: 'RenamedName'));
|
|
|
|
await tester.addAccount(testAccount);
|
|
await tester.renameAccount(testAccount, 'RenamedIssuer', 'RenamedName');
|
|
});
|
|
});
|
|
|
|
group('Password tests', () {
|
|
/// note that the password groups should be run as whole
|
|
|
|
/// TODO implement test for password replacement
|
|
/// appTest('OATH: replace oath password', (WidgetTester tester) async {
|
|
/// await tester.replaceOathPassword('aaa111', 'bbb222');
|
|
/// });
|
|
|
|
// cannot restart the app on Android to be able to unlock
|
|
group('Desktop password tests', skip: isAndroid, () {
|
|
var testPassword = 'testPassword';
|
|
|
|
appTest('Set OATH password', (WidgetTester tester) async {
|
|
await tester.setOathPassword(testPassword);
|
|
});
|
|
|
|
appTest('Remove OATH password', (WidgetTester tester) async {
|
|
await tester.unlockOathSession(testPassword);
|
|
await tester.removeOathPassword(testPassword);
|
|
});
|
|
});
|
|
|
|
group('All password tests', () {
|
|
var testPassword = 'testPasswordX';
|
|
|
|
appTest('Set OATH password', (WidgetTester tester) async {
|
|
await tester.setOathPassword(testPassword);
|
|
});
|
|
|
|
appTest('Remove OATH password', (WidgetTester tester) async {
|
|
await tester.removeOathPassword(testPassword);
|
|
});
|
|
});
|
|
});
|
|
}
|