1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Make username mandatory in the edit contact screen (#17425)

This commit is contained in:
amerkadicE 2023-02-10 15:27:13 +01:00 committed by GitHub
parent 50937dcfde
commit 208ea3013c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 3 deletions

View File

@ -170,9 +170,10 @@ export default class EditContact extends PureComponent {
}}
submitText={this.context.t('save')}
disabled={
this.state.newName === name &&
this.state.newAddress === address &&
this.state.newMemo === memo
(this.state.newName === name &&
this.state.newAddress === address &&
this.state.newMemo === memo) ||
!this.state.newName.trim()
}
/>
</div>

View File

@ -0,0 +1,61 @@
import React from 'react';
import { fireEvent } from '@testing-library/react';
import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
import '@testing-library/jest-dom/extend-expect';
import EditContact from './edit-contact.component';
describe('AddContact component', () => {
const middleware = [thunk];
const state = {
metamask: {
provider: {
type: 'mainnet',
nickname: '',
},
},
};
const props = {
addToAddressBook: jest.fn(),
removeFromAddressBook: jest.fn(),
history: { push: jest.fn() },
name: '',
address: '0x0000000000000000001',
chainId: '',
memo: '',
viewRoute: '',
listRoute: '',
};
it('should render the component with correct properties', () => {
const store = configureMockStore(middleware)(state);
const { getByText } = renderWithProvider(<EditContact {...props} />, store);
expect(getByText('Username')).toBeInTheDocument();
expect(getByText('Ethereum public address')).toBeInTheDocument();
});
it('should validate the address correctly', () => {
const store = configureMockStore(middleware)(state);
const { getByText } = renderWithProvider(<EditContact {...props} />, store);
const input = document.getElementById('address');
fireEvent.change(input, { target: { value: 'invalid address' } });
setTimeout(() => {
expect(getByText('Invalid address')).toBeInTheDocument();
}, 100);
});
it('should get disabled submit button when username field is empty', () => {
const store = configureMockStore(middleware)(state);
const { getByText } = renderWithProvider(<EditContact {...props} />, store);
const input = document.getElementById('nickname');
fireEvent.change(input, { target: { value: '' } });
const saveButton = getByText('Save');
expect(saveButton).toBeDisabled();
});
});