mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-29 16:19:43 +08:00
chore: migrate blocksuite test (#9222)
This commit is contained in:
@@ -0,0 +1,154 @@
|
||||
import '../utils/declare-test-window.js';
|
||||
|
||||
import type { Page } from '@playwright/test';
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
import {
|
||||
activeEmbed,
|
||||
copyByKeyboard,
|
||||
dragEmbedResizeByTopLeft,
|
||||
dragEmbedResizeByTopRight,
|
||||
enterPlaygroundRoom,
|
||||
initImageState,
|
||||
moveToImage,
|
||||
pasteByKeyboard,
|
||||
pressArrowLeft,
|
||||
pressEnter,
|
||||
redoByClick,
|
||||
redoByKeyboard,
|
||||
type,
|
||||
undoByKeyboard,
|
||||
waitNextFrame,
|
||||
} from '../utils/actions/index.js';
|
||||
import {
|
||||
assertImageOption,
|
||||
assertImageSize,
|
||||
assertRichDragButton,
|
||||
assertRichImage,
|
||||
assertRichTextInlineRange,
|
||||
assertRichTexts,
|
||||
} from '../utils/asserts.js';
|
||||
import { test } from '../utils/playwright.js';
|
||||
|
||||
async function focusCaption(page: Page) {
|
||||
await page.click(
|
||||
'.affine-image-toolbar-container .image-toolbar-button.caption'
|
||||
);
|
||||
}
|
||||
|
||||
test('can drag resize image by left menu', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await activeEmbed(page);
|
||||
await assertRichDragButton(page);
|
||||
await assertImageSize(page, { width: 752, height: 564 });
|
||||
|
||||
await dragEmbedResizeByTopLeft(page);
|
||||
await waitNextFrame(page);
|
||||
await assertImageSize(page, { width: 358, height: 268 });
|
||||
|
||||
await undoByKeyboard(page);
|
||||
await waitNextFrame(page);
|
||||
await assertImageSize(page, { width: 752, height: 564 });
|
||||
|
||||
await redoByKeyboard(page);
|
||||
await waitNextFrame(page);
|
||||
await assertImageSize(page, { width: 358, height: 268 });
|
||||
});
|
||||
|
||||
test('can drag resize image by right menu', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await activeEmbed(page);
|
||||
await assertRichDragButton(page);
|
||||
await assertImageSize(page, { width: 752, height: 564 });
|
||||
|
||||
await dragEmbedResizeByTopRight(page);
|
||||
await assertImageSize(page, { width: 338, height: 253 });
|
||||
|
||||
await undoByKeyboard(page);
|
||||
await assertImageSize(page, { width: 752, height: 564 });
|
||||
|
||||
await redoByKeyboard(page);
|
||||
await assertImageSize(page, { width: 338, height: 253 });
|
||||
});
|
||||
|
||||
test('can click and delete image', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await activeEmbed(page);
|
||||
await page.keyboard.press('Backspace');
|
||||
await assertRichImage(page, 0);
|
||||
|
||||
await undoByKeyboard(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await redoByClick(page);
|
||||
await assertRichImage(page, 0);
|
||||
});
|
||||
|
||||
test('can click and copy image', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await activeEmbed(page);
|
||||
await copyByKeyboard(page);
|
||||
await pressEnter(page);
|
||||
await waitNextFrame(page);
|
||||
|
||||
await pasteByKeyboard(page);
|
||||
await waitNextFrame(page, 200);
|
||||
await assertRichImage(page, 2);
|
||||
});
|
||||
|
||||
test('enter shortcut on focusing embed block and its caption', async ({
|
||||
page,
|
||||
}) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await moveToImage(page);
|
||||
await assertImageOption(page);
|
||||
|
||||
const caption = page.locator('affine-image block-caption-editor textarea');
|
||||
await focusCaption(page);
|
||||
await type(page, '123');
|
||||
|
||||
test.info().annotations.push({
|
||||
type: 'issue',
|
||||
description: 'https://github.com/toeverything/blocksuite/issues/2495',
|
||||
});
|
||||
|
||||
// blur
|
||||
await page.mouse.click(0, 500);
|
||||
await caption.click({ position: { x: 0, y: 0 } });
|
||||
await type(page, 'abc');
|
||||
await expect(caption).toHaveValue('abc123');
|
||||
});
|
||||
|
||||
test('should support the enter key of image caption', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
await moveToImage(page);
|
||||
await assertImageOption(page);
|
||||
|
||||
const caption = page.locator('affine-image block-caption-editor textarea');
|
||||
await focusCaption(page);
|
||||
await type(page, 'abc123');
|
||||
await pressArrowLeft(page, 3);
|
||||
await pressEnter(page);
|
||||
await expect(caption).toHaveValue('abc');
|
||||
|
||||
await assertRichTexts(page, ['123']);
|
||||
await assertRichTextInlineRange(page, 0, 0, 0);
|
||||
});
|
||||
@@ -0,0 +1,79 @@
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
import {
|
||||
activeEmbed,
|
||||
enterPlaygroundRoom,
|
||||
initImageState,
|
||||
pressArrowDown,
|
||||
pressArrowUp,
|
||||
pressBackspace,
|
||||
pressEnter,
|
||||
type,
|
||||
} from '../utils/actions/index.js';
|
||||
import {
|
||||
assertBlockCount,
|
||||
assertBlockSelections,
|
||||
assertRichImage,
|
||||
assertRichTextInlineRange,
|
||||
assertRichTexts,
|
||||
} from '../utils/asserts.js';
|
||||
import { test } from '../utils/playwright.js';
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page, true);
|
||||
await assertRichImage(page, 1);
|
||||
});
|
||||
|
||||
test('press enter will create new block when click and select image', async ({
|
||||
page,
|
||||
}) => {
|
||||
await activeEmbed(page);
|
||||
await pressEnter(page);
|
||||
await type(page, 'aa');
|
||||
await assertRichTexts(page, ['', 'aa']);
|
||||
});
|
||||
|
||||
test('press backspace after image block can select image block', async ({
|
||||
page,
|
||||
}) => {
|
||||
await activeEmbed(page);
|
||||
await pressEnter(page);
|
||||
await assertRichTextInlineRange(page, 1, 0);
|
||||
await assertBlockCount(page, 'paragraph', 2);
|
||||
await pressBackspace(page);
|
||||
await assertBlockSelections(page, ['3']);
|
||||
await assertBlockCount(page, 'paragraph', 1);
|
||||
});
|
||||
|
||||
test('press enter when image is selected should move next paragraph and should placeholder', async ({
|
||||
page,
|
||||
}) => {
|
||||
await activeEmbed(page);
|
||||
await pressEnter(page);
|
||||
|
||||
const placeholder = page.locator('.affine-paragraph-placeholder.visible');
|
||||
await expect(placeholder).toBeVisible();
|
||||
});
|
||||
|
||||
test('press arrow up when image is selected should move to previous paragraph', async ({
|
||||
page,
|
||||
}) => {
|
||||
await activeEmbed(page);
|
||||
await pressArrowUp(page);
|
||||
await assertRichTextInlineRange(page, 0, 0);
|
||||
await type(page, 'aa');
|
||||
await assertRichTexts(page, ['aa']);
|
||||
});
|
||||
|
||||
test('press arrow down when image is selected should move to previous paragraph', async ({
|
||||
page,
|
||||
}) => {
|
||||
await activeEmbed(page);
|
||||
await pressEnter(page);
|
||||
await type(page, 'aa');
|
||||
await activeEmbed(page);
|
||||
await pressArrowDown(page);
|
||||
await type(page, 'bb');
|
||||
await assertRichTexts(page, ['', 'bbaa']);
|
||||
});
|
||||
@@ -0,0 +1,168 @@
|
||||
import { readFile } from 'node:fs/promises';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
|
||||
import type { Page } from '@playwright/test';
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
import {
|
||||
enterPlaygroundRoom,
|
||||
expectConsoleMessage,
|
||||
} from '../utils/actions/index.js';
|
||||
import { test } from '../utils/playwright.js';
|
||||
|
||||
const mockImageId = '_e2e_test_image_id_';
|
||||
|
||||
async function initMockImage(page: Page) {
|
||||
await page.evaluate(() => {
|
||||
const { doc } = window;
|
||||
doc.captureSync();
|
||||
const rootId = doc.addBlock('affine:page');
|
||||
const noteId = doc.addBlock('affine:note', {}, rootId);
|
||||
doc.addBlock(
|
||||
'affine:image',
|
||||
{
|
||||
sourceId: '_e2e_test_image_id_',
|
||||
width: 200,
|
||||
height: 180,
|
||||
},
|
||||
noteId
|
||||
);
|
||||
doc.captureSync();
|
||||
});
|
||||
}
|
||||
|
||||
test('image loading but failed', async ({ page }) => {
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Error: Failed to fetch blob _e2e_test_image_id_',
|
||||
'warning'
|
||||
);
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Failed to load resource: the server responded with a status of 404 (Not Found)'
|
||||
);
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Error: Image blob is missing!, retrying',
|
||||
'warning'
|
||||
);
|
||||
|
||||
const room = await enterPlaygroundRoom(page, { blobSource: ['mock'] });
|
||||
const timeout = 2000;
|
||||
|
||||
// block image data request, force wait 100ms for loading test,
|
||||
// always return 404
|
||||
await page.route(
|
||||
`**/api/collection/${room}/blob/${mockImageId}`,
|
||||
async route => {
|
||||
await page.waitForTimeout(timeout);
|
||||
// broken image
|
||||
return route.fulfill({
|
||||
status: 404,
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
await initMockImage(page);
|
||||
|
||||
const loadingContent = await page
|
||||
.locator(
|
||||
'.affine-image-fallback-card .affine-image-fallback-card-title-text'
|
||||
)
|
||||
.innerText();
|
||||
expect(loadingContent).toBe('Loading image...');
|
||||
|
||||
await page.waitForTimeout(3 * timeout);
|
||||
|
||||
await expect(
|
||||
page.locator(
|
||||
'.affine-image-fallback-card .affine-image-fallback-card-title-text'
|
||||
)
|
||||
).toContainText('Image loading failed.');
|
||||
});
|
||||
|
||||
test('image loading but success', async ({ page }) => {
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Error: Failed to fetch blob _e2e_test_image_id_',
|
||||
'warning'
|
||||
);
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Failed to load resource: the server responded with a status of 404 (Not Found)'
|
||||
);
|
||||
expectConsoleMessage(
|
||||
page,
|
||||
'Error: Image blob is missing!, retrying',
|
||||
'warning'
|
||||
);
|
||||
|
||||
const room = await enterPlaygroundRoom(page, { blobSource: ['mock'] });
|
||||
const imageBuffer = await readFile(
|
||||
fileURLToPath(new URL('../fixtures/smile.png', import.meta.url))
|
||||
);
|
||||
|
||||
const timeout = 2000;
|
||||
let count = 0;
|
||||
|
||||
// block image data request, force wait 100ms for loading test,
|
||||
// always return 404
|
||||
await page.route(
|
||||
`**/api/collection/${room}/blob/${mockImageId}`,
|
||||
async route => {
|
||||
await page.waitForTimeout(timeout);
|
||||
count++;
|
||||
if (count === 3) {
|
||||
return route.fulfill({
|
||||
status: 200,
|
||||
body: imageBuffer,
|
||||
});
|
||||
}
|
||||
// broken image
|
||||
return route.fulfill({
|
||||
status: 404,
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
await initMockImage(page);
|
||||
|
||||
const loadingContent = await page
|
||||
.locator(
|
||||
'.affine-image-fallback-card .affine-image-fallback-card-title-text'
|
||||
)
|
||||
.innerText();
|
||||
expect(loadingContent).toBe('Loading image...');
|
||||
|
||||
await page.waitForTimeout(3 * timeout);
|
||||
|
||||
const img = page.locator('.affine-image-container img');
|
||||
await expect(img).toBeVisible();
|
||||
const src = await img.getAttribute('src');
|
||||
expect(src).toBeDefined();
|
||||
});
|
||||
|
||||
test('image loaded successfully', async ({ page }) => {
|
||||
const room = await enterPlaygroundRoom(page, { blobSource: ['mock'] });
|
||||
const imageBuffer = await readFile(
|
||||
fileURLToPath(new URL('../fixtures/smile.png', import.meta.url))
|
||||
);
|
||||
await page.route(
|
||||
`**/api/collection/${room}/blob/${mockImageId}`,
|
||||
async route => {
|
||||
return route.fulfill({
|
||||
status: 200,
|
||||
body: imageBuffer,
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
await initMockImage(page);
|
||||
|
||||
await page.waitForTimeout(1000);
|
||||
|
||||
const img = page.locator('.affine-image-container img');
|
||||
await expect(img).toBeVisible();
|
||||
const src = await img.getAttribute('src');
|
||||
expect(src).toBeDefined();
|
||||
});
|
||||
@@ -0,0 +1,90 @@
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
import {
|
||||
activeEmbed,
|
||||
dragBetweenCoords,
|
||||
enterPlaygroundRoom,
|
||||
initImageState,
|
||||
insertThreeLevelLists,
|
||||
pressEnter,
|
||||
scrollToTop,
|
||||
} from '../utils/actions/index.js';
|
||||
import { assertRichImage } from '../utils/asserts.js';
|
||||
import { test } from '../utils/playwright.js';
|
||||
|
||||
// FIXME(@fundon): This behavior is not meeting the design spec
|
||||
test.skip('popup menu should follow position of image when scrolling', async ({
|
||||
page,
|
||||
}) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await activeEmbed(page);
|
||||
await pressEnter(page);
|
||||
await insertThreeLevelLists(page, 0);
|
||||
await pressEnter(page);
|
||||
await insertThreeLevelLists(page, 3);
|
||||
await pressEnter(page);
|
||||
await insertThreeLevelLists(page, 6);
|
||||
await pressEnter(page);
|
||||
await insertThreeLevelLists(page, 9);
|
||||
await pressEnter(page);
|
||||
await insertThreeLevelLists(page, 12);
|
||||
|
||||
await scrollToTop(page);
|
||||
|
||||
const rect = await page.locator('.affine-image-container img').boundingBox();
|
||||
if (!rect) throw new Error('image not found');
|
||||
|
||||
await page.mouse.move(rect.x + rect.width / 2, rect.y + rect.height / 2);
|
||||
|
||||
await page.waitForTimeout(150);
|
||||
|
||||
const menu = page.locator('.affine-image-toolbar-container');
|
||||
|
||||
await expect(menu).toBeVisible();
|
||||
|
||||
await page.evaluate(
|
||||
([rect]) => {
|
||||
const viewport = document.querySelector('.affine-page-viewport');
|
||||
if (!viewport) {
|
||||
throw new Error();
|
||||
}
|
||||
// const distance = viewport.scrollHeight - viewport.clientHeight;
|
||||
viewport.scrollTo(0, (rect.height + rect.y) / 2);
|
||||
},
|
||||
[rect]
|
||||
);
|
||||
|
||||
await page.waitForTimeout(150);
|
||||
const image = page.locator('.affine-image-container img');
|
||||
const imageRect = await image.boundingBox();
|
||||
const menuRect = await menu.boundingBox();
|
||||
if (!imageRect) throw new Error('image not found');
|
||||
if (!menuRect) throw new Error('menu not found');
|
||||
expect(imageRect.y).toBeCloseTo((rect.y - rect.height) / 2, 172);
|
||||
expect(menuRect.y).toBeCloseTo(65, -0.325);
|
||||
});
|
||||
|
||||
test('select image should not show format bar', async ({ page }) => {
|
||||
await enterPlaygroundRoom(page);
|
||||
await initImageState(page);
|
||||
await assertRichImage(page, 1);
|
||||
|
||||
const image = page.locator('affine-image');
|
||||
const rect = await image.boundingBox();
|
||||
if (!rect) {
|
||||
throw new Error('image not found');
|
||||
}
|
||||
await dragBetweenCoords(
|
||||
page,
|
||||
{ x: rect.x - 20, y: rect.y + 20 },
|
||||
{ x: rect.x + 20, y: rect.y + 40 }
|
||||
);
|
||||
const rects = page.locator('affine-block-selection').locator('visible=true');
|
||||
await expect(rects).toHaveCount(1);
|
||||
const formatQuickBar = page.locator(`.format-quick-bar`);
|
||||
await expect(formatQuickBar).not.toBeVisible();
|
||||
await page.mouse.wheel(0, rect.y + rect.height);
|
||||
await expect(formatQuickBar).not.toBeVisible();
|
||||
await page.mouse.click(0, 0);
|
||||
});
|
||||
Reference in New Issue
Block a user