mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
23 lines
739 B
TypeScript
23 lines
739 B
TypeScript
import { test, expect } from '../../../fixtures/base';
|
|
|
|
test.describe('Authentication', {
|
|
annotation: [
|
|
{ type: 'owner', description: 'Identity & Access' },
|
|
],
|
|
}, () => {
|
|
const testCases = [
|
|
{ role: 'default', expectedUrl: /\/workflow/, auth: '' },
|
|
{ role: 'owner', expectedUrl: /\/workflow/, auth: '@auth:owner' },
|
|
{ role: 'admin', expectedUrl: /\/workflow/, auth: '@auth:admin' },
|
|
{ role: 'member', expectedUrl: /\/workflow/, auth: '@auth:member' },
|
|
{ role: 'none', expectedUrl: /\/signin/, auth: '@auth:none' },
|
|
];
|
|
|
|
for (const { role, expectedUrl, auth } of testCases) {
|
|
test(`${role} authentication ${auth}`, async ({ n8n }) => {
|
|
await n8n.goHome();
|
|
await expect(n8n.page).toHaveURL(expectedUrl);
|
|
});
|
|
}
|
|
});
|