2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
2023-03-02 20:38:17 +03:00
|
|
|
import {
|
|
|
|
clickPageMoreActions,
|
|
|
|
getBlockSuiteEditorTitle,
|
|
|
|
newPage,
|
2023-06-07 12:31:54 +03:00
|
|
|
waitEditorLoad,
|
2023-07-13 12:05:01 +03:00
|
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
|
|
import { waitForLogMessage } from '@affine-test/kit/utils/utils';
|
|
|
|
import { expect } from '@playwright/test';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-07-13 15:41:46 +03:00
|
|
|
test('New a page and open it ,then favorite it', async ({
|
|
|
|
page,
|
|
|
|
workspace,
|
|
|
|
}) => {
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
2023-05-12 06:13:51 +03:00
|
|
|
await page.getByTestId('all-pages').click();
|
2023-04-17 00:02:41 +03:00
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to favorite',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
|
|
|
|
await cell.click();
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
const favoriteBtn = page.getByTestId('editor-option-menu-favorite');
|
|
|
|
await favoriteBtn.click();
|
2023-07-13 15:41:46 +03:00
|
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
|
|
|
|
expect(currentWorkspace.flavour).toContain('local');
|
2023-04-17 00:02:41 +03:00
|
|
|
});
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-05-30 09:04:35 +03:00
|
|
|
test('Export to html, markdown and png', async ({ page }) => {
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
{
|
2022-12-30 21:03:48 +03:00
|
|
|
await clickPageMoreActions(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await page.getByTestId('export-menu').click();
|
|
|
|
const downloadPromise = page.waitForEvent('download');
|
|
|
|
await page.getByTestId('export-to-markdown').click();
|
|
|
|
await downloadPromise;
|
|
|
|
}
|
|
|
|
await page.waitForTimeout(50);
|
|
|
|
{
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
await page.getByTestId('export-menu').click();
|
|
|
|
const downloadPromise = page.waitForEvent('download');
|
|
|
|
await page.getByTestId('export-to-html').click();
|
|
|
|
await downloadPromise;
|
|
|
|
}
|
2023-05-31 11:20:42 +03:00
|
|
|
// await page.waitForTimeout(50);
|
|
|
|
// {
|
|
|
|
// await clickPageMoreActions(page);
|
|
|
|
// await page.getByTestId('export-menu').click();
|
|
|
|
// const downloadPromise = page.waitForEvent('download');
|
|
|
|
// await page.getByTestId('export-to-png').click();
|
|
|
|
// await downloadPromise;
|
|
|
|
// }
|
2023-05-30 09:04:35 +03:00
|
|
|
});
|
|
|
|
|
2023-05-31 11:20:42 +03:00
|
|
|
test.skip('Export to pdf', async ({ page }) => {
|
2023-05-30 09:04:35 +03:00
|
|
|
const CheckedMessage = '[test] beforeprint event emitted';
|
|
|
|
page.addInitScript(() => {
|
|
|
|
window.addEventListener('beforeprint', () => {
|
|
|
|
console.log(CheckedMessage);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-05-30 09:04:35 +03:00
|
|
|
{
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
await page.getByTestId('export-menu').click();
|
|
|
|
await page.getByTestId('export-to-pdf').click();
|
|
|
|
expect(waitForLogMessage(page, CheckedMessage)).toBeTruthy();
|
|
|
|
}
|
2023-04-17 00:02:41 +03:00
|
|
|
});
|
2023-04-12 17:11:03 +03:00
|
|
|
|
2023-07-13 15:41:46 +03:00
|
|
|
test('Cancel favorite', async ({ page, workspace }) => {
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
2023-05-12 06:13:51 +03:00
|
|
|
await page.getByTestId('all-pages').click();
|
2023-04-17 00:02:41 +03:00
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to favorite',
|
2023-04-12 17:11:03 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
expect(cell).not.toBeUndefined();
|
2023-04-12 17:11:03 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await cell.click();
|
|
|
|
await clickPageMoreActions(page);
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
const favoriteBtn = page.getByTestId('editor-option-menu-favorite');
|
|
|
|
await favoriteBtn.click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
// expect it in favorite list
|
|
|
|
expect(
|
|
|
|
page.getByRole('cell', { name: 'this is a new page to favorite' })
|
|
|
|
).not.toBeUndefined();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
// cancel favorite
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-05-12 06:13:51 +03:00
|
|
|
await page.getByTestId('all-pages').click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
const box = await page
|
|
|
|
.getByRole('cell', { name: 'this is a new page to favorite' })
|
|
|
|
.boundingBox();
|
|
|
|
//hover table record
|
|
|
|
await page.mouse.move((box?.x ?? 0) + 10, (box?.y ?? 0) + 10);
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await page.getByTestId('favorited-icon').click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
// expect it not in favorite list
|
|
|
|
expect(
|
|
|
|
page.getByText(
|
|
|
|
'Tips: Click Add to Favorites/Trash and the page will appear here.'
|
|
|
|
)
|
|
|
|
).not.toBeUndefined();
|
2023-07-13 15:41:46 +03:00
|
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
|
|
|
|
expect(currentWorkspace.flavour).toContain('local');
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|