12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631 |
- /**
- * Test dependencies.
- */
- var mpath = require('../')
- var assert = require('assert')
- /**
- * logging helper
- */
- function log (o) {
- console.log();
- console.log(require('util').inspect(o, false, 1000));
- }
- /**
- * special path for override tests
- */
- var special = '_doc';
- /**
- * Tests
- */
- describe('mpath', function(){
- /**
- * test doc creator
- */
- function doc () {
- var o = { first: { second: { third: [3,{ name: 'aaron' }, 9] }}};
- o.comments = [
- { name: 'one' }
- , { name: 'two', _doc: { name: '2' }}
- , { name: 'three'
- , comments: [{},{ comments: [{val: 'twoo'}]}]
- , _doc: { name: '3', comments: [{},{ _doc: { comments: [{ val: 2 }] }}] }}
- ];
- o.name = 'jiro';
- o.array = [
- { o: { array: [{x: {b: [4,6,8]}}, { y: 10} ] }}
- , { o: { array: [{x: {b: [1,2,3]}}, { x: {z: 10 }}, { x: {b: 'hi'}}] }}
- , { o: { array: [{x: {b: null }}, { x: { b: [null, 1]}}] }}
- , { o: { array: [{x: null }] }}
- , { o: { array: [{y: 3 }] }}
- , { o: { array: [3, 0, null] }}
- , { o: { name: 'ha' }}
- ];
- o.arr = [
- { arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true }
- ]
- return o;
- }
- describe('get', function(){
- var o = doc();
- it('`path` must be a string or array', function(done){
- assert.throws(function () {
- mpath.get({}, o);
- }, /Must be either string or array/);
- assert.throws(function () {
- mpath.get(4, o);
- }, /Must be either string or array/);
- assert.throws(function () {
- mpath.get(function(){}, o);
- }, /Must be either string or array/);
- assert.throws(function () {
- mpath.get(/asdf/, o);
- }, /Must be either string or array/);
- assert.throws(function () {
- mpath.get(Math, o);
- }, /Must be either string or array/);
- assert.throws(function () {
- mpath.get(Buffer, o);
- }, /Must be either string or array/);
- assert.doesNotThrow(function () {
- mpath.get('string', o);
- });
- assert.doesNotThrow(function () {
- mpath.get([], o);
- });
- done();
- })
- describe('without `special`', function(){
- it('works', function(done){
- assert.equal('jiro', mpath.get('name', o));
- assert.deepEqual(
- { second: { third: [3,{ name: 'aaron' }, 9] }}
- , mpath.get('first', o)
- );
- assert.deepEqual(
- { third: [3,{ name: 'aaron' }, 9] }
- , mpath.get('first.second', o)
- );
- assert.deepEqual(
- [3,{ name: 'aaron' }, 9]
- , mpath.get('first.second.third', o)
- );
- assert.deepEqual(
- 3
- , mpath.get('first.second.third.0', o)
- );
- assert.deepEqual(
- 9
- , mpath.get('first.second.third.2', o)
- );
- assert.deepEqual(
- { name: 'aaron' }
- , mpath.get('first.second.third.1', o)
- );
- assert.deepEqual(
- 'aaron'
- , mpath.get('first.second.third.1.name', o)
- );
- assert.deepEqual([
- { name: 'one' }
- , { name: 'two', _doc: { name: '2' }}
- , { name: 'three'
- , comments: [{},{ comments: [{val: 'twoo'}]}]
- , _doc: { name: '3', comments: [{},{ _doc: { comments: [{ val: 2 }] }}]}}],
- mpath.get('comments', o));
- assert.deepEqual({ name: 'one' }, mpath.get('comments.0', o));
- assert.deepEqual('one', mpath.get('comments.0.name', o));
- assert.deepEqual('two', mpath.get('comments.1.name', o));
- assert.deepEqual('three', mpath.get('comments.2.name', o));
- assert.deepEqual([{},{ comments: [{val: 'twoo'}]}]
- , mpath.get('comments.2.comments', o));
- assert.deepEqual({ comments: [{val: 'twoo'}]}
- , mpath.get('comments.2.comments.1', o));
- assert.deepEqual('twoo', mpath.get('comments.2.comments.1.comments.0.val', o));
- done();
- })
- it('handles array.property dot-notation', function(done){
- assert.deepEqual(
- ['one', 'two', 'three']
- , mpath.get('comments.name', o)
- );
- done();
- })
- it('handles array.array notation', function(done){
- assert.deepEqual(
- [undefined, undefined, [{}, {comments:[{val:'twoo'}]}]]
- , mpath.get('comments.comments', o)
- );
- done();
- })
- it('handles prop.prop.prop.arrayProperty notation', function(done){
- assert.deepEqual(
- [undefined, 'aaron', undefined]
- , mpath.get('first.second.third.name', o)
- );
- assert.deepEqual(
- [1, 'aaron', 1]
- , mpath.get('first.second.third.name', o, function (v) {
- return undefined === v ? 1 : v;
- })
- );
- done();
- })
- it('handles array.prop.array', function(done){
- assert.deepEqual(
- [ [{x: {b: [4,6,8]}}, { y: 10} ]
- , [{x: {b: [1,2,3]}}, { x: {z: 10 }}, { x: {b: 'hi'}}]
- , [{x: {b: null }}, { x: { b: [null, 1]}}]
- , [{x: null }]
- , [{y: 3 }]
- , [3, 0, null]
- , undefined
- ]
- , mpath.get('array.o.array', o)
- );
- done();
- })
- it('handles array.prop.array.index', function(done){
- assert.deepEqual(
- [ {x: {b: [4,6,8]}}
- , {x: {b: [1,2,3]}}
- , {x: {b: null }}
- , {x: null }
- , {y: 3 }
- , 3
- , undefined
- ]
- , mpath.get('array.o.array.0', o)
- );
- done();
- })
- it('handles array.prop.array.index.prop', function(done){
- assert.deepEqual(
- [ {b: [4,6,8]}
- , {b: [1,2,3]}
- , {b: null }
- , null
- , undefined
- , undefined
- , undefined
- ]
- , mpath.get('array.o.array.0.x', o)
- );
- done();
- })
- it('handles array.prop.array.prop', function(done){
- assert.deepEqual(
- [ [undefined, 10 ]
- , [undefined, undefined, undefined]
- , [undefined, undefined]
- , [undefined]
- , [3]
- , [undefined, undefined, undefined]
- , undefined
- ]
- , mpath.get('array.o.array.y', o)
- );
- assert.deepEqual(
- [ [{b: [4,6,8]}, undefined]
- , [{b: [1,2,3]}, {z: 10 }, {b: 'hi'}]
- , [{b: null }, { b: [null, 1]}]
- , [null]
- , [undefined]
- , [undefined, undefined, undefined]
- , undefined
- ]
- , mpath.get('array.o.array.x', o)
- );
- done();
- })
- it('handles array.prop.array.prop.prop', function(done){
- assert.deepEqual(
- [ [[4,6,8], undefined]
- , [[1,2,3], undefined, 'hi']
- , [null, [null, 1]]
- , [null]
- , [undefined]
- , [undefined, undefined, undefined]
- , undefined
- ]
- , mpath.get('array.o.array.x.b', o)
- );
- done();
- })
- it('handles array.prop.array.prop.prop.index', function(done){
- assert.deepEqual(
- [ [6, undefined]
- , [2, undefined, 'i'] // undocumented feature (string indexing)
- , [null, 1]
- , [null]
- , [undefined]
- , [undefined, undefined, undefined]
- , undefined
- ]
- , mpath.get('array.o.array.x.b.1', o)
- );
- assert.deepEqual(
- [ [6, 0]
- , [2, 0, 'i'] // undocumented feature (string indexing)
- , [null, 1]
- , [null]
- , [0]
- , [0, 0, 0]
- , 0
- ]
- , mpath.get('array.o.array.x.b.1', o, function (v) {
- return undefined === v ? 0 : v;
- })
- );
- done();
- })
- it('handles array.index.prop.prop', function(done){
- assert.deepEqual(
- [{x: {b: [1,2,3]}}, { x: {z: 10 }}, { x: {b: 'hi'}}]
- , mpath.get('array.1.o.array', o)
- );
- assert.deepEqual(
- ['hi','hi','hi']
- , mpath.get('array.1.o.array', o, function (v) {
- if (Array.isArray(v)) {
- return v.map(function (val) {
- return 'hi';
- })
- }
- return v;
- })
- );
- done();
- })
- it('handles array.array.index', function(done){
- assert.deepEqual(
- [{ a: { c: 48 }}, undefined]
- , mpath.get('arr.arr.1', o)
- );
- assert.deepEqual(
- ['woot', undefined]
- , mpath.get('arr.arr.1', o, function (v) {
- if (v && v.a && v.a.c) return 'woot';
- return v;
- })
- );
- done();
- })
- it('handles array.array.index.prop', function(done){
- assert.deepEqual(
- [{ c: 48 }, 'woot']
- , mpath.get('arr.arr.1.a', o, function (v) {
- if (undefined === v) return 'woot';
- return v;
- })
- );
- assert.deepEqual(
- [{ c: 48 }, undefined]
- , mpath.get('arr.arr.1.a', o)
- );
- mpath.set('arr.arr.1.a', [{c:49},undefined], o)
- assert.deepEqual(
- [{ c: 49 }, undefined]
- , mpath.get('arr.arr.1.a', o)
- );
- mpath.set('arr.arr.1.a', [{c:48},undefined], o)
- done();
- })
- it('handles array.array.index.prop.prop', function(done){
- assert.deepEqual(
- [48, undefined]
- , mpath.get('arr.arr.1.a.c', o)
- );
- assert.deepEqual(
- [48, 'woot']
- , mpath.get('arr.arr.1.a.c', o, function (v) {
- if (undefined === v) return 'woot';
- return v;
- })
- );
- done();
- })
- })
- describe('with `special`', function(){
- it('works', function(done){
- assert.equal('jiro', mpath.get('name', o, special));
- assert.deepEqual(
- { second: { third: [3,{ name: 'aaron' }, 9] }}
- , mpath.get('first', o, special)
- );
- assert.deepEqual(
- { third: [3,{ name: 'aaron' }, 9] }
- , mpath.get('first.second', o, special)
- );
- assert.deepEqual(
- [3,{ name: 'aaron' }, 9]
- , mpath.get('first.second.third', o, special)
- );
- assert.deepEqual(
- 3
- , mpath.get('first.second.third.0', o, special)
- );
- assert.deepEqual(
- 4
- , mpath.get('first.second.third.0', o, special, function (v) {
- return 3 === v ? 4 : v;
- })
- );
- assert.deepEqual(
- 9
- , mpath.get('first.second.third.2', o, special)
- );
- assert.deepEqual(
- { name: 'aaron' }
- , mpath.get('first.second.third.1', o, special)
- );
- assert.deepEqual(
- 'aaron'
- , mpath.get('first.second.third.1.name', o, special)
- );
- assert.deepEqual([
- { name: 'one' }
- , { name: 'two', _doc: { name: '2' }}
- , { name: 'three'
- , comments: [{},{ comments: [{val: 'twoo'}]}]
- , _doc: { name: '3', comments: [{},{ _doc: { comments: [{ val: 2 }] }}]}}],
- mpath.get('comments', o, special));
- assert.deepEqual({ name: 'one' }, mpath.get('comments.0', o, special));
- assert.deepEqual('one', mpath.get('comments.0.name', o, special));
- assert.deepEqual('2', mpath.get('comments.1.name', o, special));
- assert.deepEqual('3', mpath.get('comments.2.name', o, special));
- assert.deepEqual('nice', mpath.get('comments.2.name', o, special, function (v) {
- return '3' === v ? 'nice' : v;
- }));
- assert.deepEqual([{},{ _doc: { comments: [{ val: 2 }] }}]
- , mpath.get('comments.2.comments', o, special));
- assert.deepEqual({ _doc: { comments: [{val: 2}]}}
- , mpath.get('comments.2.comments.1', o, special));
- assert.deepEqual(2, mpath.get('comments.2.comments.1.comments.0.val', o, special));
- done();
- })
- it('handles array.property dot-notation', function(done){
- assert.deepEqual(
- ['one', '2', '3']
- , mpath.get('comments.name', o, special)
- );
- assert.deepEqual(
- ['one', 2, '3']
- , mpath.get('comments.name', o, special, function (v) {
- return '2' === v ? 2 : v
- })
- );
- done();
- })
- it('handles array.array notation', function(done){
- assert.deepEqual(
- [undefined, undefined, [{}, {_doc: { comments:[{val:2}]}}]]
- , mpath.get('comments.comments', o, special)
- );
- done();
- })
- it('handles array.array.index.array', function(done){
- assert.deepEqual(
- [undefined, undefined, [{val:2}]]
- , mpath.get('comments.comments.1.comments', o, special)
- );
- done();
- })
- it('handles array.array.index.array.prop', function(done){
- assert.deepEqual(
- [undefined, undefined, [2]]
- , mpath.get('comments.comments.1.comments.val', o, special)
- );
- assert.deepEqual(
- ['nil', 'nil', [2]]
- , mpath.get('comments.comments.1.comments.val', o, special, function (v) {
- return undefined === v ? 'nil' : v;
- })
- );
- done();
- })
- })
- })
- describe('set', function(){
- describe('without `special`', function(){
- var o = doc();
- it('works', function(done){
- mpath.set('name', 'a new val', o, function (v) {
- return 'a new val' === v ? 'changed' : v;
- });
- assert.deepEqual('changed', o.name);
- mpath.set('name', 'changed', o);
- assert.deepEqual('changed', o.name);
- mpath.set('first.second.third', [1,{name:'x'},9], o);
- assert.deepEqual([1,{name:'x'},9], o.first.second.third);
- mpath.set('first.second.third.1.name', 'y', o)
- assert.deepEqual([1,{name:'y'},9], o.first.second.third);
- mpath.set('comments.1.name', 'ttwwoo', o);
- assert.deepEqual({ name: 'ttwwoo', _doc: { name: '2' }}, o.comments[1]);
- mpath.set('comments.2.comments.1.comments.0.expand', 'added', o);
- assert.deepEqual(
- { val: 'twoo', expand: 'added'}
- , o.comments[2].comments[1].comments[0]);
- mpath.set('comments.2.comments.1.comments.2', 'added', o);
- assert.equal(3, o.comments[2].comments[1].comments.length);
- assert.deepEqual(
- { val: 'twoo', expand: 'added'}
- , o.comments[2].comments[1].comments[0]);
- assert.deepEqual(
- undefined
- , o.comments[2].comments[1].comments[1]);
- assert.deepEqual(
- 'added'
- , o.comments[2].comments[1].comments[2]);
- done();
- })
- describe('array.path', function(){
- describe('with single non-array value', function(){
- it('works', function(done){
- mpath.set('arr.yep', false, o, function (v) {
- return false === v ? true: v;
- });
- assert.deepEqual([
- { yep: true, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true }
- ], o.arr);
- mpath.set('arr.yep', false, o);
- assert.deepEqual([
- { yep: false, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: false }
- ], o.arr);
- done();
- })
- })
- describe('with array of values', function(){
- it('that are equal in length', function(done){
- mpath.set('arr.yep', ['one',2], o, function (v) {
- return 'one' === v ? 1 : v;
- });
- assert.deepEqual([
- { yep: 1, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 2 }
- ], o.arr);
- mpath.set('arr.yep', ['one',2], o);
- assert.deepEqual([
- { yep: 'one', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 2 }
- ], o.arr);
- done();
- })
- it('that is less than length', function(done){
- mpath.set('arr.yep', [47], o, function (v) {
- return 47 === v ? 4 : v;
- });
- assert.deepEqual([
- { yep: 4, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 2 }
- ], o.arr);
- mpath.set('arr.yep', [47], o);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 2 }
- ], o.arr);
- done();
- })
- it('that is greater than length', function(done){
- mpath.set('arr.yep', [5,6,7], o, function (v) {
- return 5 === v ? 'five' : v;
- });
- assert.deepEqual([
- { yep: 'five', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 6 }
- ], o.arr);
- mpath.set('arr.yep', [5,6,7], o);
- assert.deepEqual([
- { yep: 5, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 6 }
- ], o.arr);
- done();
- })
- })
- })
- describe('array.$.path', function(){
- describe('with single non-array value', function(){
- it('copies the value to each item in array', function(done){
- mpath.set('arr.$.yep', {xtra: 'double good'}, o, function (v) {
- return v && v.xtra ? 'hi' : v;
- });
- assert.deepEqual([
- { yep: 'hi', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 'hi'}
- ], o.arr);
- mpath.set('arr.$.yep', {xtra: 'double good'}, o);
- assert.deepEqual([
- { yep: {xtra:'double good'}, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: {xtra:'double good'}}
- ], o.arr);
- done();
- })
- })
- describe('with array of values', function(){
- it('copies the value to each item in array', function(done){
- mpath.set('arr.$.yep', [15], o, function (v) {
- return v.length === 1 ? [] : v;
- });
- assert.deepEqual([
- { yep: [], arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: []}
- ], o.arr);
- mpath.set('arr.$.yep', [15], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: [15]}
- ], o.arr);
- done();
- })
- })
- })
- describe('array.index.path', function(){
- it('works', function(done){
- mpath.set('arr.1.yep', 0, o, function (v) {
- return 0 === v ? 'zero' : v;
- });
- assert.deepEqual([
- { yep: [15] , arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 'zero' }
- ], o.arr);
- mpath.set('arr.1.yep', 0, o);
- assert.deepEqual([
- { yep: [15] , arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.e', 35, o, function (v) {
- return 35 === v ? 3 : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 47 }, e: 3}, { a: { c: 48 }, e: 3}, { d: 'yep', e: 3 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.e', 35, o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 47 }, e: 35}, { a: { c: 48 }, e: 35}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.e', ['a','b'], o, function (v) {
- return 'a' === v ? 'x' : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 47 }, e: 'x'}, { a: { c: 48 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.e', ['a','b'], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 47 }, e: 'a'}, { a: { c: 48 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.path.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.a.b', 36, o, function (v) {
- return 36 === v ? 3 : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 3 }, e: 'a'}, { a: { c: 48, b: 3 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.a.b', 36, o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 36 }, e: 'a'}, { a: { c: 48, b: 36 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.a.b', [1,2,3,4], o, function (v) {
- return 2 === v ? 'two' : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 1 }, e: 'a'}, { a: { c: 48, b: 'two' }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.a.b', [1,2,3,4], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 1 }, e: 'a'}, { a: { c: 48, b: 2 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.$.path.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.$.a.b', '$', o, function (v) {
- return '$' === v ? 'dolla billz' : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: 'dolla billz' }, e: 'a'}, { a: { c: 48, b: 'dolla billz' }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.$.a.b', '$', o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: '$' }, e: 'a'}, { a: { c: 48, b: '$' }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.$.a.b', [1], o, function (v) {
- return Array.isArray(v) ? {} : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: {} }, e: 'a'}, { a: { c: 48, b: {} }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.0.arr.$.a.b', [1], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: { b: [1] }, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- })
- describe('array.array.index.path', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.0.a', 'single', o, function (v) {
- return 'single' === v ? 'double' : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: 'double', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.arr.0.a', 'single', o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: 'single', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.arr.0.a', [4,8,15,16,23,42], o, function (v) {
- return 4 === v ? 3 : v;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: 3, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: false }
- ], o.arr);
- mpath.set('arr.arr.0.a', [4,8,15,16,23,42], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: 4, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: false }
- ], o.arr);
- done();
- })
- })
- describe('array.array.$.index.path', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.$.0.a', 'singles', o, function (v) {
- return 0;
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: 0, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('arr.arr.$.0.a', 'singles', o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: 'singles', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- mpath.set('$.arr.arr.0.a', 'single', o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: 'single', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0 }
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.arr.$.0.a', [4,8,15,16,23,42], o, function (v) {
- return 'nope'
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: 'nope', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0}
- ], o.arr);
- mpath.set('arr.arr.$.0.a', [4,8,15,16,23,42], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: [4,8,15,16,23,42], e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0}
- ], o.arr);
- mpath.set('arr.$.arr.0.a', [4,8,15,16,23,42,108], o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: [4,8,15,16,23,42,108], e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0}
- ], o.arr);
- done();
- })
- })
- describe('array.array.path.index', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.a.7', 47, o, function (v) {
- return 1
- });
- assert.deepEqual([
- { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,1], e: 'a'}, { a: { c: 48, b: [1], '7': 1 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0}
- ], o.arr);
- mpath.set('arr.arr.a.7', 47, o);
- assert.deepEqual([
- { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,47], e: 'a'}, { a: { c: 48, b: [1], '7': 47 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- o.arr[1].arr = [{ a: [] }, { a: [] }, { a: null }];
- mpath.set('arr.arr.a.7', [[null,46], [undefined, 'woot']], o);
- var a1 = [];
- var a2 = [];
- a1[7] = undefined;
- a2[7] = 'woot';
- assert.deepEqual([
- { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,null], e: 'a'}, { a: { c: 48, b: [1], '7': 46 }, e: 'b'}, { d: 'yep', e: 35 }] }
- , { yep: 0, arr: [{a:a1},{a:a2},{a:null}] }
- ], o.arr);
- done();
- })
- })
- describe('handles array.array.path', function(){
- it('with single', function(done){
- o.arr[1].arr = [{},{}];
- assert.deepEqual([{},{}], o.arr[1].arr);
- o.arr.push({ arr: 'something else' });
- o.arr.push({ arr: ['something else'] });
- o.arr.push({ arr: [[]] });
- o.arr.push({ arr: [5] });
- var weird = [];
- weird.e = 'xmas';
- // test
- mpath.set('arr.arr.e', 47, o, function (v) {
- return 'xmas'
- });
- assert.deepEqual([
- { yep: [15], arr: [
- { a: [4,8,15,16,23,42,108,null], e: 'xmas'}
- , { a: { c: 48, b: [1], '7': 46 }, e: 'xmas'}
- , { d: 'yep', e: 'xmas' }
- ]
- }
- , { yep: 0, arr: [{e: 'xmas'}, {e:'xmas'}] }
- , { arr: 'something else' }
- , { arr: ['something else'] }
- , { arr: [weird] }
- , { arr: [5] }
- ]
- , o.arr);
- weird.e = 47;
- mpath.set('arr.arr.e', 47, o);
- assert.deepEqual([
- { yep: [15], arr: [
- { a: [4,8,15,16,23,42,108,null], e: 47}
- , { a: { c: 48, b: [1], '7': 46 }, e: 47}
- , { d: 'yep', e: 47 }
- ]
- }
- , { yep: 0, arr: [{e: 47}, {e:47}] }
- , { arr: 'something else' }
- , { arr: ['something else'] }
- , { arr: [weird] }
- , { arr: [5] }
- ]
- , o.arr);
- done();
- })
- it('with arrays', function(done){
- mpath.set('arr.arr.e', [[1,2,3],[4,5],null,[],[6], [7,8,9]], o, function (v) {
- return 10;
- });
- var weird = [];
- weird.e = 10;
- assert.deepEqual([
- { yep: [15], arr: [
- { a: [4,8,15,16,23,42,108,null], e: 10}
- , { a: { c: 48, b: [1], '7': 46 }, e: 10}
- , { d: 'yep', e: 10 }
- ]
- }
- , { yep: 0, arr: [{e: 10}, {e:10}] }
- , { arr: 'something else' }
- , { arr: ['something else'] }
- , { arr: [weird] }
- , { arr: [5] }
- ]
- , o.arr);
- mpath.set('arr.arr.e', [[1,2,3],[4,5],null,[],[6], [7,8,9]], o);
- weird.e = 6;
- assert.deepEqual([
- { yep: [15], arr: [
- { a: [4,8,15,16,23,42,108,null], e: 1}
- , { a: { c: 48, b: [1], '7': 46 }, e: 2}
- , { d: 'yep', e: 3 }
- ]
- }
- , { yep: 0, arr: [{e: 4}, {e:5}] }
- , { arr: 'something else' }
- , { arr: ['something else'] }
- , { arr: [weird] }
- , { arr: [5] }
- ]
- , o.arr);
- done();
- })
- })
- })
- describe('with `special`', function(){
- var o = doc();
- it('works', function(done){
- mpath.set('name', 'chan', o, special, function (v) {
- return 'hi';
- });
- assert.deepEqual('hi', o.name);
- mpath.set('name', 'changer', o, special);
- assert.deepEqual('changer', o.name);
- mpath.set('first.second.third', [1,{name:'y'},9], o, special);
- assert.deepEqual([1,{name:'y'},9], o.first.second.third);
- mpath.set('first.second.third.1.name', 'z', o, special)
- assert.deepEqual([1,{name:'z'},9], o.first.second.third);
- mpath.set('comments.1.name', 'ttwwoo', o, special);
- assert.deepEqual({ name: 'two', _doc: { name: 'ttwwoo' }}, o.comments[1]);
- mpath.set('comments.2.comments.1.comments.0.expander', 'adder', o, special, function (v) {
- return 'super'
- });
- assert.deepEqual(
- { val: 2, expander: 'super'}
- , o.comments[2]._doc.comments[1]._doc.comments[0]);
- mpath.set('comments.2.comments.1.comments.0.expander', 'adder', o, special);
- assert.deepEqual(
- { val: 2, expander: 'adder'}
- , o.comments[2]._doc.comments[1]._doc.comments[0]);
- mpath.set('comments.2.comments.1.comments.2', 'set', o, special);
- assert.equal(3, o.comments[2]._doc.comments[1]._doc.comments.length);
- assert.deepEqual(
- { val: 2, expander: 'adder'}
- , o.comments[2]._doc.comments[1]._doc.comments[0]);
- assert.deepEqual(
- undefined
- , o.comments[2]._doc.comments[1]._doc.comments[1]);
- assert.deepEqual(
- 'set'
- , o.comments[2]._doc.comments[1]._doc.comments[2]);
- done();
- })
- describe('array.path', function(){
- describe('with single non-array value', function(){
- it('works', function(done){
- o.arr[1]._doc = { special: true }
- mpath.set('arr.yep', false, o, special, function (v) {
- return 'yes';
- });
- assert.deepEqual([
- { yep: 'yes', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: 'yes'}}
- ], o.arr);
- mpath.set('arr.yep', false, o, special);
- assert.deepEqual([
- { yep: false, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: false }}
- ], o.arr);
- done();
- })
- })
- describe('with array of values', function(){
- it('that are equal in length', function(done){
- mpath.set('arr.yep', ['one',2], o, special, function (v) {
- return 2 === v ? 20 : v;
- });
- assert.deepEqual([
- { yep: 'one', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: 20}}
- ], o.arr);
- mpath.set('arr.yep', ['one',2], o, special);
- assert.deepEqual([
- { yep: 'one', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: 2}}
- ], o.arr);
- done();
- })
- it('that is less than length', function(done){
- mpath.set('arr.yep', [47], o, special, function (v) {
- return 80;
- });
- assert.deepEqual([
- { yep: 80, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: 2}}
- ], o.arr);
- mpath.set('arr.yep', [47], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- , { yep: true, _doc: { special: true, yep: 2}}
- ], o.arr);
- // add _doc to first element
- o.arr[0]._doc = { yep: 46, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] }
- mpath.set('arr.yep', [20], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }], _doc: { yep: 20, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 2}}
- ], o.arr);
- done();
- })
- it('that is greater than length', function(done){
- mpath.set('arr.yep', [5,6,7], o, special, function () {
- return 'x';
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }], _doc: { yep: 'x', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 'x'}}
- ], o.arr);
- mpath.set('arr.yep', [5,6,7], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }], _doc: { yep: 5, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 6}}
- ], o.arr);
- done();
- })
- })
- })
- describe('array.$.path', function(){
- describe('with single non-array value', function(){
- it('copies the value to each item in array', function(done){
- mpath.set('arr.$.yep', {xtra: 'double good'}, o, special, function (v) {
- return 9;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: 9, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 9}}
- ], o.arr);
- mpath.set('arr.$.yep', {xtra: 'double good'}, o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: {xtra:'double good'}, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: {xtra:'double good'}}}
- ], o.arr);
- done();
- })
- })
- describe('with array of values', function(){
- it('copies the value to each item in array', function(done){
- mpath.set('arr.$.yep', [15], o, special, function (v) {
- return 'array'
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: 'array', arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 'array'}}
- ], o.arr);
- mpath.set('arr.$.yep', [15], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: [15]}}
- ], o.arr);
- done();
- })
- })
- })
- describe('array.index.path', function(){
- it('works', function(done){
- mpath.set('arr.1.yep', 0, o, special, function (v) {
- return 1;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 1}}
- ], o.arr);
- mpath.set('arr.1.yep', 0, o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.e', 35, o, special, function (v) {
- return 30
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }, e: 30}, { a: { c: 48 }, e: 30}, { d: 'yep', e: 30 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.e', 35, o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }, e: 35}, { a: { c: 48 }, e: 35}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.e', ['a','b'], o, special, function (v) {
- return 'a' === v ? 'A' : v;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }, e: 'A'}, { a: { c: 48 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.e', ['a','b'], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 47 }, e: 'a'}, { a: { c: 48 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.path.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.a.b', 36, o, special, function (v) {
- return 20
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 20 }, e: 'a'}, { a: { c: 48, b: 20 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.a.b', 36, o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 36 }, e: 'a'}, { a: { c: 48, b: 36 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.a.b', [1,2,3,4], o, special, function (v) {
- return v*2;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 2 }, e: 'a'}, { a: { c: 48, b: 4 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.a.b', [1,2,3,4], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 1 }, e: 'a'}, { a: { c: 48, b: 2 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.index.array.$.path.path', function(){
- it('with single value', function(done){
- mpath.set('arr.0.arr.$.a.b', '$', o, special, function (v) {
- return 'dollaz'
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: 'dollaz' }, e: 'a'}, { a: { c: 48, b: 'dollaz' }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.$.a.b', '$', o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: '$' }, e: 'a'}, { a: { c: 48, b: '$' }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.0.arr.$.a.b', [1], o, special, function (v) {
- return {};
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: {} }, e: 'a'}, { a: { c: 48, b: {} }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.0.arr.$.a.b', [1], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: { b: [1] }, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.array.index.path', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.0.a', 'single', o, special, function (v) {
- return 88;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 88, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.0.a', 'single', o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 'single', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.arr.0.a', [4,8,15,16,23,42], o, special, function (v) {
- return v*2;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 8, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.0.a', [4,8,15,16,23,42], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 4, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.array.$.index.path', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.$.0.a', 'singles', o, special, function (v) {
- return v.toUpperCase();
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 'SINGLES', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.$.0.a', 'singles', o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 'singles', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('$.arr.arr.0.a', 'single', o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: 'single', e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- mpath.set('arr.arr.$.0.a', [4,8,15,16,23,42], o, special, function (v) {
- return Array
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: Array, e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.$.0.a', [4,8,15,16,23,42], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42], e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.$.arr.0.a', [4,8,15,16,23,42,108], o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42,108], e: 'a'}, { a: { c: 48, b: [1] }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('array.array.path.index', function(){
- it('with single value', function(done){
- mpath.set('arr.arr.a.7', 47, o, special, function (v) {
- return Object;
- });
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,Object], e: 'a'}, { a: { c: 48, b: [1], '7': Object }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.a.7', 47, o, special);
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,47], e: 'a'}, { a: { c: 48, b: [1], '7': 47 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { special: true, yep: 0}}
- ], o.arr);
- done();
- })
- it('with array', function(done){
- o.arr[1]._doc.arr = [{ a: [] }, { a: [] }, { a: null }];
- mpath.set('arr.arr.a.7', [[null,46], [undefined, 'woot']], o, special, function (v) {
- return undefined === v ? 'nope' : v;
- });
- var a1 = [];
- var a2 = [];
- a1[7] = 'nope';
- a2[7] = 'woot';
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,null], e: 'a'}, { a: { c: 48, b: [1], '7': 46 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { arr: [{a:a1},{a:a2},{a:null}], special: true, yep: 0}}
- ], o.arr);
- mpath.set('arr.arr.a.7', [[null,46], [undefined, 'woot']], o, special);
- a1[7] = undefined;
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: { yep: [15], arr: [{ a: [4,8,15,16,23,42,108,null], e: 'a'}, { a: { c: 48, b: [1], '7': 46 }, e: 'b'}, { d: 'yep', e: 35 }] } }
- , { yep: true, _doc: { arr: [{a:a1},{a:a2},{a:null}], special: true, yep: 0}}
- ], o.arr);
- done();
- })
- })
- describe('handles array.array.path', function(){
- it('with single', function(done){
- o.arr[1]._doc.arr = [{},{}];
- assert.deepEqual([{},{}], o.arr[1]._doc.arr);
- o.arr.push({ _doc: { arr: 'something else' }});
- o.arr.push({ _doc: { arr: ['something else'] }});
- o.arr.push({ _doc: { arr: [[]] }});
- o.arr.push({ _doc: { arr: [5] }});
- // test
- mpath.set('arr.arr.e', 47, o, special);
- var weird = [];
- weird.e = 47;
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: {
- yep: [15]
- , arr: [
- { a: [4,8,15,16,23,42,108,null], e: 47}
- , { a: { c: 48, b: [1], '7': 46 }, e: 47}
- , { d: 'yep', e: 47 }
- ]
- }
- }
- , { yep: true
- , _doc: {
- arr: [
- {e:47}
- , {e:47}
- ]
- , special: true
- , yep: 0
- }
- }
- , { _doc: { arr: 'something else' }}
- , { _doc: { arr: ['something else'] }}
- , { _doc: { arr: [weird] }}
- , { _doc: { arr: [5] }}
- ]
- , o.arr);
- done();
- })
- it('with arrays', function(done){
- mpath.set('arr.arr.e', [[1,2,3],[4,5],null,[],[6], [7,8,9]], o, special);
- var weird = [];
- weird.e = 6;
- assert.deepEqual([
- { yep: 47, arr: [{ a: { b: 47 }}, { a: { c: 48 }}, { d: 'yep' }]
- , _doc: {
- yep: [15]
- , arr: [
- { a: [4,8,15,16,23,42,108,null], e: 1}
- , { a: { c: 48, b: [1], '7': 46 }, e: 2}
- , { d: 'yep', e: 3 }
- ]
- }
- }
- , { yep: true
- , _doc: {
- arr: [
- {e:4}
- , {e:5}
- ]
- , special: true
- , yep: 0
- }
- }
- , { _doc: { arr: 'something else' }}
- , { _doc: { arr: ['something else'] }}
- , { _doc: { arr: [weird] }}
- , { _doc: { arr: [5] }}
- ]
- , o.arr);
- done();
- })
- })
- })
- describe('get/set integration', function(){
- var o = doc();
- it('works', function(done){
- var vals = mpath.get('array.o.array.x.b', o);
- vals[0][0][2] = 10;
- vals[1][0][1] = 0;
- vals[1][1] = 'Rambaldi';
- vals[1][2] = [12,14];
- vals[2] = [{changed:true}, [null, ['changed','to','array']]];
- mpath.set('array.o.array.x.b', vals, o);
- var t = [
- { o: { array: [{x: {b: [4,6,10]}}, { y: 10} ] }}
- , { o: { array: [{x: {b: [1,0,3]}}, { x: {b:'Rambaldi',z: 10 }}, { x: {b: [12,14]}}] }}
- , { o: { array: [{x: {b: {changed:true}}}, { x: { b: [null, ['changed','to','array']]}}]}}
- , { o: { array: [{x: null }] }}
- , { o: { array: [{y: 3 }] }}
- , { o: { array: [3, 0, null] }}
- , { o: { name: 'ha' }}
- ];
- assert.deepEqual(t, o.array);
- done();
- })
- it('array.prop', function(done){
- mpath.set('comments.name', ['this', 'was', 'changed'], o);
- assert.deepEqual([
- { name: 'this' }
- , { name: 'was', _doc: { name: '2' }}
- , { name: 'changed'
- , comments: [{},{ comments: [{val: 'twoo'}]}]
- , _doc: { name: '3', comments: [{},{ _doc: { comments: [{ val: 2 }] }}] }}
- ], o.comments);
- mpath.set('comments.name', ['also', 'changed', 'this'], o, special);
- assert.deepEqual([
- { name: 'also' }
- , { name: 'was', _doc: { name: 'changed' }}
- , { name: 'changed'
- , comments: [{},{ comments: [{val: 'twoo'}]}]
- , _doc: { name: 'this', comments: [{},{ _doc: { comments: [{ val: 2 }] }}] }}
- ], o.comments);
- done();
- })
- })
- describe('multiple $ use', function(){
- var o = doc();
- it('is ok', function(done){
- assert.doesNotThrow(function () {
- mpath.set('arr.$.arr.$.a', 35, o);
- });
- done();
- })
- })
- it('ignores setting a nested path that doesnt exist', function(done){
- var o = doc();
- assert.doesNotThrow(function(){
- mpath.set('thing.that.is.new', 10, o);
- })
- done();
- })
- })
- })
|