ant-design/components/affix/__tests__/Affix.test.js

141 lines
3.4 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import Affix from '..';
import Button from '../../button';
const events = {};
class AffixMounter extends React.Component {
componentDidMount() {
this.container.addEventListener = jest.fn().mockImplementation((event, cb) => {
events[event] = cb;
});
}
2018-12-07 16:17:45 +08:00
getTarget = () => this.container;
render() {
2017-10-09 13:23:20 +08:00
return (
<div
2018-12-07 16:17:45 +08:00
ref={node => {
this.container = node;
}}
2019-03-03 23:19:07 +08:00
className="container"
>
2019-03-03 23:19:07 +08:00
<Affix
className="fixed"
target={this.getTarget}
ref={ele => {
this.affix = ele;
2017-10-09 13:23:20 +08:00
}}
2019-03-03 23:19:07 +08:00
{...this.props}
>
2019-03-03 23:19:07 +08:00
<Button type="primary">Fixed at the top of container</Button>
</Affix>
</div>
2017-10-09 13:23:20 +08:00
);
}
}
describe('Affix Render', () => {
2018-05-23 21:03:32 +08:00
let wrapper;
2019-03-03 23:19:07 +08:00
const classRect = {
container: {
top: 0,
bottom: 100,
},
};
const originGetBoundingClientRect = HTMLElement.prototype.getBoundingClientRect;
2019-03-21 09:32:47 +08:00
HTMLElement.prototype.getBoundingClientRect = function getBoundingClientRect() {
2019-03-03 23:19:07 +08:00
return (
classRect[this.className] || {
top: 0,
bottom: 0,
}
);
};
2017-11-13 10:46:22 +08:00
beforeAll(() => {
jest.useFakeTimers();
});
2017-11-09 20:33:25 +08:00
afterAll(() => {
jest.useRealTimers();
2019-03-03 23:19:07 +08:00
HTMLElement.prototype.getBoundingClientRect = originGetBoundingClientRect;
2017-11-09 20:33:25 +08:00
});
2019-03-03 23:19:07 +08:00
const movePlaceholder = top => {
classRect.fixed = {
top,
bottom: top,
};
events.scroll({
type: 'scroll',
});
2018-05-23 21:03:32 +08:00
jest.runAllTimers();
};
it('Anchor render perfectly', () => {
document.body.innerHTML = '<div id="mounter" />';
2018-05-23 21:03:32 +08:00
wrapper = mount(<AffixMounter />, { attachTo: document.getElementById('mounter') });
jest.runAllTimers();
2018-05-23 21:03:32 +08:00
2019-03-03 23:19:07 +08:00
movePlaceholder(0);
expect(wrapper.instance().affix.state.affixStyle).toBeFalsy();
2018-05-23 21:03:32 +08:00
2019-03-03 23:19:07 +08:00
movePlaceholder(-100);
expect(wrapper.instance().affix.state.affixStyle).toBeTruthy();
2018-05-23 21:03:32 +08:00
2019-03-03 23:19:07 +08:00
movePlaceholder(0);
expect(wrapper.instance().affix.state.affixStyle).toBeFalsy();
});
it('support offsetBottom', () => {
document.body.innerHTML = '<div id="mounter" />';
2018-12-07 16:17:45 +08:00
wrapper = mount(<AffixMounter offsetBottom={0} />, {
attachTo: document.getElementById('mounter'),
});
2019-03-03 23:19:07 +08:00
jest.runAllTimers();
2019-03-03 23:19:07 +08:00
movePlaceholder(300);
expect(wrapper.instance().affix.state.affixStyle).toBeTruthy();
2019-03-03 23:19:07 +08:00
movePlaceholder(0);
expect(wrapper.instance().affix.state.affixStyle).toBeFalsy();
2019-03-03 23:19:07 +08:00
movePlaceholder(300);
expect(wrapper.instance().affix.state.affixStyle).toBeTruthy();
});
it('updatePosition when offsetTop changed', () => {
document.body.innerHTML = '<div id="mounter" />';
2018-12-07 16:17:45 +08:00
wrapper = mount(<AffixMounter offsetTop={0} />, {
attachTo: document.getElementById('mounter'),
});
jest.runAllTimers();
2019-03-03 23:19:07 +08:00
movePlaceholder(-100);
expect(wrapper.instance().affix.state.affixStyle.top).toBe(0);
wrapper.setProps({
offsetTop: 10,
});
jest.runAllTimers();
expect(wrapper.instance().affix.state.affixStyle.top).toBe(10);
});
2019-03-09 14:03:14 +08:00
it('updatePosition when target changed', () => {
const container = '<div id="mounter" />';
const getTarget = () => container;
wrapper = mount(<Affix target={getTarget} />);
wrapper.setProps({ target: null });
expect(wrapper.instance().state.status).toBe(0);
expect(wrapper.instance().state.affixStyle).toBe(undefined);
expect(wrapper.instance().state.placeholderStyle).toBe(undefined);
2019-03-09 14:03:14 +08:00
});
});