mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
234fb4ac5d
* adds component with locales and test * adds feedback from review * adds storeis file * update snapshots * prettier * clean up stories file * relocation * review fixes * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Button path remove * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * pulled * stories file update location --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
79 lines
1.9 KiB
JavaScript
79 lines
1.9 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 { getAllByTestId, getByText } = renderWithProvider(
|
|
<JwtUrlForm {...props} />,
|
|
store,
|
|
);
|
|
|
|
expect(getAllByTestId('addNewToken-btn')[0]).toHaveAttribute(
|
|
'role',
|
|
'button',
|
|
);
|
|
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();
|
|
});
|
|
});
|