1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/components/institutional/jwt-url-form/jwt-url-form.test.js
António Regadas 033b776c0e
[MMI] adds the jwt-url-form component (#18198)
* MMI adds the Jwt dropdown

* MMI prettier

* review fixes

* adds the component

* adds tests and story file

* lint & prettier fix

* prettier fix

* prettier and clean up

* prettier and clean up
2023-03-20 11:55:53 +00:00

78 lines
2.0 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: {
provider: {
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 { container, getByText } = renderWithProvider(
<JwtUrlForm {...props} />,
store,
);
const btn = container.querySelector(
'.jwt-url-form__btn__container .btn-secondary',
);
expect(btn).toHaveClass('button');
expect(getByText('Add new token')).toBeInTheDocument();
});
it('shows JWT textarea with provided input text', () => {
const { container } = renderWithProvider(<JwtUrlForm {...props} />, store);
const btn = container.querySelector(
'.jwt-url-form__btn__container .btn-secondary',
);
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();
});
});