1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.test.js
Mark Stacey d1cea85f33
Rename provider to providerConfig (#18907)
* 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
2023-05-02 13:23:20 -02:30

127 lines
3.3 KiB
JavaScript

import React from 'react';
import { screen, fireEvent } from '@testing-library/react';
import configureMockStore from 'redux-mock-store';
import { renderWithProvider } from '../../../../test/lib/render-helpers';
import ConfirmAddCustodianToken from './confirm-add-custodian-token';
describe('Confirm Add Custodian Token', () => {
const mockStore = {
metamask: {
providerConfig: {
type: 'test',
},
preferences: {
useNativeCurrencyAsPrimaryCurrency: true,
},
institutionalFeatures: {
complianceProjectId: '',
connectRequests: [
{
labels: [
{
key: 'service',
value: 'test',
},
],
origin: 'origin',
token: 'testToken',
feature: 'custodian',
service: 'Jupiter',
apiUrl: 'https://',
chainId: 1,
},
],
},
},
history: {
push: '/',
mostRecentOverviewPage: '/',
},
};
const store = configureMockStore()(mockStore);
it('opens confirm add custodian token with correct token', () => {
renderWithProvider(<ConfirmAddCustodianToken />, store);
const tokenContainer = screen.getByText('...testToken');
expect(tokenContainer).toBeInTheDocument();
});
it('shows the custodian on cancel click', () => {
renderWithProvider(<ConfirmAddCustodianToken />, store);
const cancelButton = screen.getByTestId('cancel-btn');
fireEvent.click(cancelButton);
expect(screen.getByText('Custodian')).toBeInTheDocument();
});
it('tries to connect to custodian with empty token', async () => {
const customMockedStore = {
metamask: {
providerConfig: {
type: 'test',
},
preferences: {
useNativeCurrencyAsPrimaryCurrency: true,
},
institutionalFeatures: {
complianceProjectId: '',
connectRequests: [
{
labels: [
{
key: 'service',
value: 'test',
},
],
origin: 'origin',
token: '',
feature: 'custodian',
service: 'Jupiter',
apiUrl: 'https://',
chainId: 1,
},
],
},
},
history: {
push: '/',
mostRecentOverviewPage: '/',
},
};
const customStore = configureMockStore()(customMockedStore);
renderWithProvider(<ConfirmAddCustodianToken />, customStore);
const confirmButton = screen.getByTestId('confirm-btn');
fireEvent.click(confirmButton);
const errorMessage = screen.getByTestId('connect-custodian-token-error');
expect(errorMessage).toBeVisible();
});
it('clicks the confirm button and shows the test value', async () => {
renderWithProvider(<ConfirmAddCustodianToken />, store);
const confirmButton = screen.getByTestId('confirm-btn');
fireEvent.click(confirmButton);
expect(screen.getByText('test')).toBeInTheDocument();
});
it('shows the error area', () => {
renderWithProvider(<ConfirmAddCustodianToken />, store);
const confirmButton = screen.getByTestId('confirm-btn');
fireEvent.click(confirmButton);
expect(screen.getByTestId('error-message')).toBeVisible();
});
});