grapher/lib/exposure/testing/units/units.js

287 lines
7.7 KiB
JavaScript
Raw Normal View History

import restrictFields from '../../lib/restrictFields.js';
import enforceMaxLimit from '../../lib/enforceMaxLimit.js';
import intersectDeep from '../../lib/intersectDeep.js';
import computeDeepFunctions from '../../lib/computeDeepFunctions.js';
import intercomputeDeep from '../../lib/intercomputeDeep.js';
import enforceMaxDepth, {getDepth} from '../../lib/enforceMaxDepth.js';
import CollectionNode from '../../../query/nodes/collectionNode.js';
describe('Unit Tests', function () {
it('Should be able to restrict fields', function () {
let filters = {
test: 1,
shouldRestrict: 1,
2016-09-28 18:30:12 +03:00
shouldRestrict2: 1,
$and: [{
shouldRestrict: 1,
test: 1,
}, {
test: 1,
shouldRestrict: 1
}],
$or: [{
$and: [{
test: 1,
shouldRestrict: 1
}]
}],
$nor: [{
test: 1,
shouldRestrict: 1
}],
$not: {
test: 1,
shouldRestrict: 1
}
};
let options = {
sort: {
test: 1,
shouldRestrict: 1,
shouldRestrict2: 1,
},
fields: {
test: 1,
shouldRestrict: 1,
shouldRestrict2: 1
}
};
restrictFields(filters, options, ['shouldRestrict', 'shouldRestrict2']);
2016-09-28 18:30:12 +03:00
assert.lengthOf(_.keys(filters), 5);
assert.equal(filters.test, 1);
assert.lengthOf(_.keys(options.sort), 1);
assert.equal(options.sort.test, 1);
assert.lengthOf(_.keys(options.fields), 1);
assert.equal(options.fields.test, 1);
2016-09-28 18:30:12 +03:00
assert.isDefined(filters.$not.test);
assert.isUndefined(filters.$not.shouldRestrict);
assert.isDefined(filters.$nor[0].test);
assert.isUndefined(filters.$nor[0].shouldRestrict);
assert.isDefined(filters.$and[0].test);
assert.isUndefined(filters.$and[0].shouldRestrict);
assert.isDefined(filters.$and[1].test);
assert.isUndefined(filters.$and[1].shouldRestrict);
assert.isDefined(filters.$or[0].$and[0].test);
assert.isUndefined(filters.$or[0].$and[0].shouldRestrict);
});
it('Should restrict links # getLinks', function () {
import { getLinks } from '../../lib/restrictLinks.js';
let data = getLinks({
collection: {
__exposure: {
config: {
restrictLinks: ['1', '2']
}
}
}
});
assert.lengthOf(data, 2);
data = getLinks({
collection: {
__exposure: {
config: {
restrictLinks: function() {
return ['1', '2']
}
}
}
}
});
assert.lengthOf(data, 2);
});
it('Should be able to enforce a maxLimit', function () {
let options = {};
enforceMaxLimit(options, 100);
assert.equal(options.limit, 100);
options = {limit: 101};
enforceMaxLimit(options, 100);
assert.equal(options.limit, 100);
options = {limit: 99};
enforceMaxLimit(options, 100);
assert.equal(options.limit, 99);
});
it('Should be able to get the propper depth of a node', function () {
let root = new CollectionNode();
let subroot1 = new CollectionNode();
let subroot2 = new CollectionNode();
root.add(subroot1);
root.add(subroot2);
let subsubroot1 = new CollectionNode();
subroot1.add(subsubroot1);
subsubroot1.add(new CollectionNode());
subroot2.add(new CollectionNode());
assert.equal(4, getDepth(root));
});
it('Should be able to enforce depth of a node', function () {
let root = new CollectionNode();
let subroot1 = new CollectionNode();
let subroot2 = new CollectionNode();
root.add(subroot1);
root.add(subroot2);
let subsubroot1 = new CollectionNode();
subroot1.add(subsubroot1);
subsubroot1.add(new CollectionNode());
subroot2.add(new CollectionNode());
assert.equal(4, getDepth(root));
const fn = () => {
enforceMaxDepth(root, 3);
};
assert.throws(fn, /graph request is too deep/);
});
it('Should intersect two objects deeply', function () {
const obj1 = {
a: 1,
b: 1,
c: {
c1: 1,
c2: 1
},
d: {
d1: {
d11: 1,
d12: 1,
d13: {
d131: 1
}
}
2016-10-19 18:40:41 +03:00
},
testUndefined: undefined
};
const obj2 = {
a: 1,
x: '!',
b: {
b1: 1
},
c: {
c1: 1,
c3: '!'
},
d: {
d2: '!',
d1: {
d11: 1,
d13: 1
}
2016-10-19 18:40:41 +03:00
},
testUndefined: {test: 1}
};
Object.freeze(obj1);
Object.freeze(obj2);
const result = intercomputeDeep(obj1, obj2);
assert.isObject(result);
assert.equal(result.a, 1);
assert.isObject(result.b);
assert.equal(result.b.b1, 1);
assert.isUndefined(result.x);
assert.equal(result.c.c1, 1);
assert.isUndefined(result.c.c2);
assert.isUndefined(result.c.c3);
assert.equal(result.d.d1.d11, 1);
assert.isUndefined(result.d.d1.d12);
assert.isUndefined(result.d.d2);
2016-10-19 18:40:41 +03:00
assert.isUndefined(result.testUndefined);
assert.isUndefined(result.d.d1.d13);
});
it('Should compute functions nested', function () {
const object = {
value(item) {
return {item}
},
b: {
value(item) {
return {item}
}
}
};
const newObject = computeDeepFunctions(object, 'test');
assert.isObject(newObject.value);
assert.equal(newObject.value.item, 'test');
assert.isObject(newObject.b.value);
assert.equal(newObject.b.value.item, 'test');
});
it('Should work intersect with computation and with infinite recursion avoidance', function () {
const link2 = (item) => {
return {
item,
link1
}
};
const link1 = (item) => {
return {
item,
link2
}
};
const obj1 = {
a: 1,
link1
};
const obj2 = {
a: {
a1: 1
},
link1: {
item: 1,
link2: {
item: 1,
link1: {
item: 1
}
}
}
};
const result = intercomputeDeep(obj1, obj2, 'test');
assert.isObject(result.a);
assert.isDefined(result.a.a1);
assert.isObject(result.link1);
assert.equal(result.link1.item, 'test');
assert.isObject(result.link1.link2);
assert.equal(result.link1.link2.item, 'test');
assert.isObject(result.link1.link2.link1);
assert.equal(result.link1.link2.link1.item, 'test');
})
});