Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { test, expect } from '../../../fixtures/base';
|
|
|
|
test.describe(
|
|
'OAuth Credentials',
|
|
{
|
|
annotation: [{ type: 'owner', description: 'Identity & Access' }],
|
|
},
|
|
() => {
|
|
test('should create and connect with Google OAuth2', async ({ n8n }) => {
|
|
const projectId = await n8n.start.fromNewProjectBlankCanvas();
|
|
await n8n.navigate.toCredentials(projectId);
|
|
await n8n.credentials.emptyListCreateCredentialButton.click();
|
|
await n8n.credentials.createCredentialFromCredentialPicker(
|
|
'Google OAuth2 API',
|
|
{
|
|
clientId: 'test-key',
|
|
clientSecret: 'test-secret',
|
|
},
|
|
{ closeDialog: false, skipSave: true },
|
|
);
|
|
|
|
const popupPromise = n8n.page.waitForEvent('popup');
|
|
await n8n.credentials.credentialModal.oauthConnectButton.click();
|
|
|
|
const popup = await popupPromise;
|
|
const popupUrl = popup.url();
|
|
expect(popupUrl).toContain('accounts.google.com');
|
|
expect(popupUrl).toContain('client_id=test-key');
|
|
|
|
await popup.close();
|
|
|
|
await n8n.page.evaluate(() => {
|
|
const channel = new BroadcastChannel('oauth-callback');
|
|
channel.postMessage('success');
|
|
});
|
|
|
|
await expect(n8n.credentials.credentialModal.oauthConnectSuccessBanner).toContainText(
|
|
'Account connected',
|
|
);
|
|
});
|
|
},
|
|
);
|