mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
71 lines
2.3 KiB
JavaScript
71 lines
2.3 KiB
JavaScript
const {_electron: electron} = require('playwright');
|
|
const {strict: assert} = require('assert');
|
|
|
|
// Playwright has EXPERIMENTAL electron support.
|
|
(async () => {
|
|
const electronApp = await electron.launch({args: ['.']});
|
|
|
|
/**
|
|
* App main window state
|
|
* @type {{isVisible: boolean; isDevToolsOpened: boolean; isCrashed: boolean}}
|
|
*/
|
|
const windowState = await electronApp.evaluate(({BrowserWindow}) => {
|
|
const mainWindow = BrowserWindow.getAllWindows()[0];
|
|
|
|
const getState = () => ({
|
|
isVisible: mainWindow.isVisible(),
|
|
isDevToolsOpened: mainWindow.webContents.isDevToolsOpened(),
|
|
isCrashed: mainWindow.webContents.isCrashed(),
|
|
});
|
|
|
|
return new Promise(resolve => {
|
|
if (mainWindow.isVisible()) {
|
|
resolve(getState());
|
|
} else mainWindow.once('ready-to-show', () => setTimeout(() => resolve(getState()), 0));
|
|
});
|
|
});
|
|
|
|
// Check main window state
|
|
assert.ok(windowState.isVisible, 'Main window not visible');
|
|
assert.ok(!windowState.isDevToolsOpened, 'DevTools opened');
|
|
assert.ok(!windowState.isCrashed, 'Window crashed');
|
|
|
|
/**
|
|
* Rendered Main window web-page
|
|
* @type {Page}
|
|
*/
|
|
const page = await electronApp.firstWindow();
|
|
|
|
// Check web-page content
|
|
const element = await page.$('#app', {strict: true});
|
|
assert.notStrictEqual(element, null, "Can't find root element");
|
|
assert.notStrictEqual((await element.innerHTML()).trim(), '', 'Window content is empty');
|
|
|
|
// Checking the framework.
|
|
// It is assumed that on the main screen there is a `<button>` that changes its contents after clicking.
|
|
const button = await page.$('button');
|
|
const originalBtnText = await button.textContent();
|
|
|
|
await button.click();
|
|
const newBtnText = await button.textContent();
|
|
|
|
assert.ok(
|
|
originalBtnText !== newBtnText,
|
|
'The button did not change the contents after clicking',
|
|
);
|
|
|
|
// Check Preload script
|
|
const renderedExposedApi = await page.evaluate(() => globalThis.electron);
|
|
const realVersions = await electronApp.evaluate(() => process.versions);
|
|
|
|
assert.notStrictEqual(
|
|
renderedExposedApi,
|
|
undefined,
|
|
'In renderer `globalThis.electron` is undefined',
|
|
);
|
|
assert.strictEqual(renderedExposedApi?.versions?.electron, realVersions.electron);
|
|
|
|
// Close app
|
|
await electronApp.close();
|
|
})();
|