2023-06-30 08:40:00 +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-06-30 08:40:00 +03:00
|
|
|
import {
|
2023-09-02 08:57:04 +03:00
|
|
|
clickNewPageButton,
|
2023-06-30 08:40:00 +03:00
|
|
|
getBlockSuiteEditorTitle,
|
2023-09-02 06:31:07 +03:00
|
|
|
waitForEditorLoad,
|
2023-07-13 12:05:01 +03:00
|
|
|
} from '@affine-test/kit/utils/page-logic';
|
2023-11-17 10:50:01 +03:00
|
|
|
import {
|
|
|
|
clickSideBarAllPageButton,
|
|
|
|
clickSideBarCurrentWorkspaceBanner,
|
|
|
|
} from '@affine-test/kit/utils/sidebar';
|
2023-09-15 12:19:22 +03:00
|
|
|
import { createLocalWorkspace } from '@affine-test/kit/utils/workspace';
|
2023-07-13 12:05:01 +03:00
|
|
|
import type { Page } from '@playwright/test';
|
|
|
|
import { expect } from '@playwright/test';
|
2023-06-30 08:40:00 +03:00
|
|
|
|
|
|
|
const createAndPinCollection = async (
|
|
|
|
page: Page,
|
|
|
|
options?: {
|
|
|
|
collectionName?: string;
|
2023-09-15 12:19:22 +03:00
|
|
|
skipInitialPage?: boolean;
|
2023-06-30 08:40:00 +03:00
|
|
|
}
|
|
|
|
) => {
|
2023-09-15 12:19:22 +03:00
|
|
|
if (!options?.skipInitialPage) {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitForEditorLoad(page);
|
|
|
|
}
|
2023-09-02 08:57:04 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-06-30 08:40:00 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('test page');
|
|
|
|
await page.getByTestId('all-pages').click();
|
2023-10-27 12:06:59 +03:00
|
|
|
const cell = page.getByTestId('page-list-item-title').getByText('test page');
|
2023-06-30 08:40:00 +03:00
|
|
|
await expect(cell).toBeVisible();
|
2023-09-28 05:53:04 +03:00
|
|
|
await page.getByTestId('create-first-filter').click({
|
|
|
|
delay: 200,
|
|
|
|
});
|
2023-10-27 12:06:59 +03:00
|
|
|
await page
|
|
|
|
.getByTestId('variable-select')
|
|
|
|
.getByTestId(`filler-tag-Created`)
|
|
|
|
.click({
|
|
|
|
delay: 200,
|
|
|
|
});
|
2023-09-28 05:53:04 +03:00
|
|
|
await page.getByTestId('save-as-collection').click({
|
|
|
|
delay: 200,
|
|
|
|
});
|
2023-06-30 08:40:00 +03:00
|
|
|
const title = page.getByTestId('input-collection-title');
|
|
|
|
await title.isVisible();
|
|
|
|
await title.fill(options?.collectionName ?? 'test collection');
|
|
|
|
await page.getByTestId('save-collection').click();
|
2023-07-05 05:50:43 +03:00
|
|
|
await page.waitForTimeout(100);
|
2023-06-30 08:40:00 +03:00
|
|
|
};
|
2023-07-24 12:02:35 +03:00
|
|
|
|
2023-08-11 09:59:06 +03:00
|
|
|
test('Show collections items in sidebar', async ({ page }) => {
|
2023-06-30 08:40:00 +03:00
|
|
|
await createAndPinCollection(page);
|
|
|
|
const collections = page.getByTestId('collections');
|
|
|
|
const items = collections.getByTestId('collection-item');
|
|
|
|
expect(await items.count()).toBe(1);
|
|
|
|
const first = items.first();
|
|
|
|
expect(await first.textContent()).toBe('test collection');
|
|
|
|
await first.getByTestId('fav-collapsed-button').click();
|
2023-08-10 22:56:16 +03:00
|
|
|
const collectionPage = collections.getByTestId('collection-page').nth(0);
|
2023-06-30 08:40:00 +03:00
|
|
|
expect(await collectionPage.textContent()).toBe('test page');
|
2023-08-17 21:36:17 +03:00
|
|
|
await collectionPage.hover();
|
2023-12-12 19:04:57 +03:00
|
|
|
await collectionPage
|
|
|
|
.getByTestId('left-sidebar-page-operation-button')
|
|
|
|
.click();
|
|
|
|
const deletePage = page.getByText('Delete');
|
2023-06-30 08:40:00 +03:00
|
|
|
await deletePage.click();
|
2023-10-02 06:22:12 +03:00
|
|
|
await page.getByTestId('confirm-delete-page').click();
|
2023-08-10 22:56:16 +03:00
|
|
|
expect(await collections.getByTestId('collection-page').count()).toBe(0);
|
2023-08-17 21:36:17 +03:00
|
|
|
await first.hover();
|
2023-06-30 08:40:00 +03:00
|
|
|
await first.getByTestId('collection-options').click();
|
2023-12-12 19:04:57 +03:00
|
|
|
const deleteCollection = page.getByText('Delete');
|
2023-06-30 08:40:00 +03:00
|
|
|
await deleteCollection.click();
|
2023-07-08 09:30:17 +03:00
|
|
|
await page.waitForTimeout(50);
|
2023-06-30 08:40:00 +03:00
|
|
|
expect(await items.count()).toBe(0);
|
2023-09-15 12:19:22 +03:00
|
|
|
await createAndPinCollection(page, {
|
|
|
|
skipInitialPage: true,
|
|
|
|
});
|
|
|
|
expect(await items.count()).toBe(1);
|
2023-11-17 10:50:01 +03:00
|
|
|
await clickSideBarAllPageButton(page);
|
2023-09-15 12:19:22 +03:00
|
|
|
await createLocalWorkspace(
|
|
|
|
{
|
|
|
|
name: 'Test 1',
|
|
|
|
},
|
|
|
|
page
|
|
|
|
);
|
|
|
|
await waitForEditorLoad(page);
|
|
|
|
expect(await items.count()).toBe(0);
|
|
|
|
await clickSideBarCurrentWorkspaceBanner(page);
|
|
|
|
await page.getByTestId('workspace-card').nth(0).click();
|
2023-06-30 08:40:00 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
test('edit collection', async ({ page }) => {
|
|
|
|
await createAndPinCollection(page);
|
|
|
|
const collections = page.getByTestId('collections');
|
|
|
|
const items = collections.getByTestId('collection-item');
|
|
|
|
expect(await items.count()).toBe(1);
|
|
|
|
const first = items.first();
|
2023-08-17 21:36:17 +03:00
|
|
|
await first.hover();
|
2023-06-30 08:40:00 +03:00
|
|
|
await first.getByTestId('collection-options').click();
|
2023-12-12 19:04:57 +03:00
|
|
|
const editCollection = page.getByText('Rename');
|
2023-06-30 08:40:00 +03:00
|
|
|
await editCollection.click();
|
2023-12-12 19:04:57 +03:00
|
|
|
await page.getByTestId('rename-modal-input').fill('123');
|
|
|
|
await page.keyboard.press('Enter');
|
2023-07-06 09:17:19 +03:00
|
|
|
await page.waitForTimeout(100);
|
|
|
|
expect(await first.textContent()).toBe('123');
|
|
|
|
});
|
2023-07-13 15:41:46 +03:00
|
|
|
|
2023-07-06 09:17:19 +03:00
|
|
|
test('edit collection and change filter date', async ({ page }) => {
|
|
|
|
await createAndPinCollection(page);
|
|
|
|
const collections = page.getByTestId('collections');
|
|
|
|
const items = collections.getByTestId('collection-item');
|
|
|
|
expect(await items.count()).toBe(1);
|
|
|
|
const first = items.first();
|
2023-08-17 21:36:17 +03:00
|
|
|
await first.hover();
|
2023-07-06 09:17:19 +03:00
|
|
|
await first.getByTestId('collection-options').click();
|
|
|
|
const editCollection = page
|
|
|
|
.getByTestId('collection-option')
|
2023-10-27 12:06:59 +03:00
|
|
|
.getByText('Rename');
|
2023-07-06 09:17:19 +03:00
|
|
|
await editCollection.click();
|
2023-12-12 19:04:57 +03:00
|
|
|
await page.getByTestId('rename-modal-input').fill('123');
|
|
|
|
await page.keyboard.press('Enter');
|
2023-07-05 05:50:43 +03:00
|
|
|
await page.waitForTimeout(100);
|
2023-06-30 08:40:00 +03:00
|
|
|
expect(await first.textContent()).toBe('123');
|
|
|
|
});
|
2023-07-04 10:32:11 +03:00
|
|
|
|
|
|
|
test('create temporary filter by click tag', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-09-02 08:57:04 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-07-04 10:32:11 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('test page');
|
|
|
|
await page.locator('affine-page-meta-data').click();
|
|
|
|
await page.locator('.add-tag').click();
|
|
|
|
await page.keyboard.type('TODO Tag');
|
|
|
|
await page.keyboard.press('Enter');
|
|
|
|
await page.keyboard.press('Escape');
|
|
|
|
await page.locator('.tag', { hasText: 'TODO Tag' }).click();
|
2023-10-27 12:06:59 +03:00
|
|
|
const cell = page.getByTestId('page-list-item-title').getByText('test page');
|
2023-07-04 10:32:11 +03:00
|
|
|
await expect(cell).toBeVisible();
|
2023-10-27 12:06:59 +03:00
|
|
|
expect(await page.getByTestId('page-list-item').count()).toBe(1);
|
2023-07-04 10:32:11 +03:00
|
|
|
await page.getByTestId('filter-arg').click();
|
2023-09-06 07:36:43 +03:00
|
|
|
|
|
|
|
await page.getByTestId('multi-select-TODO Tag').click();
|
2023-10-27 12:06:59 +03:00
|
|
|
expect(
|
|
|
|
await page.getByTestId('page-list-item').count()
|
|
|
|
).toBeGreaterThanOrEqual(2);
|
2023-07-04 10:32:11 +03:00
|
|
|
});
|
2023-07-26 07:32:55 +03:00
|
|
|
|
|
|
|
test('add collection from sidebar', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-09-02 08:57:04 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-07-26 07:32:55 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('test page');
|
|
|
|
await page.getByTestId('all-pages').click();
|
2023-10-27 12:06:59 +03:00
|
|
|
const cell = page.getByTestId('page-list-item-title').getByText('test page');
|
2023-07-26 07:32:55 +03:00
|
|
|
await expect(cell).toBeVisible();
|
|
|
|
const nullCollection = page.getByTestId(
|
|
|
|
'slider-bar-collection-null-description'
|
|
|
|
);
|
|
|
|
await expect(nullCollection).toBeVisible();
|
|
|
|
await page.getByTestId('slider-bar-add-collection-button').click();
|
|
|
|
const title = page.getByTestId('input-collection-title');
|
|
|
|
await title.isVisible();
|
|
|
|
await title.fill('test collection');
|
|
|
|
await page.getByTestId('save-collection').click();
|
|
|
|
await page.waitForTimeout(100);
|
|
|
|
const collections = page.getByTestId('collections');
|
|
|
|
const items = collections.getByTestId('collection-item');
|
|
|
|
expect(await items.count()).toBe(1);
|
|
|
|
await expect(nullCollection).not.toBeVisible();
|
|
|
|
});
|