mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-20 00:11:50 +00:00
* test(e2e): assert internal-user navbar identity is scoped to that user The existing login.spec.ts only checks the admin's navbar identity. This adds the symmetric check for the internal user — verifying the account button + dropdown surface the internal user's email, id, and role, and that no admin-scoped values leak through. * test(e2e): harden navbar identity test per review feedback Locate the user dropdown panel by a data-testid on the popupRender div instead of Ant Design internal + Tailwind class names, so styling refactors no longer risk breaking the identity-scoping assertions. Source the seeded user emails/ids from shared constants (match seed.sql) instead of hardcoding them inline.
29 lines
1.5 KiB
TypeScript
29 lines
1.5 KiB
TypeScript
// Storage state paths for each role
|
|
export const ADMIN_STORAGE_PATH = "admin.storageState.json";
|
|
export const ADMIN_VIEWER_STORAGE_PATH = "adminViewer.storageState.json";
|
|
export const INTERNAL_USER_STORAGE_PATH = "internalUser.storageState.json";
|
|
export const INTERNAL_VIEWER_STORAGE_PATH = "internalViewer.storageState.json";
|
|
export const TEAM_ADMIN_STORAGE_PATH = "teamAdmin.storageState.json";
|
|
|
|
// Seeded user identities (match seed.sql)
|
|
export const E2E_PROXY_ADMIN_USER_ID = "e2e-proxy-admin";
|
|
export const E2E_PROXY_ADMIN_EMAIL = "admin@test.local";
|
|
export const E2E_INTERNAL_USER_ID = "e2e-internal-user";
|
|
export const E2E_INTERNAL_USER_EMAIL = "internal@test.local";
|
|
|
|
// Key aliases for seeded test keys (match seed.sql)
|
|
export const E2E_UPDATE_LIMITS_KEY_ALIAS = "e2eUpdateLimitsKey";
|
|
export const E2E_DELETE_KEY_ALIAS = "e2eDeleteKey";
|
|
export const E2E_REGENERATE_KEY_ALIAS = "e2eRegenerateKey";
|
|
export const E2E_INTERNAL_USER_KEY_ALIAS = "e2eInternalUserKey";
|
|
export const E2E_VIEWER_KEY_ALIAS = "e2eViewerKey";
|
|
|
|
// Team identifiers (match seed.sql)
|
|
export const E2E_TEAM_CRUD_ID = "e2e-team-crud";
|
|
export const E2E_TEAM_CRUD_ALIAS = "E2E Team CRUD";
|
|
export const E2E_TEAM_DELETE_ID = "e2e-team-delete";
|
|
export const E2E_TEAM_DELETE_ALIAS = "E2E Team Delete";
|
|
export const E2E_TEAM_ORG_ID = "e2e-team-org";
|
|
export const E2E_TEAM_ORG_ALIAS = "E2E Team In Org";
|
|
export const E2E_TEAM_NO_ADMIN_ID = "e2e-team-no-admin";
|
|
export const E2E_TEAM_NO_ADMIN_ALIAS = "E2E Team No Admin";
|