mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-13 17:52:38 +02:00
test(web): add native Google Calendar OAuth fixture
This commit is contained in:
parent
597bd34053
commit
d257e15e49
3 changed files with 88 additions and 0 deletions
36
surfsense_web/tests/fixtures/connectors/native-calendar.fixture.ts
vendored
Normal file
36
surfsense_web/tests/fixtures/connectors/native-calendar.fixture.ts
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
import {
|
||||
type ConnectorRow,
|
||||
deleteConnector,
|
||||
runNativeGoogleCalendarOAuth,
|
||||
} from "../../helpers/api/connectors";
|
||||
import { searchSpaceFixtures } from "../search-space.fixture";
|
||||
|
||||
export type NativeCalendarFixtures = {
|
||||
/**
|
||||
* A pre-connected native Google Calendar connector inside the fixture's
|
||||
* `searchSpace`. OAuth uses E2E native Google fakes and is cleaned up
|
||||
* automatically after the test.
|
||||
*/
|
||||
nativeCalendarConnector: ConnectorRow;
|
||||
};
|
||||
|
||||
export const nativeCalendarFixtures = searchSpaceFixtures.extend<NativeCalendarFixtures>({
|
||||
nativeCalendarConnector: async ({ request, apiToken, searchSpace }, use) => {
|
||||
const { connector } = await runNativeGoogleCalendarOAuth(
|
||||
request,
|
||||
apiToken,
|
||||
searchSpace.id
|
||||
);
|
||||
if (!connector) {
|
||||
throw new Error(
|
||||
"nativeCalendarConnector fixture: OAuth completed but no GOOGLE_CALENDAR_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);
|
||||
}
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue