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

78 lines
2.3 KiB
JavaScript

import lodashStable from 'lodash';
import { identity, falsey, stubArray, document } from './utils';
import map from '../src/map';
describe('map', () => {
const array = [1, 2];
it('should map values in `collection` to a new array', () => {
const object = { a: 1, b: 2 };
const expected = ['1', '2'];
expect(map(array, String)).toEqual(expected);
expect(map(object, String)).toEqual(expected);
});
it('should work with `_.property` shorthands', () => {
const objects = [{ a: 'x' }, { a: 'y' }];
expect(map(objects, 'a')).toEqual(['x', 'y']);
});
it('should iterate over own string keyed properties of objects', () => {
function Foo() {
this.a = 1;
}
Foo.prototype.b = 2;
const actual = map(new Foo(), identity);
expect(actual).toEqual([1]);
});
it('should use `_.identity` when `iteratee` is nullish', () => {
const object = { a: 1, b: 2 };
const values = [, null, undefined];
const expected = lodashStable.map(values, lodashStable.constant([1, 2]));
lodashStable.each([array, object], (collection) => {
const actual = lodashStable.map(values, (value, index) =>
index ? map(collection, value) : map(collection),
);
expect(actual).toEqual(expected);
});
});
it('should accept a falsey `collection`', () => {
const expected = lodashStable.map(falsey, stubArray);
const actual = lodashStable.map(falsey, (collection, index) => {
try {
return index ? map(collection) : map();
} catch (e) {}
});
expect(actual).toEqual(expected);
});
it('should treat number values for `collection` as empty', () => {
expect(map(1)).toEqual([]);
});
it('should treat a nodelist as an array-like object', () => {
if (document) {
const actual = map(document.getElementsByTagName('body'), (element) =>
element.nodeName.toLowerCase(),
);
expect(actual).toEqual(['body']);
}
});
it('should work with objects with non-number length properties', () => {
const value = { value: 'x' };
const object = { length: { value: 'x' } };
expect(map(object, identity)).toEqual([value]);
});
});