-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey-handler.test.ts
51 lines (44 loc) · 1.94 KB
/
key-handler.test.ts
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
import 'mocha';
import { expect } from 'chai';
import { createKeysFromKeyString, createKeyStringFromKeyboardEvent, createKeyStringFromKeys } from './key-handler.js';
describe('KeyHandler tests', () => {
describe('createKeyStringFromKeys() tests', () => {
it('createKeyStringFromKeys() produces a sorted key string', () => {
expect(createKeyStringFromKeys(['z'])).equals('z');
});
it('createKeyStringFromKeys() with a modifier produces a sorted key string', () => {
const expected = 'Alt+Shift+z';
expect(createKeyStringFromKeys(['Shift', 'Alt', 'z'])).equals(expected);
expect(createKeyStringFromKeys(['z', 'Alt', 'Shift'])).equals(expected);
});
it('createKeyStringFromKeys() must have exactly one non-modifier', () => {
expect(createKeyStringFromKeys(['Alt', 'Meta'])).equals(null);
expect(createKeyStringFromKeys(['a', 'z'])).equals(null);
});
});
describe('createKeyStringFromKeyboardEvent() tests', () => {
it('createKeyStringFromKeyboardEvent() produces a sorted key string', () => {
expect(createKeyStringFromKeyboardEvent({key: 'c'} as KeyboardEvent)).equals('c');
});
it('createKeyStringFromKeyboardEvent() with modifiers produces a sorted key string', () => {
const fakeKeyboardEvent = {
altKey: true,
ctrlKey: true,
metaKey: true,
shiftKey: true,
key: 'z',
};
expect(createKeyStringFromKeyboardEvent(fakeKeyboardEvent as KeyboardEvent))
.equals('Alt+Control+Meta+Shift+z');
});
});
describe('createKeysFromKeyString() tests', () => {
it('createKeysFromKeyString() produces a keys array', () => {
expect(createKeysFromKeyString('a+z')).to.have.members(['a', 'z']).and.length(2);
});
it('createKeysFromKeyString() with modifiers produces a keys array', () => {
expect(createKeysFromKeyString('Alt+Shift+z'))
.to.have.members(['z', 'Alt', 'Shift']).and.length(3);
});
})
});