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 { getAllByTestId, getByText } = renderWithProvider(
,
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(
,
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(
,
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(
,
store,
);
expect(container).toMatchSnapshot();
});
});