mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17: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.
89 lines
2.8 KiB
JavaScript
89 lines
2.8 KiB
JavaScript
import assert from 'assert';
|
|
import lodashStable from 'lodash';
|
|
import { _, defineProperty, stubOne, noop, stubNaN } from './utils.js';
|
|
|
|
describe('assign and assignIn', function() {
|
|
lodashStable.each(['assign', 'assignIn'], function(methodName) {
|
|
var func = _[methodName];
|
|
|
|
it('`_.' + methodName + '` should assign source properties to `object`', function() {
|
|
assert.deepStrictEqual(func({ 'a': 1 }, { 'b': 2 }), { 'a': 1, 'b': 2 });
|
|
});
|
|
|
|
it('`_.' + methodName + '` should accept multiple sources', function() {
|
|
var expected = { 'a': 1, 'b': 2, 'c': 3 };
|
|
assert.deepStrictEqual(func({ 'a': 1 }, { 'b': 2 }, { 'c': 3 }), expected);
|
|
assert.deepStrictEqual(func({ 'a': 1 }, { 'b': 2, 'c': 2 }, { 'c': 3 }), expected);
|
|
});
|
|
|
|
it('`_.' + methodName + '` should overwrite destination properties', function() {
|
|
var expected = { 'a': 3, 'b': 2, 'c': 1 };
|
|
assert.deepStrictEqual(func({ 'a': 1, 'b': 2 }, expected), expected);
|
|
});
|
|
|
|
it('`_.' + methodName + '` should assign source properties with nullish values', function() {
|
|
var expected = { 'a': null, 'b': undefined, 'c': null };
|
|
assert.deepStrictEqual(func({ 'a': 1, 'b': 2 }, expected), expected);
|
|
});
|
|
|
|
it('`_.' + methodName + '` should skip assignments if values are the same', function() {
|
|
var object = {};
|
|
|
|
var descriptor = {
|
|
'configurable': true,
|
|
'enumerable': true,
|
|
'set': function() { throw new Error; }
|
|
};
|
|
|
|
var source = {
|
|
'a': 1,
|
|
'b': undefined,
|
|
'c': NaN,
|
|
'd': undefined,
|
|
'constructor': Object,
|
|
'toString': lodashStable.constant('source')
|
|
};
|
|
|
|
defineProperty(object, 'a', lodashStable.assign({}, descriptor, {
|
|
'get': stubOne
|
|
}));
|
|
|
|
defineProperty(object, 'b', lodashStable.assign({}, descriptor, {
|
|
'get': noop
|
|
}));
|
|
|
|
defineProperty(object, 'c', lodashStable.assign({}, descriptor, {
|
|
'get': stubNaN
|
|
}));
|
|
|
|
defineProperty(object, 'constructor', lodashStable.assign({}, descriptor, {
|
|
'get': lodashStable.constant(Object)
|
|
}));
|
|
|
|
try {
|
|
var actual = func(object, source);
|
|
} catch (e) {}
|
|
|
|
assert.deepStrictEqual(actual, source);
|
|
});
|
|
|
|
it('`_.' + methodName + '` should treat sparse array sources as dense', function() {
|
|
var array = [1];
|
|
array[2] = 3;
|
|
|
|
assert.deepStrictEqual(func({}, array), { '0': 1, '1': undefined, '2': 3 });
|
|
});
|
|
|
|
it('`_.' + methodName + '` should assign values of prototype objects', function() {
|
|
function Foo() {}
|
|
Foo.prototype.a = 1;
|
|
|
|
assert.deepStrictEqual(func({}, Foo.prototype), { 'a': 1 });
|
|
});
|
|
|
|
it('`_.' + methodName + '` should coerce string sources to objects', function() {
|
|
assert.deepStrictEqual(func({}, 'a'), { '0': 'a' });
|
|
});
|
|
});
|
|
});
|