Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maryia/WEBREL-2578/test: coverage for routes & routes-config in Reports #14973

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/reports/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const { rule } = require('postcss');
const webpackConfig = require('./build/webpack.config-test.js');

module.exports = {
Expand All @@ -7,4 +8,7 @@ module.exports = {
webpack: { config: webpackConfig({}) },
},
},
rules: {
'import/no-extraneous-dependencies': ['off', { devDependencies: ['**/*.spec.*', '**/*.test.*', '**/*.d.ts*'] }],
},
};
1 change: 1 addition & 0 deletions packages/reports/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {
'^_common/(.*)$': '<rootDir>/src/_common/$1',
'^App/(.*)$': '<rootDir>/src/App/$1',
'^Assets/(.*)$': '<rootDir>/src/Assets/$1',
'^Components/(.*)$': '<rootDir>/src/Components/$1',
'^Constants/(.*)$': '<rootDir>/src/Constants/$1',
'^Constants$': '<rootDir>/src/Constants/index.js',
'^Documents/(.*)$': '<rootDir>/src/Documents/$1',
Expand Down
88 changes: 88 additions & 0 deletions packages/reports/src/Constants/__tests__/routes-config.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
import React from 'react';
import { RouteComponentProps, Router } from 'react-router';
import { createMemoryHistory } from 'history';
import { mockStore } from '@deriv/stores';
import { routes } from '@deriv/shared';
import { render, screen, waitFor } from '@testing-library/react';
import BinaryRoutes from '../../Components/Routes';
import ReportsProviders from '../../reports-providers';
import getRoutesConfig from '../routes-config';

jest.mock('Modules/Page404', () => ({
__esModule: true,
default: () => <div>Error 404</div>,
}));

jest.mock('../../Containers', () => ({
__esModule: true,
default: {
...jest.requireActual('../../Containers').default,
OpenPositions: () => <div>Open positions</div>,
ProfitTable: () => <div>Trade table</div>,
Statement: () => <div>Statement</div>,
},
}));

describe('Routes Config', () => {
// we need to render BinaryRoutes component that uses routes-config to test that lazy-loaded components are loaded
const MockBinaryRoutes = ({ history }: Partial<RouteComponentProps>) => (
<ReportsProviders store={mockStore({ client: { is_logged_in: true }, ui: { is_reports_visible: true } })}>
<Router history={history}>
<BinaryRoutes is_logged_in />
</Router>
</ReportsProviders>
);

it('should return default routes config', () => {
const routesConfig = getRoutesConfig();
expect(routesConfig).toHaveLength(2);
});
it('should return routes with Reports / Open positions route', async () => {
const routesConfig = getRoutesConfig();
expect(routesConfig?.[0]?.path).toBe(routes.reports);
expect(routesConfig?.[0]?.getTitle?.()).toBe('Reports');
expect(routesConfig?.[0]?.is_authenticated).toBe(true);
expect(routesConfig?.[0].routes[0].path).toBe(routes.positions);
const history = createMemoryHistory();
history.push(routes.positions);
render(<MockBinaryRoutes history={history} />);
await waitFor(() => {
expect(screen.getByText('Reports')).toBeInTheDocument();
expect(screen.getByText('Open positions')).toBeInTheDocument();
});
});
it('should return routes with Reports / Trade table route', async () => {
const routesConfig = getRoutesConfig();
expect(routesConfig?.[0].routes[1].path).toBe(routes.profit);
expect(routesConfig?.[0].routes[1].getTitle()).toBe('Trade table');
const history = createMemoryHistory();
history.push(routes.profit);
render(<MockBinaryRoutes history={history} />);
await waitFor(() => {
expect(screen.getByText('Reports')).toBeInTheDocument();
expect(screen.getByText('Trade table')).toBeInTheDocument();
});
});
it('should return routes with Reports / Statement route', async () => {
const routesConfig = getRoutesConfig();
expect(routesConfig?.[0].routes[2].path).toBe(routes.statement);
expect(routesConfig?.[0].routes[2].getTitle()).toBe('Statement');
const history = createMemoryHistory();
history.push(routes.statement);
render(<MockBinaryRoutes history={history} />);
await waitFor(() => {
expect(screen.getByText('Reports')).toBeInTheDocument();
expect(screen.getByText('Statement')).toBeInTheDocument();
});
});
it('should return routes with route for Page 404 which loads when the path does not exist', async () => {
const routesConfig = getRoutesConfig();
expect(routesConfig?.[1]?.getTitle?.()).toBe('Error 404');
const history = createMemoryHistory();
history.push('/non-existent-path');
render(<MockBinaryRoutes history={history} />);
await waitFor(() => {
expect(screen.getByText('Error 404')).toBeInTheDocument();
});
});
});
45 changes: 45 additions & 0 deletions packages/reports/src/Containers/__tests__/routes.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import React from 'react';
import { render, screen, waitFor } from '@testing-library/react';
import { createMemoryHistory } from 'history';
import { mockStore } from '@deriv/stores';
import { Router } from 'react-router-dom';
import { TCoreStores } from '@deriv/stores/types';
import BinaryRoutes from '../../Components/Routes';
import Routes from '../routes';
import ReportsProviders from '../../reports-providers';

const mockedBinaryRoutes = 'BinaryRoutes';
const mockedErrorComponent = 'ErrorComponent';

jest.mock('../../../src/Components/Routes', () => jest.fn(() => mockedBinaryRoutes));
jest.mock('../../../src/Components/Errors', () => jest.fn(() => mockedErrorComponent));

describe('Routes', () => {
const history = createMemoryHistory();
const store = mockStore({});

const renderMockedRoutes = (
mockedStore: TCoreStores = store,
passthrough?: React.ComponentProps<typeof BinaryRoutes>['passthrough']
) => {
return render(
<ReportsProviders store={mockedStore}>
<Router history={history}>
<Routes passthrough={passthrough} />
</Router>
</ReportsProviders>
);
};

it('should render BinaryRoutes', () => {
renderMockedRoutes();
expect(screen.getByText(mockedBinaryRoutes)).toBeInTheDocument();
});
it('should render ErrorComponent', async () => {
renderMockedRoutes(mockStore({ common: { has_error: true } }));
expect(screen.queryByText(mockedBinaryRoutes)).not.toBeInTheDocument();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, didn't get why this line is sync and next - async
Please, ignore if not relevant

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unnecessary, removed👌🏻 thank you)

await waitFor(() => {
expect(screen.getByText(mockedErrorComponent)).toBeInTheDocument();
});
});
});
4 changes: 2 additions & 2 deletions packages/reports/src/Containers/routes.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { observer, useStore } from '@deriv/stores';
import { withRouter } from 'react-router';
import { RouteComponentProps, withRouter } from 'react-router';
import React from 'react';
import BinaryRoutes from 'Components/Routes';
import ErrorComponent from 'Components/Errors';
import { TRoutes } from 'Types';

const Routes = observer(({ passthrough }: TRoutes) => {
const Routes = observer(({ passthrough }: TRoutes & RouteComponentProps) => {
const { client, common } = useStore();
const { is_logged_in, is_logging_in } = client;
const { error, has_error } = common;
Expand Down
Loading