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); }); }); });