mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 00:37:10 +02:00
25 lines
755 B
TypeScript
25 lines
755 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);
|
|
});
|
|
}
|
|
},
|
|
);
|