updeep-remeda/test/updateIn-spec.js

46 lines
1.3 KiB
JavaScript
Raw Normal View History

import { expect } from 'chai';
2015-08-05 06:36:40 +00:00
import u from '../lib';
2015-08-05 05:28:31 +00:00
describe('u.updateIn', () => {
2015-08-05 05:28:31 +00:00
it('can update a single path described with a string', () => {
2015-08-05 07:27:56 +00:00
const object = { a: { b: 0 } };
const result = u.updateIn('a.b', 3, object);
expect(result).to.eql({ a: { b: 3 } });
2015-08-05 05:28:31 +00:00
});
it('can update a single path described with a string with a function', () => {
const inc = x => x + 1;
2015-08-05 07:27:56 +00:00
const object = { a: { b: 0 } };
const result = u.updateIn('a.b', inc, object);
expect(result).to.eql({ a: { b: 1 } });
2015-08-05 05:28:31 +00:00
});
it('can update a single path described with an array', () => {
2015-08-05 07:27:56 +00:00
const object = { a: { b: 0 } };
const result = u.updateIn(['a', 'b'], 3, object);
expect(result).to.eql({ a: { b: 3 } });
2015-08-05 05:28:31 +00:00
});
it('can update arrays', () => {
2015-08-05 07:27:56 +00:00
const object = { a: [0, 0, 0] };
const result = u.updateIn('a.1', 3, object);
expect(result).to.eql({ a: [0, 3, 0] });
2015-08-05 05:28:31 +00:00
});
it('can be partially applied', () => {
2015-08-05 07:27:56 +00:00
const object = { a: { b: 0 } };
const result = u.updateIn('a.b')(3)(object);
expect(result).to.eql({ a: { b: 3 } });
2015-08-05 05:28:31 +00:00
});
it('replaces the object outright if the path is empty', () => {
const object = {};
const result = u.updateIn('', 3, object);
expect(result).to.equal(3);
});
it('freezes the result', () => {
expect(Object.isFrozen(u.updateIn('a', 0, {}))).to.be.true;
});
2015-08-05 05:28:31 +00:00
});