1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/institutional/jwt-url-form/jwt-url-form.test.js
Albert Olivé 9271cfd7bf
[MMI] The add custody token view needs a styles tweak (#19779)
* fixing styles

* Fixing styles and snapshots

* fixed eslint rule

* Removed unnecessary test
2023-06-27 15:49:15 +02:00

72 lines
1.8 KiB
JavaScript

import React from 'react';
import sinon from 'sinon';
import { fireEvent, screen } from '@testing-library/react';
import configureMockStore from 'redux-mock-store';
import { renderWithProvider } from '../../../../test/lib/render-helpers';
import JwtUrlForm from './jwt-url-form';
describe('JwtUrlForm', function () {
const mockStore = {
metamask: {
providerConfig: {
type: 'test',
},
},
};
const store = configureMockStore()(mockStore);
const props = {
jwtList: ['jwt1'],
currentJwt: 'jwt1',
onJwtChange: sinon.spy(),
jwtInputText: 'input text',
apiUrl: 'url',
urlInputText: '',
onUrlChange: sinon.spy(),
};
it('opens JWT Url Form without input for new JWT', () => {
const { getByText } = renderWithProvider(<JwtUrlForm {...props} />, store);
expect(getByText('Add new token')).toBeInTheDocument();
});
it('shows JWT textarea with provided input text', () => {
const { getAllByTestId } = renderWithProvider(
<JwtUrlForm {...props} />,
store,
);
const btn = getAllByTestId('addNewToken-btn')[0];
fireEvent.click(btn);
expect(screen.getByText('input text')).toBeInTheDocument();
});
it('goes through the api url input', () => {
const { queryByTestId } = renderWithProvider(
<JwtUrlForm {...props} />,
store,
);
const apiUrlinput = queryByTestId('jwt-api-url-input');
fireEvent.change(apiUrlinput, { target: { value: 'url' } });
expect(apiUrlinput.value).toBe('url');
});
it('shows JWT text area when no jwt token exists', () => {
const customProps = {
...props,
currentJwt: '',
jwtList: [],
};
const { container } = renderWithProvider(
<JwtUrlForm {...customProps} />,
store,
);
expect(container).toMatchSnapshot();
});
});