forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoke.js
71 lines (55 loc) · 2.14 KB
/
invoke.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
import assert from 'assert';
import lodashStable from 'lodash';
import { noop, stubA, stubB, stubOne } from './utils.js';
import invoke from '../invoke.js';
describe('invoke', function() {
it('should invoke a method on `object`', function() {
var object = { 'a': lodashStable.constant('A') },
actual = invoke(object, 'a');
assert.strictEqual(actual, 'A');
});
it('should support invoking with arguments', function() {
var object = { 'a': function(a, b) { return [a, b]; } },
actual = invoke(object, 'a', 1, 2);
assert.deepStrictEqual(actual, [1, 2]);
});
it('should not error on nullish elements', function() {
var values = [null, undefined],
expected = lodashStable.map(values, noop);
var actual = lodashStable.map(values, function(value) {
try {
return invoke(value, 'a.b', 1, 2);
} catch (e) {}
});
assert.deepStrictEqual(actual, expected);
});
it('should preserve the sign of `0`', function() {
var object = { '-0': stubA, '0': stubB },
props = [-0, Object(-0), 0, Object(0)];
var actual = lodashStable.map(props, function(key) {
return invoke(object, key);
});
assert.deepStrictEqual(actual, ['a', 'a', 'b', 'b']);
});
it('should support deep paths', function() {
var object = { 'a': { 'b': function(a, b) { return [a, b]; } } };
lodashStable.each(['a.b', ['a', 'b']], function(path) {
var actual = invoke(object, path, 1, 2);
assert.deepStrictEqual(actual, [1, 2]);
});
});
it('should invoke deep property methods with the correct `this` binding', function() {
var object = { 'a': { 'b': function() { return this.c; }, 'c': 1 } };
lodashStable.each(['a.b', ['a', 'b']], function(path) {
assert.deepStrictEqual(invoke(object, path), 1);
});
});
it('should return an unwrapped value when implicitly chaining', function() {
var object = { 'a': stubOne };
assert.strictEqual(_(object).invoke('a'), 1);
});
it('should return a wrapped value when explicitly chaining', function() {
var object = { 'a': stubOne };
assert.ok(_(object).chain().invoke('a') instanceof _);
});
});