forked from jamesknelson/react-pacomo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
360 lines (289 loc) · 8.92 KB
/
test.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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
import 'babel-polyfill'
import {prefixedClassNames, withPackageName, transformWithPrefix} from './lib/pacomo'
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import TestUtils from 'react-addons-test-utils'
import assert from 'assert'
const testTransform = transformWithPrefix('test')
const { transformer, decorator } = withPackageName('prefix')
/*
* Util
*/
function shallowRenderElement(element) {
const shallowRenderer = TestUtils.createRenderer()
shallowRenderer.render(element)
return shallowRenderer.getRenderOutput()
}
function shallowRenderComponent(Component, props) {
return shallowRenderElement(<Component {...props} />)
}
/*
* Fixtures
*/
class FullComponent extends Component {
render() {
return <div className={{active: this.props.active}} />
}
}
FullComponent.propTypes = {
className: PropTypes.string.isRequired,
active: PropTypes.bool,
}
FullComponent.defaultProps = {
className: "defaultClassName",
active: true,
}
class BareComponent extends Component {
render() {
return <div />
}
}
class ContainerComponent extends Component {
render() {
return <div>{this.props.children}</div>
}
}
function FullStatelessComponent(props) {
return <div className={{active: props.active}} />
}
FullStatelessComponent.propTypes = {
className: PropTypes.string.isRequired,
active: PropTypes.bool,
}
FullStatelessComponent.defaultProps = {
className: "defaultClassName",
active: true,
}
function BareStatelessComponent(props) {
return <div />
}
function ContainerStatelessComponent({children}) {
return <div>{children}</div>
}
function nestedElement({active}) {
return (
<nav className='nav' untransformed={<div className="untransformed" />}>
<ContainerStatelessComponent
className={{link1: true, active: active == 'link1'}}
focusable={<a className="Link" />}
untransformed={[
<div className="untransformed" />,
<div className="untransformed" />,
]}
>
<span>Test</span>
Test
</ContainerStatelessComponent>
<ContainerStatelessComponent
className={{link2: true, active: active == 'link2'}}
focusable={<a className="Link" />}
>
<span>Test</span>
Test
</ContainerStatelessComponent>
</nav>
)
}
/*
* Tests
*/
describe('decorator', () => {
it("should pass through propTypes from the original class", () => {
const decoratedClass = decorator(FullComponent)
assert.equal(
decoratedClass.propTypes.className,
PropTypes.string.isRequired,
"className propType from origina class are passed through"
)
assert.equal(
decoratedClass.propTypes.active,
PropTypes.bool,
"other propTypes from original class is passed through"
)
})
it("should add a className propType if one doesn't already exist", () => {
const decoratedClass = decorator(BareComponent)
assert.equal(
decoratedClass.propTypes.className,
PropTypes.string,
"className propType exists"
)
})
})
describe('transformer', () => {
it("should pass through propTypes from the original function", () => {
const transformedFunction = transformer(FullStatelessComponent)
assert.equal(
transformedFunction.propTypes.className,
PropTypes.string.isRequired,
"className propType from origina class are passed through"
)
assert.equal(
transformedFunction.propTypes.active,
PropTypes.bool,
"other propTypes from original class is passed through"
)
})
it("should add a className propType if one doesn't already exist", () => {
const transformedFunction = transformer(BareStatelessComponent)
assert.equal(
transformedFunction.propTypes.className,
PropTypes.string,
"className propType exists"
)
})
})
describe('#render', () => {
it("respects the values of passed in `props`", () => {
const rendered = shallowRenderComponent(
decorator(FullComponent),
{className: 'passedIn', active: false}
)
assert.equal(
rendered.props.className,
'prefix-FullComponent passedIn'
)
})
it("repects the value of the original class's `defaultProps`", () => {
const rendered = shallowRenderComponent(decorator(FullComponent))
assert.equal(
rendered.props.className,
'prefix-FullComponent prefix-FullComponent-active defaultClassName'
)
})
it("works correctly when `super.render` does not return a `className`", () => {
const rendered = shallowRenderComponent(decorator(BareComponent))
assert.equal(
rendered.props.className,
'prefix-BareComponent'
)
})
it("adds `__pacomoSkip` to the any `children`", () => {
const rendered = shallowRenderComponent(
decorator(ContainerComponent),
{ children: <div className='icon' /> }
)
assert.equal(
rendered.props.children[0].props.__pacomoSkip,
true
)
})
})
describe('stateless render', () => {
it("respects the values of passed in `props`", () => {
const rendered = shallowRenderComponent(
transformer(FullStatelessComponent),
{className: 'passedIn', active: false}
)
assert.equal(
rendered.props.className,
'prefix-FullStatelessComponent passedIn'
)
})
it("repects the value of the original class's `defaultProps`", () => {
const rendered = shallowRenderComponent(transformer(FullStatelessComponent))
assert.equal(
rendered.props.className,
'prefix-FullStatelessComponent prefix-FullStatelessComponent-active defaultClassName'
)
})
it("works correctly when `super.render` does not return a `className`", () => {
const rendered = shallowRenderComponent(transformer(BareStatelessComponent))
assert.equal(
rendered.props.className,
'prefix-BareStatelessComponent'
)
})
it("adds `__pacomoSkip` to the any `children`", () => {
const rendered = shallowRenderComponent(
transformer(ContainerStatelessComponent),
{ children: <div className='icon' /> }
)
assert.equal(
rendered.props.children[0].props.__pacomoSkip,
true
)
})
})
describe('prefixedClassNames', () => {
it("accepts an object, producing the correct result", () => {
assert.equal(
prefixedClassNames('test-prefix', {
active: true,
inactive: false,
}),
'test-prefix-active',
"`classNames` produces the correct string when an object is passed in"
)
})
it("accepts a string, producing the correct result", () => {
assert.equal(
prefixedClassNames('test-prefix', 'test1', 'test2'),
'test-prefix-test1 test-prefix-test2',
"`classNames` produces the correct string when a string is passed in"
)
})
})
describe('transformWithPrefix', () => {
it("does not transform elements with the __pacomoSkip prop", () => {
const originalElement = <div className="test" __pacomoSkip />
const transformedElement = testTransform(originalElement)
assert.equal(
originalElement,
transformedElement
)
})
it("transforms the passed in element", () => {
const transformed = testTransform(nestedElement({active: 'link1'}))
assert.equal(
transformed.props.className,
'test-nav'
)
})
it("transforms passed in child elements", () => {
const transformed = testTransform(nestedElement({active: 'link1'}))
assert.equal(
transformed.props.children[0].props.className,
'test-link1 test-active'
)
assert.equal(
transformed.props.children[1].props.className,
'test-link2'
)
})
it("transforms element props on custom components", () => {
const transformed = testTransform(nestedElement({active: 'link1'}))
assert.equal(
transformed.props.children[0].props.focusable.props.className,
'test-Link'
)
})
it("does not transform elements with nothing to transform", () => {
const originalElement = nestedElement({active: 'link1'})
const transformedElement = testTransform(originalElement)
assert.equal(
transformedElement.props.children[0].props.children[0],
originalElement.props.children[0].props.children[0]
)
assert.equal(
transformedElement.props.children[0].props.children[0].className,
originalElement.props.children[0].props.children[0].className
)
})
it("does not transform arrays of element props on custom components", () => {
const originalElement = nestedElement({active: 'link1'})
const transformedElement = testTransform(originalElement)
assert.equal(
transformedElement.props.untransformed,
originalElement.props.untransformed
)
})
it("does not transform element props on DOM elements", () => {
const originalElement = nestedElement({active: 'link1'})
const transformedElement = testTransform(originalElement)
assert.equal(
transformedElement.props.children[0].props.untransformed,
originalElement.props.children[0].props.untransformed
)
})
})