2020-03-20 20:28:31 +00:00
|
|
|
import { expect } from 'chai';
|
2023-12-13 21:01:03 +00:00
|
|
|
import { BaseWindow, BrowserWindow } from 'electron/main';
|
2023-06-15 14:42:27 +00:00
|
|
|
import { once } from 'node:events';
|
2019-03-10 22:38:44 +00:00
|
|
|
|
2023-12-13 21:01:03 +00:00
|
|
|
async function ensureWindowIsClosed (window: BaseWindow | null) {
|
2019-05-29 20:38:14 +00:00
|
|
|
if (window && !window.isDestroyed()) {
|
2023-12-13 21:01:03 +00:00
|
|
|
if (window instanceof BrowserWindow && window.webContents && !window.webContents.isDestroyed()) {
|
2019-05-29 20:38:14 +00:00
|
|
|
// If a window isn't destroyed already, and it has non-destroyed WebContents,
|
|
|
|
// then calling destroy() won't immediately destroy it, as it may have
|
|
|
|
// <webview> children which need to be destroyed first. In that case, we
|
|
|
|
// await the 'closed' event which signals the complete shutdown of the
|
|
|
|
// window.
|
2023-02-23 23:53:53 +00:00
|
|
|
const isClosed = once(window, 'closed');
|
2020-03-20 20:28:31 +00:00
|
|
|
window.destroy();
|
|
|
|
await isClosed;
|
2019-05-29 20:38:14 +00:00
|
|
|
} else {
|
|
|
|
// If there's no WebContents or if the WebContents is already destroyed,
|
|
|
|
// then the 'closed' event has already been emitted so there's nothing to
|
|
|
|
// wait for.
|
2020-03-20 20:28:31 +00:00
|
|
|
window.destroy();
|
2019-05-29 20:38:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 22:38:44 +00:00
|
|
|
export const closeWindow = async (
|
2023-12-13 21:01:03 +00:00
|
|
|
window: BaseWindow | null = null,
|
2019-03-10 22:38:44 +00:00
|
|
|
{ assertNotWindows } = { assertNotWindows: true }
|
|
|
|
) => {
|
2020-03-20 20:28:31 +00:00
|
|
|
await ensureWindowIsClosed(window);
|
2019-03-10 22:38:44 +00:00
|
|
|
|
|
|
|
if (assertNotWindows) {
|
2024-01-18 19:04:43 +00:00
|
|
|
let windows = BaseWindow.getAllWindows();
|
|
|
|
if (windows.length > 0) {
|
|
|
|
setTimeout(async () => {
|
|
|
|
// Wait until next tick to assert that all windows have been closed.
|
|
|
|
windows = BaseWindow.getAllWindows();
|
|
|
|
try {
|
|
|
|
expect(windows).to.have.lengthOf(0);
|
|
|
|
} finally {
|
|
|
|
for (const win of windows) {
|
|
|
|
await ensureWindowIsClosed(win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2019-04-16 20:08:11 +00:00
|
|
|
}
|
2019-03-10 22:38:44 +00:00
|
|
|
}
|
2020-03-20 20:28:31 +00:00
|
|
|
};
|
2019-06-11 23:35:58 +00:00
|
|
|
|
2019-11-01 20:37:02 +00:00
|
|
|
export async function closeAllWindows () {
|
2023-12-13 21:01:03 +00:00
|
|
|
for (const w of BaseWindow.getAllWindows()) {
|
2020-03-20 20:28:31 +00:00
|
|
|
await closeWindow(w, { assertNotWindows: false });
|
2019-06-11 23:35:58 +00:00
|
|
|
}
|
|
|
|
}
|