mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
test: implement select all test for no-styled text
This commit is contained in:
parent
e926c89548
commit
c732f4e908
@ -94,6 +94,9 @@ extension on LogicalKeyboardKey {
|
||||
if (this == LogicalKeyboardKey.keyZ) {
|
||||
return PhysicalKeyboardKey.keyZ;
|
||||
}
|
||||
if (this == LogicalKeyboardKey.keyA) {
|
||||
return PhysicalKeyboardKey.keyA;
|
||||
}
|
||||
throw UnimplementedError();
|
||||
}
|
||||
}
|
||||
|
@ -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),
|
||||
),
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user