-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathLazyLoadImage.spec.js
181 lines (149 loc) · 4.62 KB
/
LazyLoadImage.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* eslint max-len: 0 */
/* eslint max-statements: 0 */
import React from 'react';
import ReactTestUtils from 'react-dom/test-utils';
import { configure, mount } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
import LazyLoadImage from './LazyLoadImage.jsx';
import LazyLoadComponent from './LazyLoadComponent.jsx';
configure({ adapter: new Adapter() });
const {
findRenderedComponentWithType,
findRenderedDOMComponentWithClass,
findRenderedDOMComponentWithTag,
scryRenderedDOMComponentsWithClass,
scryRenderedDOMComponentsWithTag,
Simulate,
} = ReactTestUtils;
describe('LazyLoadImage', function() {
it('renders a LazyLoadComponent with the correct props', function() {
const props = {
beforeLoad: () => null,
delayMethod: 'debounce',
delayTime: 600,
placeholder: null,
scrollPosition: { x: 0, y: 0 },
style: {},
src: 'http://localhost/lorem-ipsum.jpg',
visibleByDefault: false,
};
const lazyLoadImage = mount(
<LazyLoadImage
beforeLoad={props.beforeLoad}
delayMethod={props.delayMethod}
delayTime={props.delayTime}
placeholder={props.placeholder}
scrollPosition={props.scrollPosition}
src={props.src}
style={props.style}
visibleByDefault={props.visibleByDefault}
/>
);
const lazyLoadComponent = findRenderedComponentWithType(
lazyLoadImage.instance(),
LazyLoadComponent
);
const img = findRenderedDOMComponentWithTag(
lazyLoadImage.instance(),
'img'
);
expect(lazyLoadComponent.props.beforeLoad).toEqual(props.beforeLoad);
expect(lazyLoadComponent.props.delayMethod).toEqual(props.delayMethod);
expect(lazyLoadComponent.props.delayTime).toEqual(props.delayTime);
expect(lazyLoadComponent.props.placeholder).toEqual(props.placeholder);
expect(lazyLoadComponent.props.scrollPosition).toEqual(
props.scrollPosition
);
expect(lazyLoadComponent.props.style).toEqual(props.style);
expect(lazyLoadComponent.props.visibleByDefault).toEqual(
props.visibleByDefault
);
expect(img.src).toEqual(props.src);
});
it('updates state and calls onLoad and afterLoad when img triggers onLoad', function() {
const afterLoad = jest.fn();
const onLoad = jest.fn();
const lazyLoadImage = mount(<LazyLoadImage onLoad={onLoad} afterLoad={afterLoad} />);
const img = findRenderedDOMComponentWithTag(
lazyLoadImage.instance(),
'img'
);
Simulate.load(img);
expect(lazyLoadImage.instance().state.loaded);
expect(afterLoad).toHaveBeenCalledTimes(1);
expect(onLoad).toHaveBeenCalledTimes(1);
});
it('sets loaded class to wrapper when img triggers onLoad', function() {
const lazyLoadImage = mount(<LazyLoadImage effect="blur" />);
const img = findRenderedDOMComponentWithTag(
lazyLoadImage.instance(),
'img'
);
Simulate.load(img);
const loadedWrapper = scryRenderedDOMComponentsWithClass(
lazyLoadImage.instance(),
'lazy-load-image-loaded'
);
expect(loadedWrapper.length).toEqual(1);
});
it('resets the background-image and background-size when img triggers onLoad', function() {
const lazyLoadImage = mount(<LazyLoadImage effect="blur" />);
const img = findRenderedDOMComponentWithTag(
lazyLoadImage.instance(),
'img'
);
Simulate.load(img);
const loadedWrapper = findRenderedDOMComponentWithClass(
lazyLoadImage.instance(),
'lazy-load-image-loaded'
);
expect(
loadedWrapper.style.getPropertyValue('background-image')
).toEqual('');
expect(loadedWrapper.style.getPropertyValue('background-size')).toEqual(
''
);
});
it('adds the effect class', function() {
const lazyLoadImage = mount(<LazyLoadImage effect="blur" />);
const blurSpan = scryRenderedDOMComponentsWithClass(
lazyLoadImage.instance(),
'blur'
);
expect(blurSpan.length).toEqual(1);
});
it("doesn't render placeholder background when not defined", function() {
const lazyLoadImage = mount(<LazyLoadImage />);
const span = scryRenderedDOMComponentsWithTag(
lazyLoadImage.instance(),
'span'
);
expect(span.length).toEqual(0);
});
it('renders placeholder background when defined', function() {
const lazyLoadImage = mount(
<LazyLoadImage
placeholderSrc="lorem-ipsum.jpg"
visibleByDefault={false}
/>
);
const span = scryRenderedDOMComponentsWithTag(
lazyLoadImage.instance(),
'span'
);
expect(span.length).toEqual(1);
});
it("doesn't render placeholder background when visibleByDefault is true", function() {
const lazyLoadImage = mount(
<LazyLoadImage
placeholderSrc="lorem-ipsum.jpg"
visibleByDefault={true}
/>
);
const span = scryRenderedDOMComponentsWithTag(
lazyLoadImage.instance(),
'span'
);
expect(span.length).toEqual(0);
});
});