Files
lodash/test/property.spec.js
tison bd518dd906 test: partially fix broken tests (#5733)
* test: fix throttle.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix pickBy.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix isBuffer.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: partially fix attempt.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: partially fix dropRightWhile.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix defer.spec.js and rest.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix invoke.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix isArray.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: partially fix iteration-methods.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix xor-methods.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix property.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix ary.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix omit-methods.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix debounce-and-throttle.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix unzip-and-zip.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix toPairs-methods.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix exit-early.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: temporarily comment out takeWhile and dropWhile tests

Signed-off-by: tison <wander4096@gmail.com>

* test: partially fix union*.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix startsWith-and-endsWith.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix isNil.spec.js

Signed-off-by: tison <wander4096@gmail.com>

* test: fix some of syntax errors

Signed-off-by: tison <wander4096@gmail.com>

---------

Signed-off-by: tison <wander4096@gmail.com>
2023-09-21 07:40:27 -07:00

125 lines
3.7 KiB
JavaScript

import lodashStable from 'lodash';
import { noop } from './utils';
import property from '../src/property';
describe('property', () => {
it('should create a function that plucks a property value of a given object', () => {
const object = { a: 1 };
lodashStable.each(['a', ['a']], (path) => {
const prop = property(path);
expect(prop.length).toBe(1);
expect(prop(object)).toBe(1);
});
});
it('should pluck deep property values', () => {
const object = { a: { b: 2 } };
lodashStable.each(['a.b', ['a', 'b']], (path) => {
const prop = property(path);
expect(prop(object)).toBe(2);
});
});
it('should pluck inherited property values', () => {
function Foo() {}
Foo.prototype.a = 1;
lodashStable.each(['a', ['a']], (path) => {
const prop = property(path);
expect(prop(new Foo())).toBe(1);
});
});
it('should work with a non-string `path`', () => {
const array = [1, 2, 3];
lodashStable.each([1, [1]], (path) => {
const prop = property(path);
expect(prop(array)).toBe(2);
});
});
it('should preserve the sign of `0`', () => {
const object = { '-0': 'a', 0: 'b' };
const props = [-0, Object(-0), 0, Object(0)];
const actual = lodashStable.map(props, (key) => {
const prop = property(key);
return prop(object);
});
expect(actual).toEqual(['a', 'a', 'b', 'b']);
});
it('should coerce `path` to a string', () => {
function fn() {}
fn.toString = lodashStable.constant('fn');
const expected = [1, 2, 3, 4];
const object = { null: 1, undefined: 2, fn: 3, '[object Object]': 4 };
const paths = [null, undefined, fn, {}];
lodashStable.times(2, (index) => {
const actual = lodashStable.map(paths, (path) => {
const prop = property(index ? [path] : path);
return prop(object);
});
expect(actual).toEqual(expected);
});
});
it('should pluck a key over a path', () => {
const object = { 'a.b': 1, a: { b: 2 } };
lodashStable.each(['a.b', ['a.b']], (path) => {
const prop = property(path);
expect(prop(object)).toBe(1);
});
});
it('should return `undefined` when `object` is nullish', () => {
const values = [null, undefined];
const expected = lodashStable.map(values, noop);
lodashStable.each(['constructor', ['constructor']], (path) => {
const prop = property(path);
const actual = lodashStable.map(values, (value, index) =>
index ? prop(value) : prop(),
);
expect(actual).toEqual(expected);
});
});
it('should return `undefined` for deep paths when `object` is nullish', () => {
const values = [null, undefined];
const expected = lodashStable.map(values, noop);
lodashStable.each(
['constructor.prototype.valueOf', ['constructor', 'prototype', 'valueOf']],
(path) => {
const prop = property(path);
const actual = lodashStable.map(values, (value, index) =>
index ? prop(value) : prop(),
);
expect(actual).toEqual(expected);
},
);
});
it('should return `undefined` if parts of `path` are missing', () => {
const object = {};
lodashStable.each(['a', 'a[1].b.c', ['a'], ['a', '1', 'b', 'c']], (path) => {
const prop = property(path);
expect(prop(object)).toBe(undefined);
});
});
});