mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
* Install test dependencies. * Add initial test files. These files were created using a simplistic AST manipulator using `recast` to preserve formatting. There's bound to be a huge chunk of errors, but this serves as a good start. QUnit was replaced with Mocha, with ES2015 imports running via `esm`. As far as possible, QUnit-specific syntax has been replaced with Mocha's `describe` and `it`, while the native Node.js `assert` module is used for assertions. Files in the `test` directory ending in `.test.js` will be treated as test files. * Add initial passing files to test run.
133 lines
4.0 KiB
JavaScript
133 lines
4.0 KiB
JavaScript
import assert from 'assert';
|
|
import lodashStable from 'lodash';
|
|
import { stubOne, _, stubTwo, stubThree, stubFour, noop, slice } from './utils.js';
|
|
import constant from '../constant.js';
|
|
|
|
describe('method', function() {
|
|
it('should create a function that calls a method of a given object', function() {
|
|
var object = { 'a': stubOne };
|
|
|
|
lodashStable.each(['a', ['a']], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method.length, 1);
|
|
assert.strictEqual(method(object), 1);
|
|
});
|
|
});
|
|
|
|
it('should work with deep property values', function() {
|
|
var object = { 'a': { 'b': stubTwo } };
|
|
|
|
lodashStable.each(['a.b', ['a', 'b']], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(object), 2);
|
|
});
|
|
});
|
|
|
|
it('should work with a non-string `path`', function() {
|
|
var array = lodashStable.times(3, constant);
|
|
|
|
lodashStable.each([1, [1]], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(array), 1);
|
|
});
|
|
});
|
|
|
|
it('should coerce `path` to a string', function() {
|
|
function fn() {}
|
|
fn.toString = lodashStable.constant('fn');
|
|
|
|
var expected = [1, 2, 3, 4],
|
|
object = { 'null': stubOne, 'undefined': stubTwo, 'fn': stubThree, '[object Object]': stubFour },
|
|
paths = [null, undefined, fn, {}];
|
|
|
|
lodashStable.times(2, function(index) {
|
|
var actual = lodashStable.map(paths, function(path) {
|
|
var method = _.method(index ? [path] : path);
|
|
return method(object);
|
|
});
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
});
|
|
});
|
|
|
|
it('should work with inherited property values', function() {
|
|
function Foo() {}
|
|
Foo.prototype.a = stubOne;
|
|
|
|
lodashStable.each(['a', ['a']], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(new Foo), 1);
|
|
});
|
|
});
|
|
|
|
it('should use a key over a path', function() {
|
|
var object = { 'a.b': stubOne, 'a': { 'b': stubTwo } };
|
|
|
|
lodashStable.each(['a.b', ['a.b']], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(object), 1);
|
|
});
|
|
});
|
|
|
|
it('should return `undefined` when `object` is nullish', function() {
|
|
var values = [, null, undefined],
|
|
expected = lodashStable.map(values, noop);
|
|
|
|
lodashStable.each(['constructor', ['constructor']], function(path) {
|
|
var method = _.method(path);
|
|
|
|
var actual = lodashStable.map(values, function(value, index) {
|
|
return index ? method(value) : method();
|
|
});
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
});
|
|
});
|
|
|
|
it('should return `undefined` for deep paths when `object` is nullish', function() {
|
|
var values = [, null, undefined],
|
|
expected = lodashStable.map(values, noop);
|
|
|
|
lodashStable.each(['constructor.prototype.valueOf', ['constructor', 'prototype', 'valueOf']], function(path) {
|
|
var method = _.method(path);
|
|
|
|
var actual = lodashStable.map(values, function(value, index) {
|
|
return index ? method(value) : method();
|
|
});
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
});
|
|
});
|
|
|
|
it('should return `undefined` if parts of `path` are missing', function() {
|
|
var object = {};
|
|
|
|
lodashStable.each(['a', 'a[1].b.c', ['a'], ['a', '1', 'b', 'c']], function(path) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(object), undefined);
|
|
});
|
|
});
|
|
|
|
it('should apply partial arguments to function', function() {
|
|
var object = {
|
|
'fn': function() {
|
|
return slice.call(arguments);
|
|
}
|
|
};
|
|
|
|
lodashStable.each(['fn', ['fn']], function(path) {
|
|
var method = _.method(path, 1, 2, 3);
|
|
assert.deepStrictEqual(method(object), [1, 2, 3]);
|
|
});
|
|
});
|
|
|
|
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) {
|
|
var method = _.method(path);
|
|
assert.strictEqual(method(object), 1);
|
|
});
|
|
});
|
|
});
|