test: implement select all test for no-styled text

This commit is contained in:
Lucas.Xu 2022-08-15 16:48:33 +08:00
parent e926c89548
commit c732f4e908
2 changed files with 41 additions and 0 deletions

View File

@ -94,6 +94,9 @@ extension on LogicalKeyboardKey {
if (this == LogicalKeyboardKey.keyZ) {
return PhysicalKeyboardKey.keyZ;
}
if (this == LogicalKeyboardKey.keyA) {
return PhysicalKeyboardKey.keyA;
}
throw UnimplementedError();
}
}

View File

@ -0,0 +1,38 @@
import 'package:flowy_editor/flowy_editor.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import '../../infra/test_editor.dart';
void main() async {
setUpAll(() {
TestWidgetsFlutterBinding.ensureInitialized();
});
group('select_all_handler_test.dart', () {
testWidgets('Presses Command + A in small document', (tester) async {
await _testSelectAllHandler(tester, 10);
});
testWidgets('Presses Command + A in small document', (tester) async {
await _testSelectAllHandler(tester, 1000);
});
});
}
Future<void> _testSelectAllHandler(WidgetTester tester, int lines) async {
const text = 'Welcome to Appflowy 😁';
final editor = tester.editor;
for (var i = 0; i < lines; i++) {
editor.insertTextNode(text);
}
await editor.startTesting();
await editor.pressLogicKey(LogicalKeyboardKey.keyA, isMetaPressed: true);
expect(
editor.documentSelection,
Selection(
start: Position(path: [0], offset: 0),
end: Position(path: [lines - 1], offset: text.length),
),
);
}