Files
n8n/packages/testing/playwright/tests/e2e/chat-hub/chat-hub-chat-user.spec.ts
T
alighasami 3d5eaf9445
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
first commit
2026-03-17 16:22:57 +03:30

57 lines
2.1 KiB
TypeScript

import { chatHubTestConfig, expect, test } from './fixtures';
import { INSTANCE_OWNER_CREDENTIALS } from '../../../config/test-users';
import { ChatHubChatPage } from '../../../pages/ChatHubChatPage';
test.use(chatHubTestConfig);
test.describe('Chat user role @capability:proxy', {
annotation: [
{ type: 'owner', description: 'Chat' },
],
}, () => {
test('use chat as chat user @auth:chat', async ({ n8n, anthropicApiKey }) => {
const ownerN8n = await n8n.start.withUser(INSTANCE_OWNER_CREDENTIALS);
// Create global credential as owner
const cred = await ownerN8n.api.credentials.createCredential({
name: 'Global Anthropic API key',
type: 'anthropicApi',
isGlobal: true,
data: {
apiKey: anthropicApiKey,
},
});
await n8n.goHome();
await n8n.page.waitForURL('/home/chat'); // home is chat UI for chat users
const page = new ChatHubChatPage(n8n.page);
// Verify global credential is available and pre-selected
await expect(page.getModelSelectorButton()).toContainText(/claude/i); // pre-selected
await expect(page.getSelectedCredentialName()).toHaveText('Global Anthropic API key');
await page.getModelSelectorButton().click();
await page.getVisiblePopoverMenuItem('Anthropic').click();
await page.getVisiblePopoverMenuItem('Configure credentials', { exact: true }).click();
// Verify other credentials are not available and cannot be created
await page.credModal.getCredentialSelector().click();
await expect(page.credModal.getCreateButton()).toBeDisabled();
await expect(page.credModal.getVisiblePopoverOption()).toHaveCount(1);
await expect(page.credModal.getVisiblePopoverOption().nth(0)).toContainText(
'Global Anthropic API key',
);
await page.credModal.getCloseButton().click();
// Send chat message
await page.getChatInput().fill('Hi');
await page.getSendButton().click();
await expect(page.getChatMessages().nth(0)).toHaveText('Hi');
await expect(page.getChatMessages().nth(1)).toContainText('Hi there!');
await expect(page.getChatMessages()).toHaveCount(2);
await ownerN8n.api.credentials.deleteCredential(cred.id);
});
});