forked from geo-tp/Alpha-Core-Keira3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: replace Spectron with Playwright (azerothcore#1583)
- Loading branch information
1 parent
1a385fc
commit 0ce4934
Showing
11 changed files
with
1,619 additions
and
2,995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ testem.log | |
/e2e/*.js | ||
!/e2e/protractor.conf.js | ||
/e2e/*.map | ||
/e2e/tracing | ||
|
||
# System Files | ||
.DS_Store | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { BrowserContext, ElectronApplication, Page, _electron as electron } from 'playwright'; | ||
import { test, expect } from '@playwright/test'; | ||
const PATH = require('path'); | ||
|
||
test.describe('Check Home Page', async () => { | ||
let app: ElectronApplication; | ||
let firstWindow: Page; | ||
let context: BrowserContext; | ||
|
||
test.beforeAll(async () => { | ||
app = await electron.launch({ args: [PATH.join(__dirname, '../main.js'), PATH.join(__dirname, '../app/package.json')] }); | ||
context = app.context(); | ||
await context.tracing.start({ screenshots: true, snapshots: true }); | ||
firstWindow = await app.firstWindow(); | ||
}); | ||
|
||
test('Launch electron app', async () => { | ||
const windowState: { isVisible: boolean; isDevToolsOpened: boolean; isCrashed: boolean } = await app.evaluate(async (process) => { | ||
const mainWindow = process.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)); | ||
} | ||
}); | ||
}); | ||
|
||
expect(windowState.isVisible).toBeTruthy(); | ||
expect(windowState.isDevToolsOpened).toBeFalsy(); | ||
expect(windowState.isCrashed).toBeFalsy(); | ||
}); | ||
|
||
test('sqlite should correctly work', async () => { | ||
const sleep = (time) => new Promise((r) => setTimeout(r, time)); | ||
await sleep(500); | ||
const selector = '#sqlite-e2e-test'; | ||
const expectedText = 'Tricks and Treats of Azeroth'; | ||
const element = await firstWindow.$(selector); | ||
const text = await element.getAttribute('e2e'); | ||
expect(text).toEqual(expectedText); | ||
}); | ||
|
||
test.afterAll(async () => { | ||
await context.tracing.stop({ path: 'e2e/tracing/trace.zip' }); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** @type {import('@playwright/test').PlaywrightTestConfig} */ | ||
const config = { | ||
testDir: '.', | ||
timeout: 45000, | ||
outputDir: './screenshots', | ||
use: { | ||
headless: false, | ||
viewport: { width: 1280, height: 720 }, | ||
launchOptions: { | ||
slowMo: 1000, | ||
}, | ||
trace: 'on', | ||
}, | ||
expect: { | ||
toMatchSnapshot: { threshold: 0.2 }, | ||
}, | ||
}; | ||
|
||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.