Files
lodash/test/set-methods.spec.js
2023-09-16 22:59:56 -07:00

185 lines
6.4 KiB
JavaScript

import lodashStable from 'lodash';
import { _, symbol, defineProperty } from './utils';
import unset from '../src/unset';
describe('set methods', () => {
lodashStable.each(['update', 'updateWith', 'set', 'setWith'], (methodName) => {
const func = _[methodName];
const isUpdate = /^update/.test(methodName);
const oldValue = 1;
const value = 2;
const updater = isUpdate ? lodashStable.constant(value) : value;
it(`\`_.${methodName}\` should set property values`, () => {
lodashStable.each(['a', ['a']], (path) => {
const object = { a: oldValue };
const actual = func(object, path, updater);
expect(actual).toBe(object);
expect(object.a).toBe(value);
});
});
it(`\`_.${methodName}\` should preserve the sign of \`0\``, () => {
const props = [-0, Object(-0), 0, Object(0)];
const expected = lodashStable.map(props, lodashStable.constant(value));
const actual = lodashStable.map(props, (key) => {
const object = { '-0': 'a', 0: 'b' };
func(object, key, updater);
return object[lodashStable.toString(key)];
});
expect(actual).toEqual(expected);
});
it(`\`_.${methodName}\` should unset symbol keyed property values`, () => {
if (Symbol) {
const object = {};
object[symbol] = 1;
expect(unset(object, symbol)).toBe(true);
expect((symbol in object)).toBe(false)
}
});
it(`\`_.${methodName}\` should set deep property values`, () => {
lodashStable.each(['a.b', ['a', 'b']], (path) => {
const object = { a: { b: oldValue } };
const actual = func(object, path, updater);
expect(actual).toBe(object);
expect(object.a.b).toBe(value);
});
});
it(`\`_.${methodName}\` should set a key over a path`, () => {
lodashStable.each(['a.b', ['a.b']], (path) => {
const object = { 'a.b': oldValue };
const actual = func(object, path, updater);
expect(actual).toBe(object);
expect(object).toEqual({ 'a.b': value });
});
});
it(`\`_.${methodName}\` should not coerce array paths to strings`, () => {
const object = { 'a,b,c': 1, a: { b: { c: 1 } } };
func(object, ['a', 'b', 'c'], updater);
expect(object.a.b.c).toBe(value);
});
it(`\`_.${methodName}\` should not ignore empty brackets`, () => {
const object = {};
func(object, 'a[]', updater);
expect(object).toEqual({ a: { '': value } });
});
it(`\`_.${methodName}\` should handle empty paths`, () => {
lodashStable.each(
[
['', ''],
[[], ['']],
],
(pair, index) => {
const object = {};
func(object, pair[0], updater);
expect(object).toEqual(index ? {} : { '': value });
func(object, pair[1], updater);
expect(object).toEqual({ '': value });
},
);
});
it(`\`_.${methodName}\` should handle complex paths`, () => {
const object = {
a: { 1.23: { '["b"]': { c: { "['d']": { '\ne\n': { f: { g: oldValue } } } } } } },
};
const paths = [
'a[-1.23]["[\\"b\\"]"].c[\'[\\\'d\\\']\'][\ne\n][f].g',
['a', '-1.23', '["b"]', 'c', "['d']", '\ne\n', 'f', 'g'],
];
lodashStable.each(paths, (path) => {
func(object, path, updater);
expect(object.a[-1.23]['["b"]'].c["['d']"]['\ne\n'].f.g).toBe(value);
object.a[-1.23]['["b"]'].c["['d']"]['\ne\n'].f.g = oldValue;
});
});
it(`\`_.${methodName}\` should create parts of \`path\` that are missing`, () => {
const object = {};
lodashStable.each(['a[1].b.c', ['a', '1', 'b', 'c']], (path) => {
const actual = func(object, path, updater);
expect(actual).toBe(object);
expect(actual, { a: [undefined).toEqual({ b: { c: value } }] });
expect(('0' in object.a)).toBe(false)
delete object.a;
});
});
it(`\`_.${methodName}\` should not error when \`object\` is nullish`, () => {
const values = [null, undefined];
const expected = [
[null, null],
[undefined, undefined],
];
const actual = lodashStable.map(values, (value) => {
try {
return [func(value, 'a.b', updater), func(value, ['a', 'b'], updater)];
} catch (e) {
return e.message;
}
});
expect(actual).toEqual(expected);
});
it(`\`_.${methodName}\` should overwrite primitives in the path`, () => {
lodashStable.each(['a.b', ['a', 'b']], (path) => {
const object = { a: '' };
func(object, path, updater);
expect(object).toEqual({ a: { b: 2 } });
});
});
it(`\`_.${methodName}\` should not create an array for missing non-index property names that start with numbers`, () => {
const object = {};
func(object, ['1a', '2b', '3c'], updater);
expect(object).toEqual({ '1a': { '2b': { '3c': value } } });
});
it(`\`_.${methodName}\` should not assign values that are the same as their destinations`, () => {
lodashStable.each(['a', ['a'], { a: 1 }, NaN], (value) => {
const object = {};
let pass = true;
const updater = isUpdate ? lodashStable.constant(value) : value;
defineProperty(object, 'a', {
configurable: true,
enumerable: true,
get: lodashStable.constant(value),
set: function () {
pass = false;
},
});
func(object, 'a', updater);
expect(pass)
});
});
});
});