74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import { BrowserRouter } from 'react-router-dom';
|
|
import { render, screen, fireEvent } from '@testing-library/react';
|
|
import { MockedProvider } from '@apollo/client/testing';
|
|
import { Networks, useEnvironment } from '@vegaprotocol/environment';
|
|
import { RiskNoticeDialog } from './risk-notice-dialog';
|
|
import { WelcomeDialog } from './welcome-dialog';
|
|
|
|
jest.mock('@vegaprotocol/environment');
|
|
|
|
const mockEnvDefinitions = {
|
|
VEGA_CONFIG_URL: 'https://config.url',
|
|
VEGA_URL: 'https://test.url',
|
|
VEGA_NETWORKS: JSON.stringify({}),
|
|
};
|
|
|
|
describe('Risk notice dialog', () => {
|
|
const introText = 'Regulation may apply to use of this app';
|
|
const mockOnClose = jest.fn();
|
|
afterEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it.each`
|
|
assertion | network
|
|
${'displays'} | ${Networks.MAINNET}
|
|
${'does not display'} | ${Networks.CUSTOM}
|
|
${'does not display'} | ${Networks.DEVNET}
|
|
${'does not display'} | ${Networks.STAGNET3}
|
|
${'does not display'} | ${Networks.TESTNET}
|
|
`(
|
|
'$assertion the risk notice on $network',
|
|
async ({ assertion, network }) => {
|
|
// @ts-ignore ignore mock implementation
|
|
useEnvironment.mockImplementation(() => ({
|
|
...mockEnvDefinitions,
|
|
VEGA_ENV: network,
|
|
}));
|
|
|
|
render(
|
|
<MockedProvider>
|
|
<WelcomeDialog />
|
|
</MockedProvider>,
|
|
{ wrapper: BrowserRouter }
|
|
);
|
|
|
|
if (assertion === 'displays') {
|
|
// eslint-disable-next-line jest/no-conditional-expect
|
|
expect(screen.queryByText(introText)).toBeInTheDocument();
|
|
} else {
|
|
// eslint-disable-next-line jest/no-conditional-expect
|
|
expect(screen.queryByText(introText)).not.toBeInTheDocument();
|
|
}
|
|
}
|
|
);
|
|
|
|
it("doesn't display the risk notice when previously acknowledged", () => {
|
|
// @ts-ignore ignore mock implementation
|
|
useEnvironment.mockImplementation(() => ({
|
|
...mockEnvDefinitions,
|
|
VEGA_ENV: Networks.MAINNET,
|
|
}));
|
|
|
|
render(<RiskNoticeDialog onClose={mockOnClose} />);
|
|
|
|
expect(screen.queryByText(introText)).toBeInTheDocument();
|
|
|
|
const button = screen.getByRole('button', {
|
|
name: 'I understand, Continue',
|
|
});
|
|
fireEvent.click(button);
|
|
expect(mockOnClose).toHaveBeenCalled();
|
|
});
|
|
});
|