2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
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 { assertCurrentWorkspaceFlavour } from '../libs/workspace';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('Show favorite items in sidebar', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitMarkdownImported(page);
|
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
|
|
|
const newPageId = page.url().split('/').reverse()[0];
|
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to favorite',
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
await expect(cell).toBeVisible();
|
|
|
|
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();
|
|
|
|
const favoriteListItemInSidebar = page.getByTestId(
|
|
|
|
'favorite-list-item-' + newPageId
|
|
|
|
);
|
|
|
|
expect(await favoriteListItemInSidebar.textContent()).toBe(
|
|
|
|
'this is a new page to favorite'
|
|
|
|
);
|
|
|
|
});
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('Show favorite items in favorite list', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitMarkdownImported(page);
|
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page to favorite');
|
|
|
|
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();
|
|
|
|
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();
|
2023-03-01 19:50:23 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await page.getByRole('link', { name: 'Favorites' }).click();
|
|
|
|
expect(
|
|
|
|
page.getByRole('cell', { name: 'this is a new page to favorite' })
|
|
|
|
).not.toBeUndefined();
|
|
|
|
|
|
|
|
await page.getByRole('cell').getByRole('button').nth(0).click();
|
|
|
|
expect(
|
|
|
|
await page
|
|
|
|
.getByText('Click Add to Favorites and the page will appear here.')
|
|
|
|
.isVisible()
|
|
|
|
).toBe(true);
|
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|