2019-08-24 00:25:45 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
// eslint-disable-next-line import/no-unresolved
|
|
|
|
import Input from '..';
|
|
|
|
import focusTest from '../../../tests/shared/focusTest';
|
2019-08-26 22:53:20 +08:00
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2020-01-02 19:10:16 +08:00
|
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
2019-12-31 14:41:09 +08:00
|
|
|
import { sleep } from '../../../tests/utils';
|
2019-08-24 00:25:45 +08:00
|
|
|
|
|
|
|
describe('Input.Password', () => {
|
|
|
|
focusTest(Input.Password);
|
2019-08-26 22:53:20 +08:00
|
|
|
mountTest(Input.Password);
|
2020-01-02 19:10:16 +08:00
|
|
|
rtlTest(Input.Password);
|
2019-08-24 00:25:45 +08:00
|
|
|
|
|
|
|
it('should get input element from ref', () => {
|
|
|
|
const wrapper = mount(<Input.Password />);
|
|
|
|
expect(wrapper.instance().input instanceof HTMLInputElement).toBe(true);
|
|
|
|
expect(() => {
|
|
|
|
wrapper.instance().select();
|
|
|
|
}).not.toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should change type when click', () => {
|
|
|
|
const wrapper = mount(<Input.Password />);
|
|
|
|
wrapper.find('input').simulate('change', { target: { value: '111' } });
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
wrapper
|
|
|
|
.find('.ant-input-password-icon')
|
|
|
|
.at(0)
|
|
|
|
.simulate('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
wrapper
|
|
|
|
.find('.ant-input-password-icon')
|
|
|
|
.at(0)
|
|
|
|
.simulate('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('visibilityToggle should work', () => {
|
|
|
|
const wrapper = mount(<Input.Password visibilityToggle={false} />);
|
|
|
|
expect(wrapper.find('.anticon-eye').length).toBe(0);
|
|
|
|
wrapper.setProps({ visibilityToggle: true });
|
|
|
|
expect(wrapper.find('.anticon-eye-invisible').length).toBe(1);
|
|
|
|
});
|
|
|
|
|
2019-09-19 17:19:22 +08:00
|
|
|
it('should not toggle visibility when disabled prop is true', () => {
|
|
|
|
const wrapper = mount(<Input.Password disabled />);
|
|
|
|
expect(wrapper.find('.anticon-eye-invisible').length).toBe(1);
|
|
|
|
wrapper.find('.anticon-eye-invisible').simulate('click');
|
|
|
|
expect(wrapper.find('.anticon-eye').length).toBe(0);
|
|
|
|
});
|
|
|
|
|
2019-08-24 00:25:45 +08:00
|
|
|
it('should keep focus state', () => {
|
2020-02-04 17:57:34 +08:00
|
|
|
const wrapper = mount(<Input.Password defaultValue="111" autoFocus />, { attachTo: document.body });
|
2019-08-24 00:25:45 +08:00
|
|
|
expect(document.activeElement).toBe(
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at(0)
|
|
|
|
.getDOMNode(),
|
|
|
|
);
|
|
|
|
wrapper
|
|
|
|
.find('.ant-input-password-icon')
|
|
|
|
.at(0)
|
|
|
|
.simulate('mousedown');
|
|
|
|
wrapper
|
|
|
|
.find('.ant-input-password-icon')
|
|
|
|
.at(0)
|
|
|
|
.simulate('click');
|
|
|
|
expect(document.activeElement).toBe(
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at(0)
|
|
|
|
.getDOMNode(),
|
|
|
|
);
|
2020-02-04 17:57:34 +08:00
|
|
|
wrapper.unmount();
|
2019-08-24 00:25:45 +08:00
|
|
|
});
|
2019-12-31 14:41:09 +08:00
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/20541
|
|
|
|
it('should not show value attribute in input element', async () => {
|
|
|
|
const wrapper = mount(<Input.Password />);
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at('0')
|
|
|
|
.simulate('change', { target: { value: 'value' } });
|
|
|
|
await sleep();
|
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at('0')
|
|
|
|
.getDOMNode()
|
|
|
|
.getAttribute('value'),
|
|
|
|
).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/20541
|
|
|
|
it('could be unmount without errors', () => {
|
|
|
|
expect(() => {
|
|
|
|
const wrapper = mount(<Input.Password />);
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at('0')
|
|
|
|
.simulate('change', { target: { value: 'value' } });
|
|
|
|
wrapper.unmount();
|
|
|
|
}).not.toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/pull/20544#issuecomment-569861679
|
|
|
|
it('should not contain value attribute in input element with defautValue', async () => {
|
|
|
|
const wrapper = mount(<Input.Password defaultValue="value" />);
|
|
|
|
await sleep();
|
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.find('input')
|
|
|
|
.at('0')
|
|
|
|
.getDOMNode()
|
|
|
|
.getAttribute('value'),
|
|
|
|
).toBeFalsy();
|
|
|
|
});
|
2019-08-24 00:25:45 +08:00
|
|
|
});
|