2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-03-24 01:15:40 +03:00
|
|
|
import { openHomePage } from '../libs/load-page';
|
2023-03-02 20:38:17 +03:00
|
|
|
import {
|
|
|
|
clickPageMoreActions,
|
|
|
|
getBlockSuiteEditorTitle,
|
|
|
|
newPage,
|
2023-03-28 08:25:16 +03:00
|
|
|
waitMarkdownImported,
|
2023-03-24 01:15:40 +03:00
|
|
|
} from '../libs/page-logic';
|
|
|
|
import { test } from '../libs/playwright';
|
|
|
|
import { assertCurrentWorkspaceFlavour } from '../libs/workspace';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-12 05:39:39 +03:00
|
|
|
test.describe('Local first favorite and cancel favorite page', () => {
|
2022-12-30 16:40:15 +03:00
|
|
|
test('New a page and open it ,then favorite it', async ({ page }) => {
|
2023-03-24 01:15:40 +03:00
|
|
|
await openHomePage(page);
|
2023-03-28 08:25:16 +03:00
|
|
|
await waitMarkdownImported(page);
|
2022-12-30 21:03:48 +03:00
|
|
|
await newPage(page);
|
2023-03-02 20:38:17 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
2022-12-30 16:40:15 +03:00
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to favorite',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
|
|
|
|
await cell.click();
|
2022-12-30 21:03:48 +03:00
|
|
|
await clickPageMoreActions(page);
|
2022-12-30 16:40:15 +03:00
|
|
|
const favoriteBtn = page.getByTestId('editor-option-menu-favorite');
|
|
|
|
await favoriteBtn.click();
|
2023-03-23 07:22:29 +03:00
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
|
|
|
test('Cancel favorite', async ({ page }) => {
|
2023-03-24 01:15:40 +03:00
|
|
|
await openHomePage(page);
|
2023-03-28 08:25:16 +03:00
|
|
|
await waitMarkdownImported(page);
|
2022-12-30 21:03:48 +03:00
|
|
|
await newPage(page);
|
2023-03-02 20:38:17 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
2022-12-30 16:40:15 +03:00
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to favorite',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
|
|
|
|
await cell.click();
|
2022-12-30 21:03:48 +03:00
|
|
|
await clickPageMoreActions(page);
|
2022-12-30 16:40:15 +03:00
|
|
|
|
|
|
|
const favoriteBtn = page.getByTestId('editor-option-menu-favorite');
|
|
|
|
await favoriteBtn.click();
|
|
|
|
|
|
|
|
// expect it in favorite list
|
2023-02-09 10:46:59 +03:00
|
|
|
await page.getByRole('link', { name: 'Favorites' }).click();
|
2022-12-30 16:40:15 +03:00
|
|
|
expect(
|
|
|
|
page.getByRole('cell', { name: 'this is a new page to favorite' })
|
|
|
|
).not.toBeUndefined();
|
|
|
|
|
|
|
|
// cancel favorite
|
|
|
|
|
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2023-02-09 10:46:59 +03:00
|
|
|
await page.getByTestId('favorited-icon').click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
|
|
|
// expect it not in favorite list
|
2023-02-09 10:46:59 +03:00
|
|
|
await page.getByRole('link', { name: 'Favorites' }).click();
|
2022-12-30 16:40:15 +03:00
|
|
|
expect(
|
|
|
|
page.getByText(
|
2023-02-09 10:46:59 +03:00
|
|
|
'Tips: Click Add to Favorites/Trash and the page will appear here.'
|
2022-12-30 16:40:15 +03:00
|
|
|
)
|
|
|
|
).not.toBeUndefined();
|
2023-03-23 07:22:29 +03:00
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
|
|
|
});
|