mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
b6673731e2
* Show test networks toggle button in settings/advanced tab. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Apply toggle testnet settings and show/hide testnets when on/off Add localhost to testnet. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Show add network button Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Open full screen when add network is called. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Show custonm rpc before testnet rpcs lint fixes. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Test cases for network dropdown. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Test cases for toggle test networks in advanced tab component. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix Locales. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * E2E Tests: Custom RPC is now called Add Network Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fix Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * E2E: When Add Network button is clicked, wait for the full screen window to be visible Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * findVisibleElement should use a class. i.e start with a dot Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Hide Dropdown when Add Netwok is clicked. Only show full screen if it's not already showing. E2E tests passing. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix tests for jest Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Testnets are not being shown by default anymore, tests should use Mainnet instead. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Import Button from ui Change selector name to getShowTestnetworks Fix button to show full width Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix e2e tests Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Remove localhost from INFURA provider types. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix errors in Advanced Tab Component tests Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix unit tests for advanced tab component. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Remove deleted elements from e2e tests Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Make sure all tests passed. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com>
84 lines
2.8 KiB
JavaScript
84 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { shallow } from 'enzyme';
|
|
import TextField from '../../../components/ui/text-field';
|
|
import { LEDGER_TRANSPORT_TYPES } from '../../../../shared/constants/hardware-wallets';
|
|
import ToggleButton from '../../../components/ui/toggle-button';
|
|
import AdvancedTab from './advanced-tab.component';
|
|
|
|
describe('AdvancedTab Component', () => {
|
|
let root;
|
|
let setAutoLockTimeLimitSpy = sinon.spy();
|
|
const toggleTestnet = sinon.spy();
|
|
|
|
beforeAll(() => {
|
|
root = shallow(
|
|
<AdvancedTab
|
|
ipfsGateway=""
|
|
setAutoLockTimeLimit={setAutoLockTimeLimitSpy}
|
|
setIpfsGateway={() => undefined}
|
|
setShowFiatConversionOnTestnetsPreference={() => undefined}
|
|
setThreeBoxSyncingPermission={() => undefined}
|
|
setShowTestNetworks={toggleTestnet}
|
|
showTestNetworks={false}
|
|
threeBoxDisabled
|
|
threeBoxSyncingAllowed={false}
|
|
ledgerTransportType={LEDGER_TRANSPORT_TYPES.U2F}
|
|
setLedgerLivePreference={() => undefined}
|
|
setDismissSeedBackUpReminder={() => undefined}
|
|
dismissSeedBackUpReminder={false}
|
|
/>,
|
|
{
|
|
context: {
|
|
t: (s) => `_${s}`,
|
|
},
|
|
},
|
|
);
|
|
});
|
|
|
|
it('should render correctly when threeBoxFeatureFlag', () => {
|
|
expect(root.find('.settings-page__content-row')).toHaveLength(13);
|
|
});
|
|
|
|
it('should update autoLockTimeLimit', () => {
|
|
setAutoLockTimeLimitSpy = sinon.spy();
|
|
root = shallow(
|
|
<AdvancedTab
|
|
ipfsGateway=""
|
|
setAutoLockTimeLimit={setAutoLockTimeLimitSpy}
|
|
setIpfsGateway={() => undefined}
|
|
setShowFiatConversionOnTestnetsPreference={() => undefined}
|
|
setThreeBoxSyncingPermission={() => undefined}
|
|
threeBoxDisabled
|
|
threeBoxSyncingAllowed={false}
|
|
ledgerTransportType={LEDGER_TRANSPORT_TYPES.U2F}
|
|
setLedgerLivePreference={() => undefined}
|
|
setDismissSeedBackUpReminder={() => undefined}
|
|
dismissSeedBackUpReminder={false}
|
|
setShowTestNetworks={toggleTestnet}
|
|
/>,
|
|
{
|
|
context: {
|
|
t: (s) => `_${s}`,
|
|
},
|
|
},
|
|
);
|
|
|
|
const autoTimeout = root.find('.settings-page__content-row').at(8);
|
|
const textField = autoTimeout.find(TextField);
|
|
|
|
textField.props().onChange({ target: { value: 1440 } });
|
|
expect(root.state().autoLockTimeLimit).toStrictEqual(1440);
|
|
|
|
autoTimeout.find('.settings-tab__rpc-save-button').simulate('click');
|
|
expect(setAutoLockTimeLimitSpy.args[0][0]).toStrictEqual(1440);
|
|
});
|
|
|
|
it('should toggle show test networks', () => {
|
|
const testNetworks = root.find('.settings-page__content-row').at(6);
|
|
const toggleButton = testNetworks.find(ToggleButton);
|
|
toggleButton.first().simulate('toggle');
|
|
expect(toggleTestnet.calledOnce).toStrictEqual(true);
|
|
});
|
|
});
|