| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 | 'use strict';var test = require('tape');var assert = require('assert');var traverse = require('../');var deepEqual = require('./lib/deep_equal');test('mutate', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).forEach(function (x) {		if (typeof x === 'number' && x % 2 === 0) {			this.update(x * 10);		}	});	t.same(obj, res);	t.same(obj, { a: 1, b: 20, c: [3, 40] });	t.end();});test('mutateT', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse.forEach(obj, function (x) {		if (typeof x === 'number' && x % 2 === 0) {			this.update(x * 10);		}	});	t.same(obj, res);	t.same(obj, { a: 1, b: 20, c: [3, 40] });	t.end();});test('map', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).map(function (x) {		if (typeof x === 'number' && x % 2 === 0) {			this.update(x * 10);		}	});	t.same(obj, { a: 1, b: 2, c: [3, 4] });	t.same(res, { a: 1, b: 20, c: [3, 40] });	t.end();});test('mapT', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse.map(obj, function (x) {		if (typeof x === 'number' && x % 2 === 0) {			this.update(x * 10);		}	});	t.same(obj, { a: 1, b: 2, c: [3, 4] });	t.same(res, { a: 1, b: 20, c: [3, 40] });	t.end();});test('clone', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).clone();	t.same(obj, res);	t.ok(obj !== res);	obj.a += 1;	t.same(res.a, 1);	obj.c.push(5);	t.same(res.c, [3, 4]);	t.end();});test('cloneT', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse.clone(obj);	t.same(obj, res);	t.ok(obj !== res);	obj.a += 1;	t.same(res.a, 1);	obj.c.push(5);	t.same(res.c, [3, 4]);	t.end();});test('cloneTypedArray', { skip: typeof Uint8Array !== 'function' }, function (t) {	var obj = new Uint8Array([1]);	var res = traverse.clone(obj);	t.same(obj, res);	t.ok(obj !== res);	obj.set([2], 0);	res.set([3], 0);	t.same(obj, new Uint8Array([2]));	t.same(res, new Uint8Array([3]));	t.end();});test('reduce', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).reduce(function (acc, x) {		if (this.isLeaf) { acc.push(x); }		return acc;	}, []);	t.same(obj, { a: 1, b: 2, c: [3, 4] });	t.same(res, [1, 2, 3, 4]);	t.end();});test('reduceInit', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).reduce(function (acc) {		if (this.isRoot) { assert.fail('got root'); }		return acc;	});	t.same(obj, { a: 1, b: 2, c: [3, 4] });	t.same(res, obj);	t.end();});test('remove', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	traverse(obj).forEach(function (x) {		if (this.isLeaf && x % 2 === 0) { this.remove(); }	});	t.same(obj, { a: 1, c: [3] });	t.end();});test('removeNoStop', function (t) {	var obj = { a: 1, b: 2, c: { d: 3, e: 4 }, f: 5 };	var keys = [];	traverse(obj).forEach(function () {		keys.push(this.key);		if (this.key === 'c') { this.remove(); }	});	t.same(keys, [undefined, 'a', 'b', 'c', 'd', 'e', 'f']);	t.end();});test('removeStop', function (t) {	var obj = { a: 1, b: 2, c: { d: 3, e: 4 }, f: 5 };	var keys = [];	traverse(obj).forEach(function () {		keys.push(this.key);		if (this.key === 'c') { this.remove(true); }	});	t.same(keys, [undefined, 'a', 'b', 'c', 'f']);	t.end();});test('removeMap', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).map(function (x) {		if (this.isLeaf && x % 2 === 0) { this.remove(); }	});	t.same(obj, { a: 1, b: 2, c: [3, 4] });	t.same(res, { a: 1, c: [3] });	t.end();});test('delete', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	traverse(obj).forEach(function (x) {		if (this.isLeaf && x % 2 === 0) { this.delete(); }	});	t.ok(!deepEqual(obj, { a: 1, c: [3, undefined] }));	t.ok(deepEqual(obj, { a: 1, c: [3] }));	t.ok(!deepEqual(obj, { a: 1, c: [3, null] }));	t.end();});test('deleteNoStop', function (t) {	var obj = { a: 1, b: 2, c: { d: 3, e: 4 } };	var keys = [];	traverse(obj).forEach(function () {		keys.push(this.key);		if (this.key === 'c') { this.delete(); }	});	t.same(keys, [undefined, 'a', 'b', 'c', 'd', 'e']);	t.end();});test('deleteStop', function (t) {	var obj = { a: 1, b: 2, c: { d: 3, e: 4 } };	var keys = [];	traverse(obj).forEach(function () {		keys.push(this.key);		if (this.key === 'c') { this.delete(true); }	});	t.same(keys, [undefined, 'a', 'b', 'c']);	t.end();});test('deleteRedux', function (t) {	var obj = { a: 1, b: 2, c: [3, 4, 5] };	traverse(obj).forEach(function (x) {		if (this.isLeaf && x % 2 === 0) { this.delete(); }	});	t.ok(!deepEqual(obj, { a: 1, c: [3, undefined, 5] }));	// eslint-disable-next-line no-sparse-arrays	t.ok(deepEqual(obj, { a: 1, c: [3,, 5] }));	t.ok(!deepEqual(obj, { a: 1, c: [3, null, 5] }));	t.ok(!deepEqual(obj, { a: 1, c: [3, 5] }));	t.end();});test('deleteMap', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).map(function (x) {		if (this.isLeaf && x % 2 === 0) { this.delete(); }	});	t.ok(deepEqual(		obj,		{ a: 1, b: 2, c: [3, 4] }	));	var xs = [3, 4];	delete xs[1];	t.ok(deepEqual(res, { a: 1, c: xs }));	// eslint-disable-next-line comma-spacing, no-sparse-arrays	t.ok(deepEqual(res, { a: 1, c: [3,,] }));	t.ok(deepEqual(res, { a: 1, c: [3] }));	t.end();});test('deleteMapRedux', function (t) {	var obj = { a: 1, b: 2, c: [3, 4, 5] };	var res = traverse(obj).map(function (x) {		if (this.isLeaf && x % 2 === 0) { this.delete(); }	});	t.ok(deepEqual(		obj,		{ a: 1, b: 2, c: [3, 4, 5] }	));	var xs = [3, 4, 5];	delete xs[1];	t.ok(deepEqual(res, { a: 1, c: xs }));	t.ok(!deepEqual(res, { a: 1, c: [3, 5] }));	// eslint-disable-next-line no-sparse-arrays	t.ok(deepEqual(res, { a: 1, c: [3,, 5] }));	t.end();});test('objectToString', function (t) {	var obj = { a: 1, b: 2, c: [3, 4] };	var res = traverse(obj).forEach(function (x) {		if (typeof x === 'object' && !this.isRoot) {			this.update(JSON.stringify(x));		}	});	t.same(obj, res);	t.same(obj, { a: 1, b: 2, c: '[3,4]' });	t.end();});test('stringToObject', function (t) {	var obj = { a: 1, b: 2, c: '[3,4]' };	var res = traverse(obj).forEach(function (x) {		if (typeof x === 'string') {			this.update(JSON.parse(x));		} else if (typeof x === 'number' && x % 2 === 0) {			this.update(x * 10);		}	});	t.deepEqual(obj, res);	t.deepEqual(obj, { a: 1, b: 20, c: [3, 40] });	t.end();});test('array item removal', function (t) {	var obj = [		function a() {},		function b() {},		'a',	];	function cb(x) {		if (x !== obj) {			// console.log("**", x, typeof x)			if (typeof x === 'function') { this.remove(); }		}	}	var result = traverse(obj, { immutable: true }).forEach(cb);	t.equal(obj.length, 3, 'immutable: makes no changes');	t.deepEqual(result, ['a'], 'immutable result: removes all functions');	traverse(obj).forEach(cb);	t.deepEqual(obj, ['a'], 'removes all functions');	t.end();});
 |