forked from reduxjs/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.spec.js
117 lines (108 loc) · 2.25 KB
/
compose.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
import { compose } from '../'
describe('Utils', () => {
describe('compose', () => {
it('composes from right to left', () => {
const double = x => x * 2
const square = x => x * x
expect(compose(square)(5)).toBe(25)
expect(
compose(
square,
double
)(5)
).toBe(100)
expect(
compose(
double,
square,
double
)(5)
).toBe(200)
})
it('composes functions from right to left', () => {
const a = next => x => next(x + 'a')
const b = next => x => next(x + 'b')
const c = next => x => next(x + 'c')
const final = x => x
expect(
compose(
a,
b,
c
)(final)('')
).toBe('abc')
expect(
compose(
b,
c,
a
)(final)('')
).toBe('bca')
expect(
compose(
c,
a,
b
)(final)('')
).toBe('cab')
})
it('throws at runtime if argument is not a function', () => {
const square = x => x * x
const add = (x, y) => x + y
expect(() =>
compose(
square,
add,
false
)(1, 2)
).toThrow()
expect(() =>
compose(
square,
add,
undefined
)(1, 2)
).toThrow()
expect(() =>
compose(
square,
add,
true
)(1, 2)
).toThrow()
expect(() =>
compose(
square,
add,
NaN
)(1, 2)
).toThrow()
expect(() =>
compose(
square,
add,
'42'
)(1, 2)
).toThrow()
})
it('can be seeded with multiple arguments', () => {
const square = x => x * x
const add = (x, y) => x + y
expect(
compose(
square,
add
)(1, 2)
).toBe(9)
})
it('returns the first given argument if given no functions', () => {
expect(compose()(1, 2)).toBe(1)
expect(compose()(3)).toBe(3)
expect(compose()()).toBe(undefined)
})
it('returns the first function if given only one', () => {
const fn = () => {}
expect(compose(fn)).toBe(fn)
})
})
})