logseq/e2e-tests/utils.ts

196 lines
6.2 KiB
TypeScript
Raw Normal View History

2021-11-29 04:09:01 +00:00
import { Page, Locator } from 'playwright'
import { expect } from '@playwright/test'
import * as process from 'process'
2021-11-29 04:09:01 +00:00
export const IsMac = process.platform === 'darwin'
export const IsLinux = process.platform === 'linux'
export const IsWindows = process.platform === 'win32'
export function randomString(length: number) {
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let result = '';
const charactersLength = characters.length;
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}
export async function createRandomPage(page: Page) {
const randomTitle = randomString(20)
// Click #search-button
await page.click('#search-button')
// Fill [placeholder="Search or create page"]
await page.fill('[placeholder="Search or create page"]', randomTitle)
// Click text=/.*New page: "new page".*/
await page.click('text=/.*New page: ".*/')
// wait for textarea of first block
await page.waitForSelector('textarea >> nth=0', { state: 'visible' })
return randomTitle;
}
2022-02-17 10:54:30 +00:00
export async function createPage(page: Page, page_name: string) {// Click #search-button
await page.click('#search-button')
// Fill [placeholder="Search or create page"]
await page.fill('[placeholder="Search or create page"]', page_name)
// Click text=/.*New page: "new page".*/
await page.click('text=/.*New page: ".*/')
// wait for textarea of first block
await page.waitForSelector('textarea >> nth=0', { state: 'visible' })
2022-02-17 10:54:30 +00:00
return page_name;
}
2022-02-21 00:34:56 +00:00
export async function searchAndJumpToPage(page: Page, pageTitle: string) {
await page.click('#search-button')
await page.fill('[placeholder="Search or create page"]', pageTitle)
await page.waitForSelector(`[data-page-ref="${pageTitle}"]`, { state: 'visible' })
await page.click(`[data-page-ref="${pageTitle}"]`)
return pageTitle;
}
2021-12-20 08:21:07 +00:00
/**
2021-12-21 00:29:22 +00:00
* Locate the last block in the inner editor
2021-12-20 08:21:07 +00:00
* @param page The Playwright Page object.
* @returns The locator of the last block.
*/
export async function lastBlock(page: Page): Promise<Locator> {
// discard any popups
await page.keyboard.press('Escape')
// click last block
await page.click('.page-blocks-inner .ls-block >> nth=-1')
// wait for textarea
await page.waitForSelector('textarea >> nth=0', { state: 'visible' })
return page.locator('textarea >> nth=0')
2021-12-21 00:29:22 +00:00
}
/**
* Press Enter and create the next block.
* @param page The Playwright Page object.
*/
export async function enterNextBlock(page: Page): Promise<Locator> {
let blockCount = await page.locator('.page-blocks-inner .ls-block').count()
await page.press('textarea >> nth=0', 'Enter')
await page.waitForSelector(`.ls-block >> nth=${blockCount} >> textarea`, { state: 'visible' })
return page.locator('textarea >> nth=0')
}
2021-12-20 08:21:07 +00:00
/**
2021-12-21 00:29:22 +00:00
* Create and locate a new block at the end of the inner editor
2022-01-07 04:09:27 +00:00
* @param page The Playwright Page object
2021-12-20 08:21:07 +00:00
* @returns The locator of the last block
*/
2021-12-21 00:29:22 +00:00
export async function newInnerBlock(page: Page): Promise<Locator> {
await lastBlock(page)
await page.press('textarea >> nth=0', 'Enter')
2021-12-21 00:29:22 +00:00
return page.locator('textarea >> nth=0')
2021-12-21 00:29:22 +00:00
}
export async function newBlock(page: Page): Promise<Locator> {
let blockNumber = await page.locator('.ls-block').count()
const prev = await lastBlock(page)
await page.press('textarea >> nth=0', 'Enter')
await page.waitForSelector(`.ls-block >> nth=${blockNumber} >> textarea`, { state: 'visible' })
return page.locator('textarea >> nth=0')
}
2021-12-11 15:50:17 +00:00
export async function escapeToCodeEditor(page: Page): Promise<void> {
await page.press('.block-editor textarea', 'Escape')
await page.waitForSelector('.CodeMirror pre', { state: 'visible' })
2021-12-11 15:50:17 +00:00
await page.waitForTimeout(300)
await page.click('.CodeMirror pre')
await page.waitForTimeout(300)
2021-12-11 15:50:17 +00:00
await page.waitForSelector('.CodeMirror textarea', { state: 'visible' })
2021-12-11 15:50:17 +00:00
}
export async function escapeToBlockEditor(page: Page): Promise<void> {
await page.waitForTimeout(300)
await page.click('.CodeMirror pre')
await page.waitForTimeout(300)
2021-12-11 15:50:17 +00:00
await page.press('.CodeMirror textarea', 'Escape')
await page.waitForTimeout(300)
2021-12-11 15:50:17 +00:00
}
2021-12-30 09:35:20 +00:00
export async function setMockedOpenDirPath(
page: Page,
path?: string
): Promise<void> {
// set next open directory
await page.evaluate(
([path]) => {
Object.assign(window, {
__MOCKED_OPEN_DIR_PATH__: path,
})
},
[path]
)
}
export async function openLeftSidebar(page: Page): Promise<void> {
let sidebar = page.locator('#left-sidebar')
// Left sidebar is toggled by `is-open` class
if (!/is-open/.test(await sidebar.getAttribute('class'))) {
await page.click('#left-menu.button')
await page.waitForTimeout(10)
await expect(sidebar).toHaveClass(/is-open/)
}
}
export async function loadLocalGraph(page: Page, path?: string): Promise<void> {
await setMockedOpenDirPath(page, path);
const onboardingOpenButton = page.locator('strong:has-text("Choose a folder")')
if (await onboardingOpenButton.isVisible()) {
await onboardingOpenButton.click()
} else {
await page.click('#left-menu.button')
let sidebar = page.locator('#left-sidebar')
if (!/is-open/.test(await sidebar.getAttribute('class'))) {
await page.click('#left-menu.button')
await expect(sidebar).toHaveClass(/is-open/)
}
await page.click('#left-sidebar #repo-switch');
await page.waitForSelector('#left-sidebar .dropdown-wrapper >> text="Add new graph"', { state: 'visible' })
await page.click('text=Add new graph')
await page.waitForSelector('strong:has-text("Choose a folder")', { state: 'visible' })
await page.click('strong:has-text("Choose a folder")')
const skip = page.locator('a:has-text("Skip")')
await skip.click()
}
setMockedOpenDirPath(page, ''); // reset it
await page.waitForSelector(':has-text("Parsing files")', {
state: 'hidden',
timeout: 1000 * 60 * 5,
})
const title = await page.title()
if (title === "Import data into Logseq" || title === "Add another repo") {
await page.click('a.button >> text=Skip')
}
await page.waitForFunction('window.document.title === "Logseq"')
console.log('Graph loaded for ' + path)
}
2021-12-30 09:35:20 +00:00
export async function activateNewPage(page: Page) {
await page.click('.ls-block >> nth=0')
await page.waitForTimeout(500)
2022-01-07 04:09:27 +00:00
}