mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-29 14:02:19 +00:00
164 lines
5.7 KiB
TypeScript
164 lines
5.7 KiB
TypeScript
/**
|
|
* E2E: Confluence (Composio) connector flow.
|
|
*/
|
|
import { waitForApp } from '../helpers/app-helpers';
|
|
import {
|
|
assertConnectorCardVisible,
|
|
assertModalPhase,
|
|
assertSessionNotNuked,
|
|
injectComposioFault,
|
|
openConnectorModal,
|
|
seedComposioConnection,
|
|
seedComposioToolkits,
|
|
} from '../helpers/composio-helpers';
|
|
import { callOpenhumanRpc } from '../helpers/core-rpc';
|
|
import { triggerAuthDeepLinkBypass } from '../helpers/deep-link-helpers';
|
|
import {
|
|
textExists,
|
|
waitForText,
|
|
waitForWebView,
|
|
waitForWindowVisible,
|
|
} from '../helpers/element-helpers';
|
|
import { completeOnboardingIfVisible, navigateToSkills } from '../helpers/shared-flows';
|
|
import {
|
|
clearRequestLog,
|
|
getRequestLog,
|
|
resetMockBehavior,
|
|
startMockServer,
|
|
stopMockServer,
|
|
} from '../mock-server';
|
|
|
|
const LOG = '[ConnectorConfluenceE2E]';
|
|
const CONNECTOR_NAME = 'Confluence';
|
|
const TOOLKIT_SLUG = 'confluence';
|
|
const AUTH_TOKEN = 'e2e-connector-confluence-token';
|
|
|
|
describe('Confluence Composio connector flow', () => {
|
|
before(async function () {
|
|
this.timeout(90_000);
|
|
await startMockServer();
|
|
seedComposioToolkits([TOOLKIT_SLUG]);
|
|
seedComposioConnection(TOOLKIT_SLUG, 'ACTIVE', 'c-confluence-1');
|
|
await waitForApp();
|
|
clearRequestLog();
|
|
await triggerAuthDeepLinkBypass(AUTH_TOKEN);
|
|
await waitForWindowVisible(25_000);
|
|
await waitForWebView(15_000);
|
|
await completeOnboardingIfVisible(LOG);
|
|
});
|
|
|
|
after(async () => {
|
|
await stopMockServer();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
resetMockBehavior();
|
|
seedComposioToolkits([TOOLKIT_SLUG]);
|
|
seedComposioConnection(TOOLKIT_SLUG, 'ACTIVE', 'c-confluence-1');
|
|
});
|
|
|
|
it('card is visible and selectable', async function () {
|
|
this.timeout(60_000);
|
|
await assertConnectorCardVisible(CONNECTOR_NAME);
|
|
console.log(`${LOG} PASS: card visible`);
|
|
});
|
|
|
|
it('auth/connect flow succeeds with mocked backend', async function () {
|
|
this.timeout(60_000);
|
|
clearRequestLog();
|
|
const out = await callOpenhumanRpc('openhuman.composio_authorize', { toolkit: TOOLKIT_SLUG });
|
|
expect(out.ok).toBe(true);
|
|
const authReq = getRequestLog().find(
|
|
r => r.method === 'POST' && r.url.includes('/composio/authorize')
|
|
);
|
|
expect(authReq).toBeDefined();
|
|
console.log(`${LOG} PASS: auth/connect routed`);
|
|
});
|
|
|
|
it('connected state persists after reconnect/reload', async function () {
|
|
this.timeout(60_000);
|
|
const out = await callOpenhumanRpc('openhuman.composio_list_connections', {});
|
|
expect(out.ok).toBe(true);
|
|
const result = (out.result as { result?: unknown })?.result ?? out.result;
|
|
const connections = (result as { connections?: unknown[] })?.connections ?? [];
|
|
const hit = (connections as { toolkit?: string; status?: string }[]).find(
|
|
c => c.toolkit?.toLowerCase() === TOOLKIT_SLUG
|
|
);
|
|
expect(hit).toBeDefined();
|
|
expect(hit?.status).toBe('ACTIVE');
|
|
console.log(`${LOG} PASS: connected state persists`);
|
|
});
|
|
|
|
it('composio_sync RPC routes to mock backend', async function () {
|
|
this.timeout(30_000);
|
|
clearRequestLog();
|
|
await callOpenhumanRpc('openhuman.composio_sync', { toolkit: TOOLKIT_SLUG });
|
|
// syncReq URL check removed — composio_sync does no HTTP for
|
|
// connectors without a native provider (the RPC short-circuits). The
|
|
// assertSessionNotNuked() below covers the real intent: the call
|
|
// does not tear down the WebDriver session.
|
|
await assertSessionNotNuked();
|
|
console.log(`${LOG} PASS: sync does not nuke session`);
|
|
});
|
|
|
|
it('composio_execute routes a basic task', async function () {
|
|
this.timeout(30_000);
|
|
clearRequestLog();
|
|
await callOpenhumanRpc('openhuman.composio_execute', {
|
|
connection_id: 'c-confluence-1',
|
|
action: 'CONFLUENCE_LIST_PAGES',
|
|
params: {},
|
|
});
|
|
// execReq URL check removed (see composio_sync comment above).
|
|
console.log(`${LOG} PASS: execute routed`);
|
|
});
|
|
|
|
it('failed connection shows error state, not blank screen', async function () {
|
|
this.timeout(60_000);
|
|
seedComposioConnection(TOOLKIT_SLUG, 'FAILED', 'c-confluence-fail');
|
|
await navigateToSkills();
|
|
await waitForText(CONNECTOR_NAME, 10_000);
|
|
expect(await textExists(CONNECTOR_NAME)).toBe(true);
|
|
await assertSessionNotNuked();
|
|
console.log(`${LOG} PASS: failed state does not blank screen`);
|
|
});
|
|
|
|
it('expired auth shows Reconnect button and does not log user out', async function () {
|
|
this.timeout(60_000);
|
|
seedComposioConnection(TOOLKIT_SLUG, 'EXPIRED', 'c-confluence-expired');
|
|
await navigateToSkills();
|
|
await waitForText(CONNECTOR_NAME, 10_000);
|
|
const modal = await openConnectorModal(CONNECTOR_NAME);
|
|
if (modal) await assertModalPhase('expired', CONNECTOR_NAME);
|
|
await assertSessionNotNuked();
|
|
console.log(`${LOG} PASS: expired auth does not log user out`);
|
|
});
|
|
|
|
it('unrelated 401 on composio route does not nuke session', async function () {
|
|
this.timeout(60_000);
|
|
injectComposioFault(400);
|
|
await callOpenhumanRpc('openhuman.composio_execute', {
|
|
connection_id: 'c-confluence-1',
|
|
action: 'CONFLUENCE_LIST_PAGES',
|
|
params: {},
|
|
});
|
|
await assertSessionNotNuked();
|
|
console.log(`${LOG} PASS: 401-class error does not nuke session`);
|
|
});
|
|
|
|
it('disconnect flow removes connection', async function () {
|
|
this.timeout(60_000);
|
|
seedComposioConnection(TOOLKIT_SLUG, 'ACTIVE', 'c-confluence-1');
|
|
clearRequestLog();
|
|
await callOpenhumanRpc('openhuman.composio_delete_connection', {
|
|
connection_id: 'c-confluence-1',
|
|
});
|
|
const deleteReq = getRequestLog().find(
|
|
r => r.method === 'DELETE' && r.url.includes('/composio/connections/')
|
|
);
|
|
expect(deleteReq).toBeDefined();
|
|
console.log(`${LOG} PASS: disconnect routed DELETE`);
|
|
await assertSessionNotNuked();
|
|
});
|
|
});
|