-
Notifications
You must be signed in to change notification settings - Fork 38
/
test.js
179 lines (141 loc) · 4.43 KB
/
test.js
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
'use strict';
const {BrowserWindow, app} = require('electron');
const test = require('tape-async');
const {appReady, windowVisible, windowClosed} = require('p-electron');
const pTimeout = require('p-timeout');
const delay = require('delay');
const robot = require('robotjs');
const shortcuts = require('.');
let winHolder;
test('exports an shortcuts object', async t => {
t.is(typeof shortcuts, 'object');
});
test(
'appReady return a promise that resolve when electron app is ready',
beforeAll
);
test('shortcut is called on keydown only', async t => {
let called = 0;
shortcuts.register(winHolder, 'Alt+R', () => {
called++;
});
robot.keyTap('r', ['alt']);
await delay(400);
shortcuts.unregister(winHolder, 'Alt+R');
t.is(called, 1);
});
test('accelerator can be array of strings', async t => {
let called = 0;
shortcuts.register(winHolder, ['Ctrl+X', 'Ctrl+Y'], () => {
called++;
});
robot.keyTap('x', ['control']);
robot.keyTap('y', ['control']);
await delay(400);
shortcuts.unregister(winHolder, ['Ctrl+X', 'Ctrl+Y']);
t.is(called, 2);
});
test('shortcut is called', async t => {
const shortcutPressed = promiseForShortcutPressed('Alt+Ctrl+U');
robot.keyTap('u', ['alt', 'control']);
t.true(await shortcutWasPressed(shortcutPressed));
});
test('shortcut is not called on closed windows', async t => {
const win = new BrowserWindow();
win.loadURL(`file://${__dirname}/example.html`);
await windowVisible(win);
const shortcutPressed = promiseForShortcutPressedOnWindow(win, 'Ctrl+A');
win.close();
await windowClosed(win);
robot.keyTap('a', ['control']);
const err = await shortcutWasNotPressed(shortcutPressed).catch(error => error);
t.equal(err.message, 'Promise timed out after 400 milliseconds');
});
test('shortcut is not called after unregister', async t => {
const shortcutPressed = promiseForShortcutPressed('Ctrl+A');
shortcuts.unregister(winHolder, 'Ctrl+A');
robot.keyTap('a', ['control']);
const err = await shortcutWasNotPressed(shortcutPressed).catch(error => error);
t.equal(err.message, 'Promise timed out after 400 milliseconds');
});
test('shortcuts are not called after unregister', async t => {
const shortcutPressed = promiseForShortcutPressed(['Ctrl+X', 'Ctrl+Y']);
shortcuts.unregister(winHolder, ['Ctrl+X', 'Ctrl+Y']);
robot.keyTap('x', ['control']);
robot.keyTap('y', ['control']);
const err = await shortcutWasNotPressed(shortcutPressed).catch(error => error);
console.log(err);
t.equal(err.message, 'Promise timed out after 400 milliseconds');
});
test('app shortcut are called on every windows', async t => {
winHolder.hide();
const win = new BrowserWindow({show: false});
const win2 = new BrowserWindow({show: false});
win.loadURL(`file://${__dirname}/example.html`);
win2.loadURL(`file://${__dirname}/example.html`);
let called = 0;
shortcuts.register('Alt+R', () => {
if (called === 0) {
win.close();
}
if (called === 1) {
win2.close();
}
called++;
});
win.show();
win.setAlwaysOnTop(true);
await windowVisible(win);
await delay(500);
robot.keyTap('r', ['alt']);
await windowClosed(win);
win2.show();
win2.setAlwaysOnTop(true);
await windowVisible(win2);
await delay(500);
robot.keyTap('r', ['alt']);
await windowClosed(win2);
winHolder.show();
t.is(called, 2);
t.end();
});
/* This test must remain the last one in file */
test('app quit', t => {
app.on('window-all-closed', () => app.quit());
t.end();
for (const w of BrowserWindow.getAllWindows()) {
w.close();
}
});
async function beforeAll() {
await appReady();
// We could create a window, because the app is ready
winHolder = new BrowserWindow();
winHolder.loadURL(`file://${__dirname}/example.html`);
await windowVisible(winHolder);
}
function promiseForShortcutPressedOnWindow(win, key) {
const destroy = () => shortcuts.unregister(win, key);
const result = new Promise(resolve =>
shortcuts.register(win, key, resolve)
).then(destroy);
result.destroy = destroy;
return result;
}
function promiseForShortcutPressed(key) {
const destroy = () => shortcuts.unregister(winHolder, key);
const result = new Promise(resolve =>
shortcuts.register(winHolder, key, resolve)
).then(destroy);
result.destroy = destroy;
return result;
}
async function shortcutWasPressed(shortcutPressed) {
return undefined === (await pTimeout(shortcutPressed, 400));
}
function shortcutWasNotPressed(shortcutPressed) {
return pTimeout(shortcutPressed, 400).catch(error => {
shortcutPressed.destroy();
throw error;
});
}