forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.spec.js
More file actions
211 lines (189 loc) · 6.99 KB
/
Copy pathutils.spec.js
File metadata and controls
211 lines (189 loc) · 6.99 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
import * as Utils from '../utils';
describe('Utils', () => {
describe('mapToCssModules', () => {
describe('without css module', () => {
it('should return a string', () => {
expect(Utils.mapToCssModules('btn btn-primary')).toEqual(expect.any(String));
});
it('should return the classnames it was given, unchanged', () => {
expect(Utils.mapToCssModules('btn btn-primary')).toBe('btn btn-primary');
});
});
describe('with css module', () => {
it('should return a string', () => {
const cssModule = {
btn: 'a1',
'btn-success': 'b1',
'btn-primary': 'c2',
};
expect(Utils.mapToCssModules('btn btn-primary', cssModule)).toEqual(expect.any(String));
});
it('should return the mapped classnames', () => {
const cssModule = {
btn: 'a1',
'btn-success': 'b1',
'btn-primary': 'c2',
};
expect(Utils.mapToCssModules('btn btn-primary', cssModule)).toBe('a1 c2');
});
it('should return the original classname when it is not in the map', () => {
const cssModule = {
btn: 'a1',
'btn-success': 'b1',
};
expect(Utils.mapToCssModules('btn btn-primary', cssModule)).toBe('a1 btn-primary');
});
});
});
describe('omit', () => {
it('should omit keys', () => {
const input = {
hello: 'world',
speed: 'fast',
size: 'small'
};
expect(Utils.omit(input, ['hello'])).toEqual({ speed: 'fast', size: 'small' });
});
it('should not alter source object', () => {
const input = {
hello: 'world',
speed: 'fast',
size: 'small'
};
expect(Utils.omit(input, ['hello'])).toEqual({ speed: 'fast', size: 'small' });
expect(input).toEqual({
hello: 'world',
speed: 'fast',
size: 'small'
});
});
it('should ignore non-existing keys', () => {
const input = {
hello: 'world',
speed: 'fast',
size: 'small'
};
expect(Utils.omit(input, ['non-existing', 'hello'])).toEqual({ speed: 'fast', size: 'small' });
});
it('should return a new object', () => {
const input = {
hello: 'world'
};
// toBe tests equality using `===` and so will test if it's not the same object.
expect(Utils.omit(input, [])).not.toBe(input);
});
});
describe('DOMElement', () => {
it('should not return an error when the prop is an instance of an Element', () => {
const props = {
dom: document.createElement('div'),
};
const propName = 'dom';
const componentName = 'ComponentName';
expect(Utils.DOMElement(props, propName, componentName)).toBeUndefined();
});
it('should return an error when the prop is NOT an instance of an Element', () => {
const props = {
dom: 'not an Element',
};
const propName = 'dom';
const componentName = 'ComponentName';
expect(Utils.DOMElement(props, propName, componentName)).toEqual(new Error(
'Invalid prop `' + propName + '` supplied to `' + componentName +
'`. Expected prop to be an instance of Element. Validation failed.'
));
});
});
describe('getTarget', () => {
it('should return the result of target if target is a function', () => {
const data = {};
const spy = jest.fn(() => data);
expect(Utils.getTarget(spy)).toEqual(data);
expect(spy).toHaveBeenCalled();
});
it('should query the document for the target if the target is a string', () => {
const element = document.createElement('div');
element.className = 'thing';
document.body.appendChild(element);
jest.spyOn(document, 'querySelector');
expect(Utils.getTarget('.thing')).toEqual(element);
expect(document.querySelector).toHaveBeenCalledWith('.thing');
document.querySelector.mockRestore();
});
it('should query the document for the id target if the target is a string and could not be found normally', () => {
const element = document.createElement('div');
element.setAttribute('id', 'thing');
document.body.appendChild(element);
jest.spyOn(document, 'querySelector');
expect(Utils.getTarget('thing')).toEqual(element);
expect(document.querySelector).toHaveBeenCalledWith('#thing');
document.querySelector.mockRestore();
});
it('should return the input target if it is not a function nor a string', () => {
const target = {};
expect(Utils.getTarget(target)).toEqual(target);
});
it('should not return an error when the target could be identified', () => {
const element = document.createElement('div');
element.className = 'thing';
document.body.appendChild(element);
jest.spyOn(document, 'querySelector');
expect(() => {
Utils.getTarget('.thing');
}).not.toThrow();
});
it('should return an error when the target could not be identified', () => {
const target = 'not a target';
expect(() => {
Utils.getTarget(target);
}).toThrow(`The target '${target}' could not be identified in the dom, tip: check spelling`);
});
});
describe('setGlobalCssModule', () => {
it('should return the mapped classnames', () => {
const globalCssModule = {
btn: 'a1',
'btn-success': 'b1',
'btn-primary': 'c2',
};
Utils.setGlobalCssModule(globalCssModule);
expect(Utils.mapToCssModules('btn btn-primary')).toBe('a1 c2');
});
});
// TODO
// describe('getScrollbarWidth', () => {
// // jsdom workaround https://github.com/tmpvar/jsdom/issues/135#issuecomment-68191941
// Object.defineProperties(window.HTMLElement.prototype, {
// offsetLeft: {
// get: function () { return parseFloat(window.getComputedStyle(this).marginLeft) || 0; }
// },
// offsetTop: {
// get: function () { return parseFloat(window.getComputedStyle(this).marginTop) || 0; }
// },
// offsetHeight: {
// get: function () { return parseFloat(window.getComputedStyle(this).height) || 0; }
// },
// offsetWidth: {
// get: function () { return parseFloat(window.getComputedStyle(this).width) || 0; }
// }
// });
//
// it('should return scrollbarWidth', () => {
// expect(Utils.getScrollbarWidth()).toBe();
// });
// });
// TODO verify setScrollbarWidth is called with values when body overflows
// it('should conditionallyUpdateScrollbar when isBodyOverflowing is true', () => {
// const stubbedSetScrollbarWidth = jest.fn().and.callThrough();
// const prevClientWidth = document.body.clientWidth;
// const prevWindowInnerWidth = window.innerWidth;
// document.body.clientWidth = 100;
// window.innerWidth = 500;
//
// conditionallyUpdateScrollbar();
// expect(stubbedSetScrollbarWidth).toHaveBeenCalled();
//
// document.body.clientWidth = prevClientWidth;
// window.innerWidth = prevWindowInnerWidth;
// });
});