2023-05-30 08:14:10 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
|
|
|
|
import { openHomePage } from '../libs/load-page';
|
2023-06-07 12:31:54 +03:00
|
|
|
import { waitEditorLoad } from '../libs/page-logic';
|
2023-05-30 08:14:10 +03:00
|
|
|
|
|
|
|
test('drag a page from "All pages" list onto the "Trash" folder in the sidebar to move it to trash list', async ({
|
|
|
|
page,
|
|
|
|
}) => {
|
|
|
|
// TODO-Doma
|
|
|
|
// Init test db with known workspaces and open "All Pages" page via url directly
|
|
|
|
{
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-05-30 08:14:10 +03:00
|
|
|
await page.getByText('All Pages').click();
|
2023-07-07 17:15:27 +03:00
|
|
|
await page.waitForTimeout(500);
|
2023-05-30 08:14:10 +03:00
|
|
|
}
|
|
|
|
|
2023-06-28 11:45:05 +03:00
|
|
|
const title = 'AFFiNE - not just a note taking app';
|
|
|
|
|
2023-05-30 08:14:10 +03:00
|
|
|
// Drag-and-drop
|
|
|
|
// Ref: https://playwright.dev/docs/input#dragging-manually
|
2023-06-28 11:45:05 +03:00
|
|
|
await page.getByText(title).hover();
|
2023-05-30 08:14:10 +03:00
|
|
|
await page.mouse.down();
|
2023-05-31 11:22:43 +03:00
|
|
|
await page.waitForTimeout(1000);
|
2023-05-30 08:14:10 +03:00
|
|
|
await page.getByText('Trash').hover();
|
|
|
|
await page.mouse.up();
|
|
|
|
|
|
|
|
await expect(
|
|
|
|
page.getByText('Successfully deleted'),
|
|
|
|
'A toast containing success message is shown'
|
|
|
|
).toBeVisible();
|
|
|
|
|
|
|
|
await expect(
|
2023-06-28 11:45:05 +03:00
|
|
|
page.getByText(title),
|
2023-05-30 08:14:10 +03:00
|
|
|
'The deleted post is no longer on the All Page list'
|
|
|
|
).toHaveCount(0);
|
|
|
|
|
|
|
|
// TODO-Doma
|
|
|
|
// Visit trash page via url
|
|
|
|
await page.getByText('Trash', { exact: true }).click();
|
|
|
|
await expect(
|
2023-06-28 11:45:05 +03:00
|
|
|
page.getByText(title),
|
2023-05-30 08:14:10 +03:00
|
|
|
'The deleted post exists in the Trash list'
|
|
|
|
).toHaveCount(1);
|
|
|
|
});
|