mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-18 02:21:51 +08:00
ee899a267b
#### PR Dependency Tree * **PR #15448** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added workspace artifact upload, browsing, removal, deduplication, and library ownership support. * Copilot now supports scoped document and artifact search, canvas reading, live editor context, and frontend tools. * Added scope and focus selectors with source-resolution receipts in chat. * Added embedding health, progress, synchronization, and retrieval capabilities. * Added BYOK policy visibility, provider restrictions, endpoint dialect selection, and validation. * Added delegated editor interactions and userdata document authorization. * **Bug Fixes** * Improved attachment handling, cancellation, access control, retrieval fallbacks, workspace synchronization, and configuration validation. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import { skipOnboarding } from '@affine-test/kit/playwright';
|
|
import { createRandomAIUser } from '@affine-test/kit/utils/cloud';
|
|
import { openHomePage, setCoreUrl } from '@affine-test/kit/utils/load-page';
|
|
import {
|
|
clickNewPageButton,
|
|
waitForEditorLoad,
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
import { createLocalWorkspace } from '@affine-test/kit/utils/workspace';
|
|
import type { Store } from '@blocksuite/affine/store';
|
|
import type { Page } from '@playwright/test';
|
|
|
|
declare global {
|
|
interface Window {
|
|
doc: Store;
|
|
}
|
|
}
|
|
|
|
export class TestUtils {
|
|
private static instance: TestUtils;
|
|
private isProduction: boolean;
|
|
|
|
private constructor() {
|
|
this.isProduction = process.env.NODE_ENV === 'production';
|
|
if (
|
|
process.env.PLAYWRIGHT_USER_AGENT &&
|
|
process.env.PLAYWRIGHT_EMAIL &&
|
|
!process.env.PLAYWRIGHT_PASSWORD
|
|
) {
|
|
setCoreUrl(process.env.PLAYWRIGHT_CORE_URL || 'http://localhost:8080');
|
|
this.isProduction = true;
|
|
}
|
|
}
|
|
|
|
public static getInstance(): TestUtils {
|
|
if (!TestUtils.instance) {
|
|
TestUtils.instance = new TestUtils();
|
|
}
|
|
return TestUtils.instance;
|
|
}
|
|
|
|
public getUser() {
|
|
if (
|
|
!this.isProduction ||
|
|
!process.env.PLAYWRIGHT_EMAIL ||
|
|
!process.env.PLAYWRIGHT_PASSWORD
|
|
) {
|
|
return createRandomAIUser();
|
|
}
|
|
|
|
return {
|
|
email: process.env.PLAYWRIGHT_EMAIL,
|
|
password: process.env.PLAYWRIGHT_PASSWORD,
|
|
};
|
|
}
|
|
|
|
public async createNewPage(page: Page) {
|
|
await clickNewPageButton(page);
|
|
await waitForEditorLoad(page);
|
|
}
|
|
|
|
public async setupTestEnvironment(page: Page) {
|
|
await skipOnboarding(page.context());
|
|
await openHomePage(page);
|
|
await this.createNewPage(page);
|
|
}
|
|
|
|
public async createTestWorkspace(page: Page, name: string = 'test') {
|
|
await createLocalWorkspace({ name }, page);
|
|
}
|
|
}
|