mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-12 09:12:40 +02:00
test(web): add Jira OAuth fixture
This commit is contained in:
parent
ebdf6cbaed
commit
ddfbe0b611
3 changed files with 86 additions and 0 deletions
28
surfsense_web/tests/fixtures/connectors/jira.fixture.ts
vendored
Normal file
28
surfsense_web/tests/fixtures/connectors/jira.fixture.ts
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { type ConnectorRow, deleteConnector, runJiraOAuth } from "../../helpers/api/connectors";
|
||||
import { searchSpaceFixtures } from "../search-space.fixture";
|
||||
|
||||
export type JiraFixtures = {
|
||||
/**
|
||||
* A pre-connected Jira connector inside the fixture's `searchSpace`.
|
||||
* OAuth and MCP tool calls use E2E Jira fakes and are cleaned up
|
||||
* automatically after the test.
|
||||
*/
|
||||
jiraConnector: ConnectorRow;
|
||||
};
|
||||
|
||||
export const jiraFixtures = searchSpaceFixtures.extend<JiraFixtures>({
|
||||
jiraConnector: async ({ request, apiToken, searchSpace }, use) => {
|
||||
const { connector } = await runJiraOAuth(request, apiToken, searchSpace.id);
|
||||
if (!connector) {
|
||||
throw new Error(
|
||||
"jiraConnector fixture: OAuth completed but no JIRA_CONNECTOR was created. " +
|
||||
"Check the backend log — the Jira MCP fake likely rejected an unmodelled call."
|
||||
);
|
||||
}
|
||||
try {
|
||||
await use(connector);
|
||||
} finally {
|
||||
await deleteConnector(request, apiToken, connector.id);
|
||||
}
|
||||
},
|
||||
});
|
||||
8
surfsense_web/tests/fixtures/index.ts
vendored
8
surfsense_web/tests/fixtures/index.ts
vendored
|
|
@ -24,6 +24,8 @@
|
|||
* └─ notionWithChatTest — chatThread
|
||||
* └─ linearFixtures — linearConnector
|
||||
* └─ linearWithChatTest — chatThread
|
||||
* └─ jiraFixtures — jiraConnector
|
||||
* └─ jiraWithChatTest — chatThread
|
||||
*
|
||||
* To add a new connector (Gmail, Slack, manual upload, etc.):
|
||||
* 1. Add a fixture file under `fixtures/connectors/<name>.fixture.ts`.
|
||||
|
|
@ -35,6 +37,7 @@ export { chatThreadFixtures } from "./chat-thread.fixture";
|
|||
export { composioCalendarFixtures } from "./connectors/composio-calendar.fixture";
|
||||
export { composioDriveFixtures } from "./connectors/composio-drive.fixture";
|
||||
export { composioGmailFixtures } from "./connectors/composio-gmail.fixture";
|
||||
export { jiraFixtures } from "./connectors/jira.fixture";
|
||||
export { linearFixtures } from "./connectors/linear.fixture";
|
||||
export { nativeCalendarFixtures } from "./connectors/native-calendar.fixture";
|
||||
export { nativeDriveFixtures } from "./connectors/native-drive.fixture";
|
||||
|
|
@ -46,6 +49,7 @@ import { type ChatThreadFixtures, chatThreadFixtures } from "./chat-thread.fixtu
|
|||
import { composioCalendarFixtures } from "./connectors/composio-calendar.fixture";
|
||||
import { composioDriveFixtures } from "./connectors/composio-drive.fixture";
|
||||
import { composioGmailFixtures } from "./connectors/composio-gmail.fixture";
|
||||
import { jiraFixtures } from "./connectors/jira.fixture";
|
||||
import { linearFixtures } from "./connectors/linear.fixture";
|
||||
import { nativeCalendarFixtures } from "./connectors/native-calendar.fixture";
|
||||
import { nativeDriveFixtures } from "./connectors/native-drive.fixture";
|
||||
|
|
@ -93,3 +97,7 @@ export const notionWithChatTest = notionFixtures.extend<ChatThreadFixtures>(chat
|
|||
export const linearTest = linearFixtures;
|
||||
/** `test` for Linear specs that also need a chat thread. */
|
||||
export const linearWithChatTest = linearFixtures.extend<ChatThreadFixtures>(chatThreadFixtures);
|
||||
/** `test` for specs that also need a pre-connected Jira connector. */
|
||||
export const jiraTest = jiraFixtures;
|
||||
/** `test` for Jira specs that also need a chat thread. */
|
||||
export const jiraWithChatTest = jiraFixtures.extend<ChatThreadFixtures>(chatThreadFixtures);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue