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

likhith/Added jest config and test cases for App-Content component #4876

Merged
merged 16 commits into from
Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from 11 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
102 changes: 102 additions & 0 deletions packages/p2p/src/components/__tests__/app-content.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { useStores } from 'Stores';
import AppContent from '../app-content.jsx';

jest.mock('Stores', () => ({
...jest.requireActual('Stores'),
useStores: jest.fn(),
}));

jest.mock('@deriv/components', () => ({
...jest.requireActual('@deriv/components'),
Tabs: jest.fn(({ children }) => (
<div>
Tabs<div>{children}</div>
</div>
)),
Loading: () => <div>Loading</div>,
}));

jest.mock('Components/dp2p-blocked', () => jest.fn(() => 'Dp2pBlocked'));
jest.mock('Components/nickname-form', () => jest.fn(() => 'NicknameForm'));
jest.mock('Components/verification/verification', () => jest.fn(() => 'Verification'));
jest.mock('Components/my-ads/my-ads', () => jest.fn(() => 'MyAds'));
jest.mock('Components/orders/orders', () => jest.fn(() => 'Orders'));
jest.mock('Components/buy-sell/buy-sell', () => jest.fn(() => 'BuySell'));
jest.mock('Components/my-profile', () => jest.fn(() => 'MyProfile'));

describe('<AppContent/>', () => {
const mocked_store_values = {
is_loading: false,
should_show_dp2p_blocked: false,
should_show_popup: false,
props: { should_show_verification: false },
is_advertiser: false,
};

it('should load the Tab component when no error status are set', () => {
useStores.mockImplementation(() => ({
general_store: mocked_store_values,
}));
render(<AppContent />);

expect(screen.getByText('Tabs')).toBeInTheDocument();
expect(screen.queryByTestId('my_profile')).not.toBeInTheDocument();
});

it('should render the loading component when is_loading state is true', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, is_loading: true },
}));
render(<AppContent />);

expect(screen.getByText('Loading')).toBeInTheDocument();
});

it('should render the DP2P blocked component when should_show_dp2p_blocked state is true', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, should_show_dp2p_blocked: true },
}));
render(<AppContent />);

expect(screen.getByText('Dp2pBlocked')).toBeInTheDocument();
});

it('should render the nick-name form component when should_show_popup state is true', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, should_show_popup: true },
}));
render(<AppContent />);

expect(screen.getByText('NicknameForm')).toBeInTheDocument();
});

it('should render verification component when should_show_verification state is true', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, props: { should_show_verification: true } },
}));
render(<AppContent />);

expect(screen.getByText('Verification')).toBeInTheDocument();
});

it('should render only the first notification component when multiple error status is set', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, should_show_popup: true, should_show_dp2p_blocked: true },
}));
render(<AppContent />);

expect(screen.queryByText('NicknameForm')).not.toBeInTheDocument();
expect(screen.getByText('Dp2pBlocked')).toBeInTheDocument();
});

it('should render MyProfile component when is_advertiser state is true', () => {
useStores.mockImplementation(() => ({
general_store: { ...mocked_store_values, is_advertiser: true },
}));
render(<AppContent />);

expect(screen.getByTestId('my_profile')).toBeInTheDocument();
});
});
2 changes: 1 addition & 1 deletion packages/p2p/src/components/app-content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const AppContent = () => {
<MyAds />
</div>
{general_store.is_advertiser && (
<div label={localize('My profile')}>
<div label={localize('My profile')} data-testid='my_profile'>
<MyProfile />
</div>
)}
Expand Down
3 changes: 2 additions & 1 deletion packages/p2p/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = function () {
Stores: path.resolve(__dirname, 'src/stores'),
...publisher_utils.getLocalDerivPackageAliases(__dirname, is_publishing),
},
extensions: ['.js', '.jsx'],
symlinks: false,
},
module: {
Expand Down Expand Up @@ -126,7 +127,7 @@ module.exports = function () {
test: /\.js$/,
parallel: 2,
}),
new CssMinimizerPlugin()
new CssMinimizerPlugin(),
]
: [],
},
Expand Down