forked from malte-wessel/react-custom-scrollbars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgettersSetters.js
131 lines (128 loc) · 4.78 KB
/
gettersSetters.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
import { Scrollbars } from 'react-custom-scrollbars';
import { render, unmountComponentAtNode } from 'react-dom';
import React from 'react';
export default function createTests(scrollbarWidth, envScrollbarWidth) {
let node;
beforeEach(() => {
node = document.createElement('div');
document.body.appendChild(node);
});
afterEach(() => {
unmountComponentAtNode(node);
document.body.removeChild(node);
});
describe('getters', () => {
function renderScrollbars(callback) {
render((
<Scrollbars style={{ width: 100, height: 100 }}>
<div style={{ width: 200, height: 200 }}/>
</Scrollbars>
), node, callback);
}
describe('getScrollLeft', () => {
it('should return scrollLeft', done => {
renderScrollbars(function callback() {
this.scrollLeft(50);
expect(this.getScrollLeft()).toEqual(50);
done();
});
});
});
describe('getScrollTop', () => {
it('should return scrollTop', done => {
renderScrollbars(function callback() {
this.scrollTop(50);
expect(this.getScrollTop()).toEqual(50);
done();
});
});
});
describe('getScrollWidth', () => {
it('should return scrollWidth', done => {
renderScrollbars(function callback() {
expect(this.getScrollWidth()).toEqual(200);
done();
});
});
});
describe('getScrollHeight', () => {
it('should return scrollHeight', done => {
renderScrollbars(function callback() {
expect(this.getScrollHeight()).toEqual(200);
done();
});
});
});
describe('getClientWidth', () => {
it('should return scrollWidth', done => {
renderScrollbars(function callback() {
expect(this.getClientWidth()).toEqual(100 + (scrollbarWidth - envScrollbarWidth));
done();
});
});
});
describe('getClientHeight', () => {
it('should return scrollHeight', done => {
renderScrollbars(function callback() {
expect(this.getClientHeight()).toEqual(100 + (scrollbarWidth - envScrollbarWidth));
done();
});
});
});
});
describe('setters', () => {
function renderScrollbars(callback) {
render((
<Scrollbars style={{ width: 100, height: 100 }}>
<div style={{ width: 200, height: 200 }}/>
</Scrollbars>
), node, callback);
}
describe('scrollLeft/scrollToLeft', () => {
it('should scroll to given left value', done => {
renderScrollbars(function callback() {
this.scrollLeft(50);
expect(this.getScrollLeft()).toEqual(50);
this.scrollToLeft();
expect(this.getScrollLeft()).toEqual(0);
this.scrollLeft(50);
this.scrollLeft();
expect(this.getScrollLeft()).toEqual(0);
done();
});
});
});
describe('scrollTop/scrollToTop', () => {
it('should scroll to given top value', done => {
renderScrollbars(function callback() {
this.scrollTop(50);
expect(this.getScrollTop()).toEqual(50);
this.scrollToTop();
expect(this.getScrollTop()).toEqual(0);
this.scrollTop(50);
this.scrollTop();
expect(this.getScrollTop()).toEqual(0);
done();
});
});
});
describe('scrollToRight', () => {
it('should scroll to right', done => {
renderScrollbars(function callback() {
this.scrollToRight();
expect(this.getScrollLeft()).toEqual(100 + (envScrollbarWidth - scrollbarWidth));
done();
});
});
});
describe('scrollToBottom', () => {
it('should scroll to bottom', done => {
renderScrollbars(function callback() {
this.scrollToBottom();
expect(this.getScrollTop()).toEqual(100 + (envScrollbarWidth - scrollbarWidth));
done();
});
});
});
});
}