Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: tests/html/keyboard_event_test.dart

Issue 23455033: Fully polyfill KeyEvent so that you can programmatically create your own "keyboard" events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/html/keyboard_event_test.dart
diff --git a/tests/html/keyboard_event_test.dart b/tests/html/keyboard_event_test.dart
index f7427351fda8d0cc4e5e40d7ceafd66b322f7534..01aff7633858e21b98d22b05eabe523740e311aa 100644
--- a/tests/html/keyboard_event_test.dart
+++ b/tests/html/keyboard_event_test.dart
@@ -18,15 +18,77 @@ main() {
var event = new KeyboardEvent('keyup');
});
test('keys', () {
- // This test currently is pretty much a no-op because we
- // can't (right now) construct KeyboardEvents with specific keycode/charcode
- // values (a KeyboardEvent can be "init"-ed but not all the information can
- // be programmatically populated. It exists as an example for how to use
- // KeyboardEventController more than anything else.
- KeyboardEventStream.onKeyDown(document.body).listen(
+ var subscription = KeyboardEventStream.onKeyDown(document.body).listen(
keydownHandlerTest);
- KeyEvent.keyDownEvent.forTarget(document.body).listen(keydownHandlerTest);
- document.body.onKeyDown.listen((e) => print('regular listener'));
+ var subscription2 = KeyEvent.keyDownEvent.forTarget(document.body).listen(
+ keydownHandlerTest);
+ var subscription3 = document.body.onKeyDown.listen(
+ (e) => print('regular listener'));
+ subscription.cancel();
+ subscription2.cancel();
+ subscription3.cancel();
+ });
+
+ test('constructKeyEvent', () {
+ var stream = KeyEvent.keyPressEvent.forTarget(document.body);
+ var subscription = stream.listen(expectAsync1((keyEvent) {
+ expect(keyEvent.charCode, 97);
+ expect(keyEvent.keyCode, 65);
+ }));
+ var k = new KeyEvent('keypress', keyCode: 65, charCode: 97);
+ stream.add(k);
+ subscription.cancel();
+ // Capital "A":
+ stream.add(new KeyEvent('keydown', keyCode: 16, charCode: 0));
+
+ subscription = stream.listen(expectAsync1((keyEvent) {
+ expect(keyEvent.charCode, 65);
+ expect(keyEvent.keyCode, 65);
+ }));
+ stream.add(new KeyEvent('keypress', keyCode: 65, charCode: 65));
+ subscription.cancel();
+ });
+
+ test('KeyEventSequence', () {
+ // Press "?" by simulating "shift" and then the key that has "/" and "?" on
+ // it.
+ var streamDown = KeyEvent.keyDownEvent.forTarget(document.body);
+ var streamPress = KeyEvent.keyPressEvent.forTarget(document.body);
+ var streamUp = KeyEvent.keyUpEvent.forTarget(document.body);
+
+ var subscription = streamDown.listen(expectAsync1((keyEvent) {
+ expect(keyEvent.keyCode, isIn([16, 191]));
+ expect(keyEvent.charCode, 0);
+ }, count: 2));
+
+ var subscription2 = streamPress.listen(expectAsync1((keyEvent) {
+ expect(keyEvent.keyCode, 23);
+ expect(keyEvent.charCode, 63);
+ }));
+
+ var subscription3 = streamUp.listen(expectAsync1((keyEvent) {
+ expect(keyEvent.keyCode, isIn([16, 191]));
+ expect(keyEvent.charCode, 0);
+ }, count: 2));
+
+ streamDown.add(new KeyEvent('keydown', keyCode: 16, charCode: 0));
+ streamDown.add(new KeyEvent('keydown', keyCode: 191, charCode: 0));
+
+ streamPress.add(new KeyEvent('keypress', keyCode: 23, charCode: 63));
+
+ streamUp.add(new KeyEvent('keyup', keyCode: 191, charCode: 0));
+ streamUp.add(new KeyEvent('keyup', keyCode: 16, charCode: 0));
+ subscription.cancel();
+ subscription2.cancel();
+ subscription3.cancel();
+ });
+
+ test('KeyEventKeyboardEvent', () {
+ window.onKeyDown.listen(expectAsync1((KeyboardEvent event) {
+ expect(event.keyCode, 16);
+ }));
+ var streamDown = KeyEvent.keyDownEvent.forTarget(document.body);
+ streamDown.add(new KeyEvent('keydown', keyCode: 16, charCode: 0));
});
}

Powered by Google App Engine
This is Rietveld 408576698