2020-03-20 13:28:31 -07:00
|
|
|
import { expect } from 'chai';
|
2023-12-13 13:01:03 -08:00
|
|
|
import { BaseWindow, BrowserWindow } from 'electron/main';
|
2023-06-15 16:42:27 +02:00
|
|
|
import { once } from 'node:events';
|
2019-03-10 15:38:44 -07:00
|
|
|
|
2023-12-13 13:01:03 -08:00
|
|
|
async function ensureWindowIsClosed (window: BaseWindow | null) {
|
2019-05-29 13:38:14 -07:00
|
|
|
if (window && !window.isDestroyed()) {
|
2023-12-13 13:01:03 -08:00
|
|
|
if (window instanceof BrowserWindow && window.webContents && !window.webContents.isDestroyed()) {
|
2019-05-29 13:38:14 -07: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 15:53:53 -08:00
|
|
|
const isClosed = once(window, 'closed');
|
2020-03-20 13:28:31 -07:00
|
|
|
window.destroy();
|
|
|
|
await isClosed;
|
2019-05-29 13:38:14 -07: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 13:28:31 -07:00
|
|
|
window.destroy();
|
2019-05-29 13:38:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 15:38:44 -07:00
|
|
|
export const closeWindow = async (
|
2023-12-13 13:01:03 -08:00
|
|
|
window: BaseWindow | null = null,
|
2019-03-10 15:38:44 -07:00
|
|
|
{ assertNotWindows } = { assertNotWindows: true }
|
|
|
|
) => {
|
2020-03-20 13:28:31 -07:00
|
|
|
await ensureWindowIsClosed(window);
|
2019-03-10 15:38:44 -07:00
|
|
|
|
|
|
|
if (assertNotWindows) {
|
2024-01-18 14:04:43 -05: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 16:08:11 -04:00
|
|
|
}
|
2019-03-10 15:38:44 -07:00
|
|
|
}
|
2020-03-20 13:28:31 -07:00
|
|
|
};
|
2019-06-11 16:35:58 -07:00
|
|
|
|
2019-11-01 13:37:02 -07:00
|
|
|
export async function closeAllWindows () {
|
2023-12-13 13:01:03 -08:00
|
|
|
for (const w of BaseWindow.getAllWindows()) {
|
2020-03-20 13:28:31 -07:00
|
|
|
await closeWindow(w, { assertNotWindows: false });
|
2019-06-11 16:35:58 -07:00
|
|
|
}
|
|
|
|
}
|