L-Sun a9ad01491c
test(core): enable no-floating-promises rule for tests (#11915)
Sometimes, missing `await` in the test code can cause timing issues, leading to test failures. This PR enables the `no-floating-promises` rule for the test code to ensure that such errors do not occur.
2025-04-23 08:17:41 +00:00

206 lines
7.0 KiB
TypeScript

import type { AffineReference } from '@blocksuite/affine/inlines/reference';
import { expect, type Page } from '@playwright/test';
import { clickView } from '../utils/actions/click.js';
import {
createNote,
getIds,
getSelectedBound,
getSelectedIds,
isIntersected,
switchEditorMode,
} from '../utils/actions/edgeless';
import { pressEscape } from '../utils/actions/keyboard.js';
import { enterPlaygroundRoom, waitNextFrame } from '../utils/actions/misc';
import { test } from '../utils/playwright';
import { initEmbedSyncedDocState } from './utils';
test.describe('Embed synced doc in edgeless mode', () => {
test.beforeEach(async ({ page }) => {
await enterPlaygroundRoom(page);
});
test.fixme(
'drag embed synced doc to whiteboard should fit in height',
async ({ page }) => {
await initEmbedSyncedDocState(page, [
{ title: 'Root Doc', content: 'hello root doc' },
{ title: 'Page 1', content: 'hello page 1' },
]);
await switchEditorMode(page);
// Double click on note to enter edit status
const noteBlock = page.locator('affine-edgeless-note');
await noteBlock.dblclick();
// Drag the embed synced doc to whiteboard
const embedSyncedBlockInNote = page.locator(
'affine-embed-synced-doc-block'
);
const embedSyncedBoxInNote = await embedSyncedBlockInNote.boundingBox();
if (!embedSyncedBoxInNote) {
throw new Error('embedSyncedBoxInNote is not found');
}
const height = embedSyncedBoxInNote.height;
await page.mouse.move(
embedSyncedBoxInNote.x - 10,
embedSyncedBoxInNote.y - 100
);
await page.mouse.move(
embedSyncedBoxInNote.x - 10,
embedSyncedBoxInNote.y + 10
);
await waitNextFrame(page);
await page.mouse.down();
await page.mouse.move(100, 200, { steps: 30 });
await page.mouse.up();
// Check the height of the embed synced doc portal, it should be the same as the embed synced doc in note
const EmbedSyncedDocBlockInCanvas = page.locator(
'affine-embed-edgeless-synced-doc-block'
);
const EmbedSyncedDocBlockBoxInCanvas =
await EmbedSyncedDocBlockInCanvas.boundingBox();
const border = 1;
if (!EmbedSyncedDocBlockBoxInCanvas) {
throw new Error('EmbedSyncedDocBlockBoxInCanvas is not found');
}
expect(EmbedSyncedDocBlockBoxInCanvas.height).toBeCloseTo(
height + 2 * border,
1
);
}
);
test.describe('edgeless element toolbar', () => {
test.beforeEach(async ({ page }) => {
await initEmbedSyncedDocState(page, [
{ title: 'Root Doc', content: 'hello root doc' },
{ title: 'Page 1', content: 'hello page 1', inEdgeless: true },
]);
// TODO(@L-Sun): remove this after this feature is released
await page.evaluate(() => {
const { FeatureFlagService } = window.$blocksuite.services;
window.editor.std
.get(FeatureFlagService)
.setFlag('enable_embed_doc_with_alias', true);
});
await switchEditorMode(page);
const edgelessEmbedSyncedBlock = page.locator(
'affine-embed-edgeless-synced-doc-block'
);
await edgelessEmbedSyncedBlock.click();
});
const getDocIds = async (page: Page) => {
return page.evaluate(() => {
return [...window.collection.docs.keys()];
});
};
const locateToolbar = (page: Page) => {
return page.locator(
// TODO(@L-Sun): simplify this selector after that toolbar widget are disabled in preview rendering is ready
'affine-edgeless-root > .widgets-container affine-toolbar-widget editor-toolbar'
);
};
test('should insert embed-synced-doc into page when click "Insert into page" button', async ({
page,
}) => {
const embedSyncedBlock = page.locator('affine-embed-synced-doc-block');
const edgelessEmbedSyncedBlock = page.locator(
'affine-embed-edgeless-synced-doc-block'
);
const toolbar = locateToolbar(page);
const insertButton = toolbar.getByLabel('Insert to page');
await insertButton.click();
await expect(
edgelessEmbedSyncedBlock,
'the edgeless embed synced doc should be remained after click insert button'
).toBeVisible();
await switchEditorMode(page);
await expect(embedSyncedBlock).toBeVisible();
});
test('should render a reference node and all content of embed-synced-doc after click "Duplicate as note" button', async ({
page,
}) => {
// switch doc
const switchDoc = async () =>
page.evaluate(() => {
for (const [id, doc] of window.collection.docs.entries()) {
if (id !== window.doc.id) {
window.editor.doc = doc.getStore();
window.doc = window.editor.doc;
break;
}
}
});
await switchDoc();
const toolbar = locateToolbar(page);
await createNote(page, [0, 100, 100, 800], 'hello note');
await pressEscape(page, 3);
await clickView(page, [400, 150]);
await toolbar.getByLabel('Display in Page').click();
await switchDoc();
const edgelessEmbedSyncedBlock = page.locator(
'affine-embed-edgeless-synced-doc-block'
);
await edgelessEmbedSyncedBlock.click();
await toolbar.getByLabel('Duplicate as note').click();
const edgelessNotes = page.locator('affine-edgeless-note');
await expect(edgelessNotes).toHaveCount(2);
await expect(edgelessNotes.last()).toBeVisible();
const blocks = edgelessNotes.last().locator('[data-block-id]');
await expect(blocks).toHaveCount(3);
const reference = blocks.nth(0).locator('affine-reference');
const paragraph1 = blocks.nth(1).locator('[data-v-text="true"]');
const paragraph2 = blocks.nth(2).locator('[data-v-text="true"]');
const refInfo = await reference.evaluate((reference: AffineReference) => {
return reference.delta.attributes?.reference;
});
expect(refInfo).toEqual({
type: 'LinkedPage',
pageId: (await getDocIds(page))[1],
});
await expect(paragraph1).toHaveText('hello page 1');
await expect(paragraph2).toHaveText('hello note');
});
test('should be selected and not overlay with the embed-synced-doc after duplicating as note', async ({
page,
}) => {
const prevIds = await getIds(page);
const embedDocBound = await getSelectedBound(page);
const toolbar = locateToolbar(page);
await toolbar.getByLabel('Duplicate as note').click();
const edgelessNotes = page.locator('affine-edgeless-note');
await expect(edgelessNotes).toHaveCount(2);
expect(await getSelectedIds(page)).toHaveLength(1);
expect(await getSelectedIds(page)).not.toContain(prevIds);
await expect(edgelessNotes.last()).toBeVisible();
const noteBound = await getSelectedBound(page);
expect(isIntersected(embedDocBound, noteBound)).toBe(false);
});
});
});