mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
d1cea85f33
* Rename `provider` to `providerConfig` The network controller `provider` state has been renamed to `providerConfig`. This better reflects what this state is, and makes this controller more closely aligned with the core network controller. All references to the provider configuration have been updated to prefer `providerConfig` over `provider`, to make the distinction clear between a provider and provider config. Closes #18902 * Add migration
99 lines
3.1 KiB
JavaScript
99 lines
3.1 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { fireEvent, screen } from '@testing-library/react';
|
|
import { renderWithProvider } from '../../../../../test/jest/rendering';
|
|
import { defaultNetworksData } from '../networks-tab.constants';
|
|
import NetworksTabContent from '.';
|
|
|
|
const mockState = {
|
|
metamask: {
|
|
providerConfig: {
|
|
chainId: '0x539',
|
|
nickname: '',
|
|
rpcPrefs: {},
|
|
rpcUrl: 'http://localhost:8545',
|
|
ticker: 'ETH',
|
|
type: 'localhost',
|
|
},
|
|
},
|
|
};
|
|
|
|
const renderComponent = (props) => {
|
|
const store = configureMockStore([])(mockState);
|
|
return renderWithProvider(<NetworksTabContent {...props} />, store);
|
|
};
|
|
|
|
const defaultNetworks = defaultNetworksData.map((network) => ({
|
|
...network,
|
|
viewOnly: true,
|
|
isATestNetwork: true,
|
|
}));
|
|
|
|
const props = {
|
|
networkDefaultedToProvider: false,
|
|
networkIsSelected: true,
|
|
networksToRender: defaultNetworks,
|
|
selectedNetwork: {
|
|
rpcUrl: 'http://localhost:8545',
|
|
chainId: '1337',
|
|
ticker: 'ETH',
|
|
label: 'LocalHost',
|
|
blockExplorerUrl: '',
|
|
viewOnly: false,
|
|
rpcPrefs: {},
|
|
isATestNetwork: true,
|
|
},
|
|
shouldRenderNetworkForm: true,
|
|
};
|
|
|
|
describe('NetworksTabContent Component', () => {
|
|
it('should render networks tab content correctly', async () => {
|
|
const { queryByText, getByDisplayValue, getAllByText } =
|
|
renderComponent(props);
|
|
|
|
expect(queryByText('Ethereum Mainnet')).toBeInTheDocument();
|
|
expect(queryByText('Goerli test network')).toBeInTheDocument();
|
|
expect(queryByText('Sepolia test network')).toBeInTheDocument();
|
|
|
|
expect(queryByText('Network name')).toBeInTheDocument();
|
|
expect(queryByText('New RPC URL')).toBeInTheDocument();
|
|
expect(queryByText('Chain ID')).toBeInTheDocument();
|
|
expect(queryByText('Currency symbol')).toBeInTheDocument();
|
|
expect(queryByText('Block explorer URL')).toBeInTheDocument();
|
|
expect(queryByText('Cancel')).toBeInTheDocument();
|
|
expect(queryByText('Save')).toBeInTheDocument();
|
|
|
|
expect(getByDisplayValue(props.selectedNetwork.label)).toBeInTheDocument();
|
|
expect(getByDisplayValue(props.selectedNetwork.rpcUrl)).toBeInTheDocument();
|
|
expect(
|
|
getByDisplayValue(props.selectedNetwork.chainId),
|
|
).toBeInTheDocument();
|
|
expect(getByDisplayValue(props.selectedNetwork.ticker)).toBeInTheDocument();
|
|
expect(getAllByText(props.selectedNetwork.blockExplorerUrl)).toBeDefined();
|
|
|
|
fireEvent.change(getByDisplayValue(props.selectedNetwork.label), {
|
|
target: { value: 'LocalHost 8545' },
|
|
});
|
|
expect(await getByDisplayValue('LocalHost 8545')).toBeInTheDocument();
|
|
|
|
fireEvent.change(getByDisplayValue(props.selectedNetwork.rpcUrl), {
|
|
target: { value: 'test' },
|
|
});
|
|
expect(
|
|
await screen.findByText(
|
|
'URLs require the appropriate HTTP/HTTPS prefix.',
|
|
),
|
|
).toBeInTheDocument();
|
|
|
|
fireEvent.change(getByDisplayValue(props.selectedNetwork.chainId), {
|
|
target: { value: '1' },
|
|
});
|
|
|
|
expect(
|
|
await screen.findByText(
|
|
'Could not fetch chain ID. Is your RPC URL correct?',
|
|
),
|
|
).toBeInTheDocument();
|
|
});
|
|
});
|