ant-design/components/transfer/__tests__/search.test.js

92 lines
2.0 KiB
JavaScript
Raw Normal View History

2016-12-14 14:48:09 +08:00
import React from 'react';
import { mount } from 'enzyme';
import Search from '../search';
import Transfer from '../index';
2016-12-14 14:48:09 +08:00
describe('Search', () => {
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
afterEach(() => {
errorSpy.mockReset();
});
afterAll(() => {
errorSpy.mockRestore();
});
2016-12-14 14:48:09 +08:00
it('should show cross icon when input value exists', () => {
2017-10-09 13:23:20 +08:00
const wrapper = mount(<Search value="" />);
2016-12-14 14:48:09 +08:00
2017-04-02 18:09:23 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
wrapper.setProps({ value: 'a' });
2017-04-02 18:09:23 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
});
it('onSearch', () => {
2018-12-07 16:17:45 +08:00
const dataSource = [
{
key: 'a',
title: 'a',
description: 'a',
},
{
key: 'b',
title: 'b',
description: 'b',
},
{
key: 'c',
title: 'c',
description: 'c',
},
];
const onSearch = jest.fn();
const wrapper = mount(
<Transfer
dataSource={dataSource}
selectedKeys={[]}
targetKeys={[]}
render={item => item.title}
onSearch={onSearch}
showSearch
2018-12-07 16:17:45 +08:00
/>,
);
2018-12-07 16:17:45 +08:00
wrapper
.find('.ant-input')
.at(0)
.simulate('change', { target: { value: 'a' } });
expect(onSearch).toBeCalledWith('left', 'a');
onSearch.mockReset();
2018-12-07 16:17:45 +08:00
wrapper
.find('.ant-transfer-list-search-action')
.at(0)
.simulate('click');
expect(onSearch).toBeCalledWith('left', '');
});
it('legacy onSearchChange', () => {
const onSearchChange = jest.fn();
const wrapper = mount(
2018-12-07 16:17:45 +08:00
<Transfer render={item => item.title} onSearchChange={onSearchChange} showSearch />,
);
2018-12-07 16:17:45 +08:00
wrapper
.find('.ant-input')
.at(0)
.simulate('change', { target: { value: 'a' } });
expect(errorSpy.mock.calls[0][0]).toMatch(
'Warning: [antd: Transfer] `onSearchChange` is deprecated. Please use `onSearch` instead.',
);
expect(onSearchChange.mock.calls[0][0]).toEqual('left');
expect(onSearchChange.mock.calls[0][1].target.value).toEqual('a');
});
2016-12-14 14:48:09 +08:00
});