forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateChainedFunctionSpec.js
More file actions
71 lines (58 loc) · 2 KB
/
createChainedFunctionSpec.js
File metadata and controls
71 lines (58 loc) · 2 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
/* eslint no-new-func: 0 */
import createChainedFunction from '../../src/utils/createChainedFunction';
describe('createChainedFunction', () => {
it('returns null with no arguments', () => {
expect(createChainedFunction()).to.equal(null);
});
it('returns original function when single function is provided', () => {
const func1 = sinon.stub();
createChainedFunction(func1).should.equal(func1);
});
it('wraps two functions with another that invokes both when called', () => {
const func1 = sinon.stub();
const func2 = sinon.stub();
const chained = createChainedFunction(func1, func2);
chained
.should.not.equal(func1)
.and.should.not.equal(func2);
func1.should.not.have.been.called;
func2.should.not.have.been.called;
chained();
func1.should.have.been.calledOnce;
func2.should.have.been.calledOnce;
});
it('wraps multiple functions and invokes them in the order provided', () => {
const results = [];
const func1 = () => results.push(1);
const func2 = () => results.push(2);
const func3 = () => results.push(3);
const chained = createChainedFunction(func1, func2, func3);
chained();
results.should.eql([1, 2, 3]);
});
it('forwards arguments to all chained functions', () => {
const in1 = 'herpa derpa';
const in2 = {
herpa: 'derpa'
};
const func = (arg1, arg2) => {
arg1.should.equal(in1);
arg2.should.equal(in2);
};
const chained = createChainedFunction(func, func, func);
chained(in1, in2);
});
it('throws when func is not provided', () => {
expect(() => {
createChainedFunction({ herpa: 'derpa' });
}).to.throw(/Invalid Argument Type/);
});
it('works with new Function call', () => {
const results = [];
const func1 = new Function('results', 'results.push(1);');
const func2 = new Function('results', 'results.push(2);');
const chained = createChainedFunction(func1, func2);
chained(results);
results.should.eql([1, 2]);
});
});