2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2024-07-25 15:21:21 +03:00
|
|
|
import {
|
|
|
|
ensureInEdgelessMode,
|
|
|
|
ensureInPageMode,
|
|
|
|
getPageMode,
|
|
|
|
} from '@affine-test/kit/utils/editor';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
|
|
import {
|
2024-02-21 15:57:18 +03:00
|
|
|
clickNewPageButton,
|
2023-07-13 12:05:01 +03:00
|
|
|
clickPageMoreActions,
|
2023-09-02 06:31:07 +03:00
|
|
|
waitForEditorLoad,
|
2023-07-13 12:05:01 +03:00
|
|
|
} from '@affine-test/kit/utils/page-logic';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('Switch to edgeless by switch edgeless item', async ({ page }) => {
|
2023-05-10 08:50:51 +03:00
|
|
|
async function getCount(): Promise<number> {
|
|
|
|
return page.evaluate(() => {
|
2023-07-13 12:05:01 +03:00
|
|
|
// @ts-expect-error
|
2023-05-10 08:50:51 +03:00
|
|
|
return globalThis.__toastCount;
|
|
|
|
});
|
|
|
|
}
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2024-02-21 15:57:18 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-10-12 08:04:58 +03:00
|
|
|
const btn = page.getByTestId('switch-edgeless-mode-button');
|
2023-05-10 08:50:51 +03:00
|
|
|
await page.evaluate(() => {
|
2023-07-13 12:05:01 +03:00
|
|
|
// @ts-expect-error
|
2023-05-10 08:50:51 +03:00
|
|
|
globalThis.__toastCount = 0;
|
|
|
|
window.addEventListener('affine-toast:emit', () => {
|
2023-07-13 12:05:01 +03:00
|
|
|
// @ts-expect-error
|
2023-05-10 08:50:51 +03:00
|
|
|
globalThis.__toastCount++;
|
|
|
|
});
|
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
await btn.click();
|
2023-04-28 12:28:51 +03:00
|
|
|
await page.waitForTimeout(100);
|
2023-05-10 08:50:51 +03:00
|
|
|
{
|
|
|
|
const count = await getCount();
|
|
|
|
expect(count).toBe(1);
|
|
|
|
}
|
2024-02-29 09:33:50 +03:00
|
|
|
const edgeless = page.locator('affine-edgeless-root');
|
2023-10-12 08:04:58 +03:00
|
|
|
await expect(edgeless).toBeVisible();
|
2023-04-21 12:56:29 +03:00
|
|
|
|
|
|
|
const editorWrapperPadding = await page
|
|
|
|
.locator('.editor-wrapper.edgeless-mode')
|
|
|
|
.evaluate(element => {
|
|
|
|
return window.getComputedStyle(element).getPropertyValue('padding');
|
|
|
|
});
|
|
|
|
expect(editorWrapperPadding).toBe('0px');
|
2023-05-10 08:50:51 +03:00
|
|
|
{
|
|
|
|
const count = await getCount();
|
|
|
|
expect(count).toBe(1);
|
|
|
|
}
|
|
|
|
await btn.click();
|
|
|
|
await btn.click();
|
|
|
|
await btn.click();
|
|
|
|
await page.waitForTimeout(100);
|
|
|
|
{
|
|
|
|
const count = await getCount();
|
|
|
|
expect(count).toBe(1);
|
|
|
|
}
|
2023-04-17 00:02:41 +03:00
|
|
|
});
|
2022-11-28 16:17:34 +03:00
|
|
|
|
2024-07-25 15:21:21 +03:00
|
|
|
test('Quick Switch Doc Mode, Doc Mode should stable', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitForEditorLoad(page);
|
|
|
|
await ensureInEdgelessMode(page);
|
|
|
|
await page.keyboard.down('Alt');
|
|
|
|
await page.keyboard.down('S');
|
|
|
|
await page.keyboard.up('S');
|
|
|
|
await page.keyboard.up('Alt');
|
|
|
|
|
|
|
|
await page.keyboard.down('Alt');
|
|
|
|
await page.keyboard.down('S');
|
|
|
|
await page.keyboard.up('S');
|
|
|
|
await page.keyboard.up('Alt');
|
|
|
|
|
|
|
|
await page.keyboard.down('Alt');
|
|
|
|
await page.keyboard.down('S');
|
|
|
|
await page.keyboard.up('S');
|
|
|
|
await page.keyboard.up('Alt');
|
|
|
|
|
|
|
|
await page.keyboard.down('Alt');
|
|
|
|
await page.keyboard.down('S');
|
|
|
|
await page.keyboard.up('S');
|
|
|
|
await page.keyboard.up('Alt');
|
|
|
|
|
|
|
|
await page.keyboard.down('Alt');
|
|
|
|
await page.keyboard.down('S');
|
|
|
|
await page.keyboard.up('S');
|
|
|
|
await page.keyboard.up('Alt');
|
|
|
|
|
|
|
|
await ensureInPageMode(page);
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
expect(await getPageMode(page)).toBe('page');
|
|
|
|
});
|
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('Convert to edgeless by editor header items', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2024-02-21 15:57:18 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await clickPageMoreActions(page);
|
|
|
|
const menusEdgelessItem = page.getByTestId('editor-option-menu-edgeless');
|
|
|
|
await menusEdgelessItem.click({ delay: 100 });
|
2024-02-29 09:33:50 +03:00
|
|
|
const edgeless = page.locator('affine-edgeless-root');
|
2023-10-12 08:04:58 +03:00
|
|
|
await expect(edgeless).toBeVisible();
|
2022-11-28 16:17:34 +03:00
|
|
|
});
|
2023-07-22 16:03:18 +03:00
|
|
|
|
|
|
|
test('Able to insert the title of an untitled page', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleBarTextContent = page.getByTestId('title-edit-button');
|
2023-09-07 20:12:07 +03:00
|
|
|
await titleBarTextContent.dblclick({ delay: 100 });
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleContent = page.getByTestId('title-content');
|
2023-07-22 16:03:18 +03:00
|
|
|
await titleContent.fill('test');
|
2023-08-08 20:14:24 +03:00
|
|
|
await titleContent.blur();
|
2023-07-22 16:03:18 +03:00
|
|
|
expect(await titleBarTextContent.textContent()).toBe('test');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Able to edit the title of an existing page', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleBarTextContent = page.getByTestId('title-edit-button');
|
2023-09-07 20:12:07 +03:00
|
|
|
await titleBarTextContent.dblclick({ delay: 100 });
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleContent = page.getByTestId('title-content');
|
2023-07-22 16:03:18 +03:00
|
|
|
await titleContent.fill('test');
|
2023-08-08 20:14:24 +03:00
|
|
|
await titleContent.blur();
|
2023-07-22 16:03:18 +03:00
|
|
|
expect(await titleBarTextContent.textContent()).toBe('test');
|
2023-09-07 20:12:07 +03:00
|
|
|
await titleBarTextContent.dblclick({ delay: 100 });
|
2023-07-22 16:03:18 +03:00
|
|
|
await titleContent.fill('Sample text 2');
|
2023-08-08 20:14:24 +03:00
|
|
|
await titleContent.blur();
|
2023-07-22 16:03:18 +03:00
|
|
|
expect(await titleBarTextContent.textContent()).toBe('Sample text 2');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Clearing out the title bar will remove the page title', async ({
|
|
|
|
page,
|
|
|
|
}) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleBarTextContent = page.getByTestId('title-edit-button');
|
2023-09-07 20:12:07 +03:00
|
|
|
await titleBarTextContent.dblclick({ delay: 100 });
|
2023-10-12 08:04:58 +03:00
|
|
|
const titleContent = page.getByTestId('title-content');
|
2023-07-22 16:03:18 +03:00
|
|
|
await titleContent.fill('test');
|
2023-08-08 20:14:24 +03:00
|
|
|
await titleContent.blur();
|
2023-07-22 16:03:18 +03:00
|
|
|
expect(await titleBarTextContent.textContent()).toBe('test');
|
2023-09-07 20:12:07 +03:00
|
|
|
await titleBarTextContent.dblclick({ delay: 100 });
|
2023-07-22 16:03:18 +03:00
|
|
|
await titleContent.fill('');
|
2023-08-08 20:14:24 +03:00
|
|
|
await titleContent.blur();
|
|
|
|
expect(await titleBarTextContent.textContent()).toBe('Untitled');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Rename by editor header items, save with shortcut', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-08-08 20:14:24 +03:00
|
|
|
await clickPageMoreActions(page);
|
|
|
|
const menusRenameItem = page.getByTestId('editor-option-menu-rename');
|
|
|
|
await menusRenameItem.click({ delay: 100 });
|
|
|
|
const titleBarTextContent = page.getByTestId('title-edit-button');
|
|
|
|
const titleContent = page.getByTestId('title-content');
|
|
|
|
await titleContent.fill('test');
|
|
|
|
await page.keyboard.press('Enter');
|
|
|
|
expect(await titleBarTextContent.textContent()).toBe('test');
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
await menusRenameItem.click({ delay: 100 });
|
|
|
|
await titleContent.fill('');
|
|
|
|
await page.keyboard.press('Escape');
|
2023-07-22 16:03:18 +03:00
|
|
|
expect(await titleBarTextContent.textContent()).toBe('Untitled');
|
|
|
|
});
|