mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-12 17:22:38 +02:00
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
|
|
import {
|
||
|
|
type ConnectorRow,
|
||
|
|
deleteConnector,
|
||
|
|
runNativeGoogleGmailOAuth,
|
||
|
|
} from "../../helpers/api/connectors";
|
||
|
|
import { searchSpaceFixtures } from "../search-space.fixture";
|
||
|
|
|
||
|
|
export type NativeGmailFixtures = {
|
||
|
|
/**
|
||
|
|
* A pre-connected native Google Gmail connector inside the fixture's
|
||
|
|
* `searchSpace`. OAuth uses E2E native Google fakes and is cleaned up
|
||
|
|
* automatically after the test.
|
||
|
|
*/
|
||
|
|
nativeGmailConnector: ConnectorRow;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const nativeGmailFixtures = searchSpaceFixtures.extend<NativeGmailFixtures>({
|
||
|
|
nativeGmailConnector: async ({ request, apiToken, searchSpace }, use) => {
|
||
|
|
const { connector } = await runNativeGoogleGmailOAuth(request, apiToken, searchSpace.id);
|
||
|
|
if (!connector) {
|
||
|
|
throw new Error(
|
||
|
|
"nativeGmailConnector fixture: OAuth completed but no GOOGLE_GMAIL_CONNECTOR was created. " +
|
||
|
|
"Check the backend log — the native Google fake likely rejected an unmodelled call."
|
||
|
|
);
|
||
|
|
}
|
||
|
|
try {
|
||
|
|
await use(connector);
|
||
|
|
} finally {
|
||
|
|
await deleteConnector(request, apiToken, connector.id);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
});
|