mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-08 22:22:17 +02:00
- Added the ensure_publication function to create and verify the zero_publication if it is missing, ensuring idempotency during database initialization. - Integrated ensure_publication into the create_db_and_tables function to prevent zero-cache crash loops on startup. - Introduced a self-check script to validate the ensure_publication functionality on a create_all-bootstrapped database. - Updated various components to reflect the transition from search space to workspace, including adjustments in imports and routing paths.
81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { test as base } from "@playwright/test";
|
|
import { acquireTestToken } from "../helpers/api/auth";
|
|
import {
|
|
createSearchSpace,
|
|
deleteSearchSpace,
|
|
type SearchSpaceRow,
|
|
} from "../helpers/api/workspaces";
|
|
import { uniqueSearchSpaceName } from "../helpers/canary";
|
|
|
|
export type SearchSpaceFixtures = {
|
|
/**
|
|
* Bearer token for the seeded test user. Worker-scoped so we only
|
|
* log in once per worker (logins are cheap, but caching is cheaper).
|
|
*/
|
|
apiToken: string;
|
|
/**
|
|
* A fresh, named search space for the current test. Cleaned up
|
|
* automatically after the test finishes.
|
|
*/
|
|
searchSpace: SearchSpaceRow;
|
|
};
|
|
|
|
const SESSION_COOKIE_NAME = process.env.SESSION_COOKIE_NAME || "surfsense_session";
|
|
|
|
// Reuse the session cookie written by tests/auth.setup.ts; on cache miss we
|
|
// mint a fresh one via /__e2e__/auth/token (rate-limit-free).
|
|
const AUTH_STATE_PATH = path.join(__dirname, "..", "..", "playwright", ".auth", "user.json");
|
|
|
|
function loadCachedSessionToken(): string | null {
|
|
try {
|
|
const raw = fs.readFileSync(AUTH_STATE_PATH, "utf8");
|
|
const parsed = JSON.parse(raw) as {
|
|
cookies?: Array<{ name?: string; value?: string }>;
|
|
};
|
|
for (const cookie of parsed.cookies ?? []) {
|
|
if (cookie.name === SESSION_COOKIE_NAME && cookie.value) {
|
|
return cookie.value;
|
|
}
|
|
}
|
|
} catch {
|
|
// Fall back to a fresh login.
|
|
}
|
|
return null;
|
|
}
|
|
|
|
export const searchSpaceFixtures = base.extend<SearchSpaceFixtures, { apiTokenWorker: string }>({
|
|
apiTokenWorker: [
|
|
async ({ playwright }, use) => {
|
|
const cached = loadCachedSessionToken();
|
|
if (cached) {
|
|
await use(cached);
|
|
return;
|
|
}
|
|
const ctx = await playwright.request.newContext();
|
|
try {
|
|
const token = await acquireTestToken(ctx);
|
|
await use(token);
|
|
} finally {
|
|
await ctx.dispose();
|
|
}
|
|
},
|
|
{ scope: "worker" },
|
|
],
|
|
apiToken: async ({ apiTokenWorker }, use) => {
|
|
await use(apiTokenWorker);
|
|
},
|
|
searchSpace: async ({ request, apiToken }, use) => {
|
|
const space = await createSearchSpace(
|
|
request,
|
|
apiToken,
|
|
uniqueSearchSpaceName("composio-drive-e2e")
|
|
);
|
|
try {
|
|
await use(space);
|
|
} finally {
|
|
await deleteSearchSpace(request, apiToken, space.id);
|
|
}
|
|
},
|
|
});
|