-
Notifications
You must be signed in to change notification settings - Fork 0
/
reorient.test.js
398 lines (322 loc) · 9.09 KB
/
reorient.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
'use strict'
const { transform } = require('.')
const { expect } = require('@hapi/code')
const { stub } = require('sinon')
describe('Reorient', () => {
context('#transform([Object object])', () => {
const CORGE = 'corge'
const getCorge = function () { return CORGE }
const combineGarplyFred = function (source) { return `${source.garply} & ${source.fred}` }
let result
const source = {
foo: 'bar',
garply: 'waldo',
fred: 'plugh',
xyzzy: [{ id: 'thud' }]
}
const transforms = {
baz: 'foo',
qux: getCorge,
grault: combineGarplyFred,
corge: null,
xyzzy: 'xyzzy'
}
before(async () => {
result = await transform(source, transforms)
})
it('Transforms values', () => {
expect(result.baz).to.equal(source.foo)
})
it('Transforms functions', () => {
expect(result.qux).to.equal(CORGE)
})
it('Transformation function receives source', () => {
expect(result.grault).to.equal('waldo & plugh')
})
it('Supports no-op keys', () => {
expect(result.corge).not.to.exist()
})
it('Transforms arrays', () => {
console.log(result)
expect(result.xyzzy).to.equal([{ id: 'thud' }])
})
})
context('#transform([Array array])', () => {
const CORGE = 'corge'
const getCorge = function () { return CORGE }
const combineGarplyFred = function (source) { return `${source.garply} & ${source.fred}` }
let result
const source = {
foo: 'bar',
garply: 'waldo',
fred: 'plugh',
qux: null,
quux: undefined,
quz: false,
grault: {
waldo: 'corge'
}
}
const transforms = [
'foo',
getCorge,
combineGarplyFred,
'qux',
'quux',
'quz',
'grault.waldo',
'grault.corge',
'waldo',
null
]
before(async () => {
result = await transform(source, transforms)
})
it('Result is an array', () => {
expect(result).to.be.an.array()
})
it('Transforms values', () => {
expect(result[0]).to.equal(source.foo)
})
it('Transforms functions', () => {
expect(result[1]).to.equal(CORGE)
})
it('Transformation function receives source', () => {
expect(result[2]).to.equal('waldo & plugh')
})
it('Transforms null', () => {
expect(result[2]).to.equal('waldo & plugh')
})
it('Transforms undefined', () => {
expect(result[3]).to.equal(null)
})
it('Transforms undefined', () => {
expect(result[4]).to.equal(undefined)
})
it('Transforms false', () => {
expect(result[5]).to.equal(false)
})
it('Transforms nested value', () => {
expect(result[6]).to.equal('corge')
})
it('Transforms missing nested value', () => {
expect(result[7]).to.equal(undefined)
})
it('Transforms missing root value', () => {
expect(result[8]).to.equal(undefined)
})
it('Supports nulls as no-op', () => {
expect(result[9]).not.to.exist()
})
})
context('Nulls are trimmed', () => {
let result
function makeUndefined () {
return undefined
}
function getSomeValue () {
return 'xyzzy'
}
const source = {
bar: undefined,
baz: void 0, // eslint-disable-line
qux: null,
grault: false,
garply: {
waldo: undefined
},
xyzzy: ['thud']
}
const transforms = {
foo: makeUndefined,
bar: 'bar',
baz: 'baz',
qux: 'qux',
grault: 'grault',
'fred.plugh': 'garply.waldo',
thud: getSomeValue,
xyzzy: 'xyzzy'
}
before(async () => {
result = await transform(source, transforms, { trim: true })
})
it('Strips undefined resolved values', () => {
expect(result).not.to.include('foo')
})
it('Strips undefined values', () => {
expect(result).not.to.include('bar')
})
it('Strips void 0 values', () => {
expect(result).not.to.include('baz')
})
it('Strips null values', () => {
expect(result).not.to.include('qux')
})
it('Strips nested undefined values', () => {
expect(result).not.to.include('fred')
})
it('Does not strip false values', () => {
expect(result).to.include('grault')
})
it('Maps regular values', () => {
expect(result.thud).to.equal(getSomeValue())
})
it('Maps arrays', () => {
expect(result.xyzzy).to.equal(['thud'])
})
it('Does not trim nulls by default', async () => {
const transformed = await transform(source, transforms)
expect(transformed).to.include(['foo', 'bar', 'baz', 'qux', 'grault'])
})
})
context('With defaults', () => {
const source = {
foo: 'foo',
bar: 'bar',
baz: undefined,
qux: null,
grault: false,
plugh: 0,
thud: ''
}
const transforms = {
foo: 'foo',
bar: { path: 'bar', default: 'barr' },
baz: { path: 'baz', default: 'quux' },
qux: { path: 'qux', default: 'garply' },
grault: { path: 'grault', default: 'waldo' },
plugh: { path: 'plugh', default: 'thud' },
thud: { path: 'thud', default: 'zap' },
kwak: { path: 'kwak', default: 'blorp' },
wack: { path: 'wack.porp', default: 'doop' }
}
let result
before(async () => {
result = await transform(source, transforms)
})
it('Regular transform', () => {
expect(result.foo).to.equal(source.foo)
})
it('Regular transform with default', () => {
expect(result.bar).to.equal(source.bar)
})
it('Defaults undefined property', () => {
expect(result.baz).to.equal('quux')
})
it('Does not default null property', () => {
expect(result.qux).to.equal(null)
})
it('Does not default falsy property', () => {
expect(result.grault).to.equal(false)
})
it('Does not default falsy value 0', () => {
expect(result.plugh).to.equal(0)
})
it('Does not default falsy value <empty string>', () => {
expect(result.thud).to.equal('')
})
it('Defaults missing property', () => {
expect(result.kwak).to.equal('blorp')
})
it('Defaults missing path', () => {
expect(result.wack).to.equal('doop')
})
})
context('With validation', () => {
function getQux () {
return 'qux'
}
function validateIsQux () {
return 'qux'
}
const source = {
foo: 'qux',
bar: null
}
const transforms = {
foo: { path: 'foo', validate: validateIsQux },
bar: { path: 'baz', default: 'qux', validate: validateIsQux },
baz: { path: getQux, validate: validateIsQux }
}
let result
before(async () => {
result = await transform(source, transforms)
})
it('Regular transform', () => {
expect(result.foo).to.equal(source.foo)
})
it('With default value', () => {
expect(result.bar).to.equal('qux')
})
it('With function as path', () => {
expect(result.baz).to.equal('qux')
})
})
context('receives value and source object', () => {
const source = {
foo: 'qux',
bar: 'baz'
}
let validateStub
before(async () => {
validateStub = stub()
await transform(source, {
baz: {
path: 'foo',
validate: validateStub
}
})
})
it('Recieved transformed value', () => {
expect(validateStub.firstCall.args[0]).to.equal('qux')
})
it('Recieved full source', () => {
expect(validateStub.firstCall.args[1]).to.equal(source)
})
})
context('With failing', () => {
const scenarios = [
{ scenario: 'validation of regular path', conf: { foo: { path: 'foo', validate: validateIsQux } } },
{ scenario: 'validation of defaulted path', conf: { foo: { path: 'baz', default: 'qux', validate: validateIsQux } } },
{ scenario: 'validation of function path', conf: { foo: { path: getQux, validate: validateIsQux } } }
]
function getQux () {
return 'qux'
}
function validateIsQux () {
throw new Error('validation failed')
}
const source = {
foo: 'qux'
}
scenarios.forEach(({ scenario, conf }) => {
it(scenario, async () => {
await expect(
transform(source, conf)
).to.reject(Error, 'validation failed')
})
})
})
})
describe('Configuration', () => {
const scenarios = [
{ scenario: 'requires path', conf: { foo: {} }, err: 'Transform options should at least include `path` property.' },
{ scenario: 'default cannot use function', conf: { foo: { path: () => {}, default: 'barr' } }, err: 'Transformations with default values cannot be functions' },
{ scenario: 'default cannot use function', conf: { foo: { path: 'x', validate: 'ff' } }, err: 'validate property should be a function which returns true or throws an error' }
]
scenarios.forEach(({ scenario, conf, err }) => {
context(scenario, () => {
const source = {
foo: 'foo'
}
it('fails validation', async () => {
await expect(
transform(source, conf)
).to.reject(
Error,
err
)
})
})
})
})