Spaces:
Running
Running
File size: 2,517 Bytes
30c32c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
const test = require('tap').test;
const Keyboard = require('../../src/io/keyboard');
const Runtime = require('../../src/engine/runtime');
test('spec', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
t.type(k, 'object');
t.type(k.postData, 'function');
t.type(k.getKeyIsDown, 'function');
t.end();
});
test('space key', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: ' ',
isDown: true
});
t.strictDeepEquals(k._keysPressed, ['space']);
t.strictEquals(k.getKeyIsDown('space'), true);
t.strictEquals(k.getKeyIsDown('any'), true);
t.end();
});
test('letter key', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: 'a',
isDown: true
});
t.strictDeepEquals(k._keysPressed, ['A']);
t.strictEquals(k.getKeyIsDown(65), true);
t.strictEquals(k.getKeyIsDown('a'), true);
t.strictEquals(k.getKeyIsDown('A'), true);
t.strictEquals(k.getKeyIsDown('any'), true);
t.end();
});
test('number key', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: '1',
isDown: true
});
t.strictDeepEquals(k._keysPressed, ['1']);
t.strictEquals(k.getKeyIsDown(49), true);
t.strictEquals(k.getKeyIsDown('1'), true);
t.strictEquals(k.getKeyIsDown('any'), true);
t.end();
});
test('non-english key', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: '日',
isDown: true
});
t.strictDeepEquals(k._keysPressed, ['日']);
t.strictEquals(k.getKeyIsDown('日'), true);
t.strictEquals(k.getKeyIsDown('any'), true);
t.end();
});
/* TW: This test is disabled because we intentionally add support for modifier keys.
test('ignore modifier key', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: 'Shift',
isDown: true
});
t.strictDeepEquals(k._keysPressed, []);
t.strictEquals(k.getKeyIsDown('any'), false);
t.end();
});
*/
test('keyup', t => {
const rt = new Runtime();
const k = new Keyboard(rt);
k.postData({
key: 'ArrowLeft',
isDown: true
});
k.postData({
key: 'ArrowLeft',
isDown: false
});
t.strictDeepEquals(k._keysPressed, []);
t.strictEquals(k.getKeyIsDown('left arrow'), false);
t.strictEquals(k.getKeyIsDown('any'), false);
t.end();
});
|