mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* chore: bump vite, vitejs/plugin-react, mark client package as esm, move react-query as a peer dep in data-provider * chore: import changes due to new data-provider export strategy, also fix type imports where applicable * chore: export react-query services as separate to avoid react dependencies in /api/ * chore: suppress sourcemap warnings and polyfill node:path which is used by filenamify TODO: replace filenamify with an alternative and REMOVE polyfill * chore: /api/ changes to support `librechat-data-provider` * refactor: rewrite Dockerfile.multi in light of /api/ changes to support `librechat-data-provider` * chore: remove volume mapping to node_modules directories in default compose file * chore: remove schemas from /api/ as is no longer needed with use of `librechat-data-provider` * fix(ci): jest `librechat-data-provider/react-query` module resolution
145 lines
4.8 KiB
TypeScript
145 lines
4.8 KiB
TypeScript
import { render, waitFor } from 'test/layout-test-utils';
|
|
import userEvent from '@testing-library/user-event';
|
|
import Login from '../Login';
|
|
import * as mockDataProvider from 'librechat-data-provider/react-query';
|
|
|
|
jest.mock('librechat-data-provider/react-query');
|
|
|
|
const setup = ({
|
|
useGetUserQueryReturnValue = {
|
|
isLoading: false,
|
|
isError: false,
|
|
data: {},
|
|
},
|
|
useLoginUserReturnValue = {
|
|
isLoading: false,
|
|
isError: false,
|
|
mutate: jest.fn(),
|
|
data: {},
|
|
isSuccess: false,
|
|
},
|
|
useRefreshTokenMutationReturnValue = {
|
|
isLoading: false,
|
|
isError: false,
|
|
mutate: jest.fn(),
|
|
data: {
|
|
token: 'mock-token',
|
|
user: {},
|
|
},
|
|
},
|
|
useGetStartupCongfigReturnValue = {
|
|
isLoading: false,
|
|
isError: false,
|
|
data: {
|
|
googleLoginEnabled: true,
|
|
facebookLoginEnabled: true,
|
|
openidLoginEnabled: true,
|
|
openidLabel: 'Test OpenID',
|
|
openidImageUrl: 'http://test-server.com',
|
|
githubLoginEnabled: true,
|
|
discordLoginEnabled: true,
|
|
registrationEnabled: true,
|
|
emailLoginEnabled: true,
|
|
socialLoginEnabled: true,
|
|
serverDomain: 'mock-server',
|
|
},
|
|
},
|
|
} = {}) => {
|
|
const mockUseLoginUser = jest
|
|
.spyOn(mockDataProvider, 'useLoginUserMutation')
|
|
//@ts-ignore - we don't need all parameters of the QueryObserverSuccessResult
|
|
.mockReturnValue(useLoginUserReturnValue);
|
|
const mockUseGetUserQuery = jest
|
|
.spyOn(mockDataProvider, 'useGetUserQuery')
|
|
//@ts-ignore - we don't need all parameters of the QueryObserverSuccessResult
|
|
.mockReturnValue(useGetUserQueryReturnValue);
|
|
const mockUseGetStartupConfig = jest
|
|
.spyOn(mockDataProvider, 'useGetStartupConfig')
|
|
//@ts-ignore - we don't need all parameters of the QueryObserverSuccessResult
|
|
.mockReturnValue(useGetStartupCongfigReturnValue);
|
|
const mockUseRefreshTokenMutation = jest
|
|
.spyOn(mockDataProvider, 'useRefreshTokenMutation')
|
|
//@ts-ignore - we don't need all parameters of the QueryObserverSuccessResult
|
|
.mockReturnValue(useRefreshTokenMutationReturnValue);
|
|
const renderResult = render(<Login />);
|
|
return {
|
|
...renderResult,
|
|
mockUseLoginUser,
|
|
mockUseGetUserQuery,
|
|
mockUseGetStartupConfig,
|
|
mockUseRefreshTokenMutation,
|
|
};
|
|
};
|
|
|
|
test('renders login form', () => {
|
|
const { getByLabelText, getByRole } = setup();
|
|
expect(getByLabelText(/email/i)).toBeInTheDocument();
|
|
expect(getByLabelText(/password/i)).toBeInTheDocument();
|
|
expect(getByRole('button', { name: /Sign in/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Sign up/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Sign up/i })).toHaveAttribute('href', '/register');
|
|
expect(getByRole('link', { name: /Login with Google/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Login with Google/i })).toHaveAttribute(
|
|
'href',
|
|
'mock-server/oauth/google',
|
|
);
|
|
expect(getByRole('link', { name: /Login with Facebook/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Login with Facebook/i })).toHaveAttribute(
|
|
'href',
|
|
'mock-server/oauth/facebook',
|
|
);
|
|
expect(getByRole('link', { name: /Login with Github/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Login with Github/i })).toHaveAttribute(
|
|
'href',
|
|
'mock-server/oauth/github',
|
|
);
|
|
expect(getByRole('link', { name: /Login with Discord/i })).toBeInTheDocument();
|
|
expect(getByRole('link', { name: /Login with Discord/i })).toHaveAttribute(
|
|
'href',
|
|
'mock-server/oauth/discord',
|
|
);
|
|
});
|
|
|
|
test('calls loginUser.mutate on login', async () => {
|
|
const mutate = jest.fn();
|
|
const { getByLabelText, getByRole } = setup({
|
|
// @ts-ignore - we don't need all parameters of the QueryObserverResult
|
|
useLoginUserReturnValue: {
|
|
isLoading: false,
|
|
mutate: mutate,
|
|
isError: false,
|
|
},
|
|
});
|
|
|
|
const emailInput = getByLabelText(/email/i);
|
|
const passwordInput = getByLabelText(/password/i);
|
|
const submitButton = getByRole('button', { name: /Sign in/i });
|
|
|
|
await userEvent.type(emailInput, 'test@test.com');
|
|
await userEvent.type(passwordInput, 'password');
|
|
await userEvent.click(submitButton);
|
|
|
|
waitFor(() => expect(mutate).toHaveBeenCalled());
|
|
});
|
|
|
|
test('Navigates to / on successful login', async () => {
|
|
const { getByLabelText, getByRole, history } = setup({
|
|
// @ts-ignore - we don't need all parameters of the QueryObserverResult
|
|
useLoginUserReturnValue: {
|
|
isLoading: false,
|
|
mutate: jest.fn(),
|
|
isError: false,
|
|
isSuccess: true,
|
|
},
|
|
});
|
|
|
|
const emailInput = getByLabelText(/email/i);
|
|
const passwordInput = getByLabelText(/password/i);
|
|
const submitButton = getByRole('button', { name: /Sign in/i });
|
|
|
|
await userEvent.type(emailInput, 'test@test.com');
|
|
await userEvent.type(passwordInput, 'password');
|
|
await userEvent.click(submitButton);
|
|
|
|
waitFor(() => expect(history.location.pathname).toBe('/'));
|
|
});
|