logseq/e2e-tests/page-rename.spec.ts

102 lines
3.4 KiB
TypeScript

import { expect, Page } from '@playwright/test'
import { test } from './fixtures'
import { IsMac, createPage, randomLowerString, newInnerBlock, randomString, lastBlock } from './utils'
/***
* Test rename feature
***/
async function rename_page(page: Page, new_name: string) {
await page.click('.ls-page-title .page-title')
await page.waitForSelector('input[type="text"]')
await page.fill('input[type="text"]', '')
await page.type('.title input', new_name)
await page.keyboard.press('Enter')
await page.click('.ui__confirm-modal button')
}
async function page_rename_test(page: Page, original_page_name: string, new_page_name: string) {
const rand = randomString(10)
let original_name = original_page_name + rand
let new_name = new_page_name + rand
await createPage(page, original_name)
// Rename page in UI
await rename_page(page, new_name)
expect(await page.innerText('.page-title .title')).toBe(new_name)
// TODO: Test if page is renamed in re-entrance
// TODO: Test if page is hierarchy
}
async function homepage_rename_test(page: Page, original_page_name: string, new_page_name: string) {
const rand = randomString(10)
let original_name = original_page_name + rand
let new_name = new_page_name + rand
await createPage(page, original_name)
// Toggle settings
await page.click('#main-content-container')
await page.keyboard.press('t')
await page.keyboard.press('s')
await page.click('a[data-id="features"]')
await page.click('#settings div:nth-child(1) a')
await page.type('input', original_name)
await page.click('[aria-label="Close"]')
expect(await page.locator('.home-nav span.flex-1').innerText()).toBe(original_name);
await rename_page(page, new_name)
expect(await page.locator('.home-nav span.flex-1').innerText()).toBe(new_name);
// Reenable journal
await page.click('#main-content-container')
await page.keyboard.press('t')
await page.keyboard.press('s')
await page.click('a[data-id="features"]')
await page.click('#settings div:nth-child(1) a')
await page.click('[aria-label="Close"]')
}
test('page rename test', async ({ page }) => {
// TODO: Fix commented out test. Started failing after https://github.com/logseq/logseq/pull/6945
// await homepage_rename_test(page, "abcd", "a/b/c/d")
await page_rename_test(page, "abcd", "a.b.c.d")
await page_rename_test(page, "abcd", "a/b/c/d")
})
// TODO introduce more samples when #4722 is fixed
test('page title property test', async ({ page }) => {
// Edit Title Property and Double Enter (ETPDE)
// exit editing via insert new block
let rand = randomLowerString(10)
let original_name = "etpde old" + rand
let new_name = "etpde new" + rand
await createPage(page, original_name)
// add some spaces to test if it is trimmed
await page.type(':nth-match(textarea, 1)', 'title:: ' + new_name + " ")
await page.press(':nth-match(textarea, 1)', 'Enter') // DWIM property mode creates new line
await page.press(':nth-match(textarea, 1)', 'Enter')
expect(await page.innerText('.page-title .title')).toBe(new_name)
// Edit Title Property and Esc (ETPE)
// exit editing via moving out focus
rand = randomLowerString(10)
original_name = "etpe old " + rand
new_name = "etpe new " + rand
await createPage(page, original_name)
await page.type(':nth-match(textarea, 1)', 'title:: ' + new_name)
await page.press(':nth-match(textarea, 1)', 'Escape')
expect(await page.innerText('.page-title .title')).toBe(new_name)
})