Windshaft-cartodb/test/unit/mapconfig/adapter-test.js

96 lines
3.4 KiB
JavaScript
Raw Normal View History

'use strict';
2019-10-22 01:07:24 +08:00
// require('../../../support/test-helper');
var assert = require('assert');
2019-10-07 17:29:07 +08:00
var MapConfigAdapter = require('../../../lib/models/mapconfig/adapter');
2019-10-22 01:07:24 +08:00
describe('MapConfigAdapter', function () {
var user = 'wadus';
2019-10-22 01:07:24 +08:00
function requestMapConfig () {
return {
val: 0
};
}
2019-10-22 01:07:24 +08:00
function params () {
return {};
}
2019-10-22 01:07:24 +08:00
function context () {
return {};
}
2019-10-22 01:07:24 +08:00
function createAdapter (valOperatorFn) {
return function ValMapConfigAdapter () {
this.getMapConfig = function (user, requestMapConfig, params, context, callback) {
2016-05-26 17:30:28 +08:00
requestMapConfig.val = valOperatorFn(requestMapConfig.val);
return callback(null, requestMapConfig);
};
};
}
2019-10-22 01:07:24 +08:00
var IncValMapConfigAdapter = createAdapter(function (val) { return val + 1; });
var Mul2ValMapConfigAdapter = createAdapter(function (val) { return val * 2; });
2019-10-22 01:07:24 +08:00
function validateMapConfig (adapter, expectedNumAdapters, expectedVal, callback) {
assert.strictEqual(adapter.adapters.length, expectedNumAdapters);
2019-10-22 01:07:24 +08:00
adapter.getMapConfig(user, requestMapConfig(), params(), context(), function (err, mapConfig) {
assert.strictEqual(mapConfig.val, expectedVal);
return callback(err);
});
}
2019-10-22 01:07:24 +08:00
it('works with no adapters', function (done) {
var adapter = new MapConfigAdapter();
validateMapConfig(adapter, 0, 0, done);
});
2019-10-22 01:07:24 +08:00
it('works with no adapters as empty array', function (done) {
var adapter = new MapConfigAdapter([]);
validateMapConfig(adapter, 0, 0, done);
});
2019-10-22 01:07:24 +08:00
it('works with basic adapter', function (done) {
var adapter = new MapConfigAdapter(new IncValMapConfigAdapter());
validateMapConfig(adapter, 1, 1, done);
});
2019-10-22 01:07:24 +08:00
it('works with basic adapter as array', function (done) {
var adapter = new MapConfigAdapter([new IncValMapConfigAdapter()]);
validateMapConfig(adapter, 1, 1, done);
});
2019-10-22 01:07:24 +08:00
it('works with several adapters', function (done) {
var adapter = new MapConfigAdapter(new IncValMapConfigAdapter(), new IncValMapConfigAdapter());
validateMapConfig(adapter, 2, 2, done);
});
2019-10-22 01:07:24 +08:00
it('works with several adapters as array', function (done) {
var adapter = new MapConfigAdapter([new IncValMapConfigAdapter(), new IncValMapConfigAdapter()]);
validateMapConfig(adapter, 2, 2, done);
});
2016-05-26 17:30:28 +08:00
2019-10-22 01:07:24 +08:00
it('should execute in order 1', function (done) {
2016-05-26 17:30:28 +08:00
var adapter = new MapConfigAdapter([new Mul2ValMapConfigAdapter(), new IncValMapConfigAdapter()]);
validateMapConfig(adapter, 2, 1, done);
2016-05-26 17:30:28 +08:00
});
2019-10-22 01:07:24 +08:00
it('should execute in order 2', function (done) {
2016-05-26 17:30:28 +08:00
var adapter = new MapConfigAdapter([new IncValMapConfigAdapter(), new Mul2ValMapConfigAdapter()]);
validateMapConfig(adapter, 2, 2, done);
2016-05-26 17:30:28 +08:00
});
2019-10-22 01:07:24 +08:00
it('should execute in order 3', function (done) {
2016-05-26 17:30:28 +08:00
var adapter = new MapConfigAdapter([new Mul2ValMapConfigAdapter(), new Mul2ValMapConfigAdapter()]);
validateMapConfig(adapter, 2, 0, done);
2016-05-26 17:30:28 +08:00
});
2019-10-22 01:07:24 +08:00
it('should execute in order 4', function (done) {
var Mul5ValMapConfigAdapter = createAdapter(function (val) { return val * 5; });
2016-05-26 17:30:28 +08:00
var adapter = new MapConfigAdapter(
new IncValMapConfigAdapter(),
new Mul2ValMapConfigAdapter(),
new Mul5ValMapConfigAdapter()
);
validateMapConfig(adapter, 3, 10, done);
2016-05-26 17:30:28 +08:00
});
});