mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 17:42:48 +03:00
126 lines
4.0 KiB
TypeScript
126 lines
4.0 KiB
TypeScript
import path from 'node:path';
|
|
|
|
import type { apis } from '@affine/electron-api';
|
|
import { test } from '@affine-test/kit/electron';
|
|
import { clickSideBarCurrentWorkspaceBanner } from '@affine-test/kit/utils/sidebar';
|
|
import { expect } from '@playwright/test';
|
|
import fs from 'fs-extra';
|
|
|
|
declare global {
|
|
interface Window {
|
|
apis: typeof apis;
|
|
}
|
|
}
|
|
|
|
test('check workspace has a DB file', async ({ appInfo, workspace }) => {
|
|
const w = await workspace.current();
|
|
const dbPath = path.join(
|
|
appInfo.sessionData,
|
|
'workspaces',
|
|
w.meta.id,
|
|
'storage.db'
|
|
);
|
|
// check if db file exists
|
|
expect(await fs.exists(dbPath)).toBe(true);
|
|
});
|
|
|
|
test.skip('move workspace db file', async ({ page, appInfo, workspace }) => {
|
|
const w = await workspace.current();
|
|
await page.getByTestId('slider-bar-workspace-setting-button').click();
|
|
await expect(page.getByTestId('setting-modal')).toBeVisible();
|
|
|
|
// goto workspace setting
|
|
await page.getByTestId('workspace-list-item').click();
|
|
|
|
const tmpPath = path.join(appInfo.sessionData, w.meta.id + '-tmp-dir');
|
|
|
|
// move db file to tmp folder
|
|
await page.evaluate(tmpPath => {
|
|
window.apis?.dialog.setFakeDialogResult({
|
|
filePath: tmpPath,
|
|
});
|
|
}, tmpPath);
|
|
|
|
await page.getByTestId('move-folder').click();
|
|
// check if db file exists
|
|
await page.waitForSelector('text="Move folder success"');
|
|
expect(await fs.exists(tmpPath)).toBe(true);
|
|
// check if db file exists under tmpPath (a file ends with .affine)
|
|
const files = await fs.readdir(tmpPath);
|
|
expect(files.some(f => f.endsWith('.affine'))).toBe(true);
|
|
});
|
|
|
|
//TODO:fix test
|
|
test.fixme('export then add', async ({ page, appInfo, workspace }) => {
|
|
const w = await workspace.current();
|
|
|
|
await page.focus('.affine-doc-page-block-title');
|
|
await page.fill('.affine-doc-page-block-title', 'test1');
|
|
|
|
await page.getByTestId('slider-bar-workspace-setting-button').click();
|
|
await expect(page.getByTestId('setting-modal')).toBeVisible();
|
|
|
|
const originalId = w.meta.id;
|
|
|
|
const newWorkspaceName = 'new-test-name';
|
|
|
|
// goto workspace setting
|
|
await page.getByTestId('workspace-list-item').click();
|
|
const input = page.getByTestId('workspace-name-input');
|
|
await expect(input).toBeVisible();
|
|
|
|
// change workspace name
|
|
await input.fill(newWorkspaceName);
|
|
await page.getByTestId('save-workspace-name').click();
|
|
await page.waitForSelector('text="Update workspace name success"');
|
|
|
|
const tmpPath = path.join(appInfo.sessionData, w.meta.id + '-tmp.db');
|
|
|
|
// export db file to tmp folder
|
|
await page.evaluate(tmpPath => {
|
|
window.apis?.dialog.setFakeDialogResult({
|
|
filePath: tmpPath,
|
|
});
|
|
}, tmpPath);
|
|
|
|
await page.getByTestId('export-affine-backup').click();
|
|
await page.waitForSelector('text="Export success"');
|
|
await page.waitForTimeout(1000);
|
|
expect(await fs.exists(tmpPath)).toBe(true);
|
|
|
|
await page.getByTestId('modal-close-button').click();
|
|
|
|
// add workspace
|
|
// we are reusing the same db file so that we don't need to maintain one
|
|
// in the codebase
|
|
await clickSideBarCurrentWorkspaceBanner(page);
|
|
await page.getByTestId('add-or-new-workspace').click();
|
|
|
|
await page.evaluate(tmpPath => {
|
|
window.apis?.dialog.setFakeDialogResult({
|
|
filePath: tmpPath,
|
|
});
|
|
}, tmpPath);
|
|
|
|
// load the db file
|
|
await page.getByTestId('add-workspace').click();
|
|
|
|
// should show "Added Successfully" dialog
|
|
// await page.waitForSelector('text="Added Successfully"');
|
|
// await page.getByTestId('create-workspace-continue-button').click();
|
|
|
|
// sleep for a while to wait for the workspace to be added :D
|
|
await page.waitForTimeout(2000);
|
|
const newWorkspace = await workspace.current();
|
|
expect(newWorkspace.meta.id).not.toBe(originalId);
|
|
// check its name is correct
|
|
await expect(page.getByTestId('workspace-name')).toHaveText(newWorkspaceName);
|
|
|
|
// find button which has the title "test1"
|
|
const test1PageButton = await page.waitForSelector(`text="test1"`);
|
|
await test1PageButton.click();
|
|
|
|
const title = page.locator('[data-block-is-title] >> text="test1"');
|
|
await expect(title).toBeVisible();
|
|
});
|