1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/multichain/multichain-connected-site-menu/multichain-connected-site-menu.test.js
Nidhi Kumari 0bbfd38cc6
UX Multichain: Menu for Site connections and permissions (#18167)
* added site connection menu component

* reverted change for unlock page

* updated snapshot

* updated state with useSelector

* updated state for connected

* updated icons

* updated test

* updated snapshot

* moved component to multichain folder

* updated color

* added multichain connection to menu bar

* updated default color

* updated css

* updated multichain site with connected site info

* updated ui for not connected state

* removed scripts

* updated lint errors

* updated lint errors

* updated stories

* updated story for not connected to current state

* updated story for not connected to current state

* updated badge to 16px

* updated badge position

* updated snapshot

* fixed lint errors

* updated not connected state icon

* updated constants for status and added new locale string
2023-03-31 22:53:27 +05:30

88 lines
2.7 KiB
JavaScript

import React from 'react';
import configureMockStore from 'redux-mock-store';
import { renderWithProvider } from '../../../../test/jest';
import {
STATUS_CONNECTED,
STATUS_CONNECTED_TO_ANOTHER_ACCOUNT,
STATUS_NOT_CONNECTED,
} from '../../../helpers/constants/connected-sites';
import {
BackgroundColor,
Color,
} from '../../../helpers/constants/design-system';
import { MultichainConnectedSiteMenu } from './multichain-connected-site-menu';
describe('Multichain Connected Site Menu', () => {
const selectedAddress = '0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b';
const identities = {
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': {
address: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
name: 'Account 1',
},
'0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b': {
address: '0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b',
name: 'Account 2',
},
};
const accounts = {
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': {
address: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
balance: '0x0',
},
'0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b': {
address: '0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b',
balance: '0x0',
},
};
const mockStore = {
metamask: {
selectedAddress,
identities,
accounts,
},
};
it('should render the site menu in connected state', () => {
const props = {
globalMenuColor: Color.successDefault,
text: 'connected',
status: STATUS_CONNECTED,
};
const store = configureMockStore()(mockStore);
const { getByTestId, container } = renderWithProvider(
<MultichainConnectedSiteMenu {...props} />,
store,
);
expect(getByTestId('connection-menu')).toBeDefined();
expect(container).toMatchSnapshot();
});
it('should render the site menu in not connected state', () => {
const props = {
globalMenuColor: Color.iconAlternative,
status: STATUS_NOT_CONNECTED,
};
const store = configureMockStore()(mockStore);
const { getByTestId, container } = renderWithProvider(
<MultichainConnectedSiteMenu {...props} />,
store,
);
expect(getByTestId('connection-menu')).toBeDefined();
expect(container).toMatchSnapshot();
});
it('should render the site menu in not connected to current account state', () => {
const props = {
globalMenuColor: BackgroundColor.backgroundDefault,
text: 'not connected',
status: STATUS_CONNECTED_TO_ANOTHER_ACCOUNT,
};
const store = configureMockStore()(mockStore);
const { getByTestId, container } = renderWithProvider(
<MultichainConnectedSiteMenu {...props} />,
store,
);
expect(getByTestId('connection-menu')).toBeDefined();
expect(container).toMatchSnapshot();
});
});