e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
75 lines
2.8 KiB
TypeScript
75 lines
2.8 KiB
TypeScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
import { buildLoginRedirectUrl } from '../src/api-endpoints';
|
|
|
|
describe('buildLoginRedirectUrl', () => {
|
|
afterEach(() => {
|
|
window.history.replaceState({}, '', '/');
|
|
});
|
|
|
|
it('builds a login URL from explicit args', () => {
|
|
const result = buildLoginRedirectUrl('/c/new', '?q=hello', '');
|
|
expect(result).toBe('/login?redirect_to=%2Fc%2Fnew%3Fq%3Dhello');
|
|
});
|
|
|
|
it('encodes complex paths with query and hash', () => {
|
|
const result = buildLoginRedirectUrl('/c/new', '?q=hello&submit=true', '#section');
|
|
expect(result).toContain('redirect_to=');
|
|
const encoded = result.split('redirect_to=')[1];
|
|
expect(decodeURIComponent(encoded)).toBe('/c/new?q=hello&submit=true#section');
|
|
});
|
|
|
|
it('falls back to window.location when no args provided', () => {
|
|
window.history.replaceState({}, '', '/c/abc123?model=gpt-4#msg-5');
|
|
const result = buildLoginRedirectUrl();
|
|
const encoded = result.split('redirect_to=')[1];
|
|
expect(decodeURIComponent(encoded)).toBe('/c/abc123?model=gpt-4#msg-5');
|
|
});
|
|
|
|
it('returns plain /login when all location parts are empty (root)', () => {
|
|
window.history.replaceState({}, '', '/');
|
|
const result = buildLoginRedirectUrl();
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login when pathname is /login (prevents recursive redirect)', () => {
|
|
const result = buildLoginRedirectUrl('/login', '?redirect_to=%2Fc%2Fnew', '');
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login when window.location is already /login', () => {
|
|
window.history.replaceState({}, '', '/login?redirect_to=%2Fc%2Fabc');
|
|
const result = buildLoginRedirectUrl();
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login for /login sub-paths', () => {
|
|
const result = buildLoginRedirectUrl('/login/2fa', '', '');
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login for basename-prefixed /login (e.g. /librechat/login)', () => {
|
|
window.history.replaceState({}, '', '/librechat/login?redirect_to=%2Fc%2Fabc');
|
|
const result = buildLoginRedirectUrl();
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login for basename-prefixed /login sub-paths', () => {
|
|
const result = buildLoginRedirectUrl('/librechat/login/2fa', '', '');
|
|
expect(result).toBe('/login');
|
|
});
|
|
|
|
it('returns plain /login for root path (no pointless redirect_to=/)', () => {
|
|
const result = buildLoginRedirectUrl('/', '', '');
|
|
expect(result).toBe('/login');
|
|
expect(result).not.toContain('redirect_to');
|
|
});
|
|
|
|
it('does NOT match paths where "login" is a substring of a segment', () => {
|
|
const result = buildLoginRedirectUrl('/c/loginhistory', '', '');
|
|
expect(result).toContain('redirect_to=');
|
|
expect(decodeURIComponent(result.split('redirect_to=')[1])).toBe('/c/loginhistory');
|
|
});
|
|
});
|