loopback-connector/test/connectors/test-sql-connector.js

240 lines
5.9 KiB
JavaScript
Raw Normal View History

2016-05-06 04:50:59 +00:00
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
// Node module: loopback-connector
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
2017-03-06 23:40:47 +00:00
'use strict';
/*
* A mockup connector that extends SQL connector
*/
var util = require('util');
2015-05-13 17:14:44 +00:00
var SQLConnector = require('../../lib/sql');
2015-05-15 17:27:08 +00:00
var debug = require('debug')('loopback:connector:test-sql');
var transactionId = 0;
function MockTransaction(connector, name) {
this.connector = connector;
this.name = name;
this.data = {};
2015-05-15 17:27:08 +00:00
}
MockTransaction.prototype.commit = function(cb) {
var self = this;
// Merge data from this TX to the global data var
for (var m in this.data) {
self.connector.data[m] = self.connector.data[m] || [];
for (var i = 0, n = this.data[m].length; i < n; i++) {
self.connector.data[m].push(this.data[m]);
}
}
this.data = {};
2015-05-15 17:27:08 +00:00
cb();
};
MockTransaction.prototype.rollback = function(cb) {
this.data = {};
2015-05-15 17:27:08 +00:00
cb();
};
exports.initialize = function initializeDataSource(dataSource, callback) {
process.nextTick(function() {
2015-05-13 17:14:44 +00:00
if (callback) {
var connector = new TestConnector(dataSource.settings);
connector.dataSource = dataSource;
dataSource.connector = connector;
callback(null, connector);
}
});
};
2015-05-13 17:14:44 +00:00
function TestConnector(settings) {
SQLConnector.call(this, 'testdb', settings);
this._tables = {};
this.data = {};
}
2015-05-13 17:14:44 +00:00
util.inherits(TestConnector, SQLConnector);
TestConnector.prototype.escapeName = function(name) {
return '`' + name + '`';
};
TestConnector.prototype.dbName = function(name) {
return name.toUpperCase();
};
TestConnector.prototype.getPlaceholderForValue = function(key) {
return '$' + key;
};
TestConnector.prototype.escapeValue = function(value) {
if (typeof value === 'number' || typeof value === 'boolean') {
return value;
}
if (typeof value === 'string') {
return "'" + value + "'";
}
if (value == null) {
return 'NULL';
}
if (typeof value === 'object') {
return String(value);
}
return value;
};
TestConnector.prototype.toColumnValue = function(prop, val) {
return val;
};
TestConnector.prototype._buildLimit = function(model, limit, offset) {
if (isNaN(limit)) {
limit = 0;
}
if (isNaN(offset)) {
offset = 0;
}
if (!limit && !offset) {
return '';
}
return 'LIMIT ' + (offset ? (offset + ',' + limit) : limit);
};
2015-05-15 17:27:08 +00:00
TestConnector.prototype.applyPagination =
function(model, stmt, filter) {
2017-03-06 23:40:47 +00:00
/* jshint unused:false */
2015-05-15 17:27:08 +00:00
var limitClause = this._buildLimit(model, filter.limit,
filter.offset || filter.skip);
return stmt.merge(limitClause);
};
TestConnector.prototype.escapeName = function(name) {
return '`' + name + '`';
};
TestConnector.prototype.dbName = function(name) {
return name.toUpperCase();
};
TestConnector.prototype.getPlaceholderForValue = function(key) {
return '$' + key;
};
TestConnector.prototype.escapeValue = function(value) {
if (typeof value === 'number' || typeof value === 'boolean') {
return value;
}
if (typeof value === 'string') {
return "'" + value + "'";
}
if (value == null) {
return 'NULL';
}
if (typeof value === 'object') {
return String(value);
}
return value;
};
TestConnector.prototype.toColumnValue = function(prop, val, escaping) {
return escaping ? this.escapeValue(val) : val;
};
TestConnector.prototype._buildLimit = function(model, limit, offset) {
if (isNaN(limit)) {
limit = 0;
}
if (isNaN(offset)) {
offset = 0;
}
if (!limit && !offset) {
return '';
}
return 'LIMIT ' + (offset ? (offset + ',' + limit) : limit);
};
2015-05-13 17:14:44 +00:00
TestConnector.prototype.applyPagination =
function(model, stmt, filter) {
2017-03-06 23:40:47 +00:00
/* jshint unused:false */
2015-05-13 17:14:44 +00:00
var limitClause = this._buildLimit(model, filter.limit,
filter.offset || filter.skip);
return stmt.merge(limitClause);
};
TestConnector.prototype.dropTable = function(model, cb) {
var err;
var exists = model in this._tables;
if (!exists) {
err = new Error('Model doesn\'t exist: ' + model);
} else {
delete this._tables[model];
}
process.nextTick(function() {
cb(err);
});
};
TestConnector.prototype.createTable = function(model, cb) {
var err;
var exists = model in this._tables;
if (exists) {
err = new Error('Model already exists: ' + model);
} else {
this._tables[model] = model;
}
process.nextTick(function() {
cb(err);
});
};
2015-05-13 17:14:44 +00:00
2015-05-15 17:27:08 +00:00
TestConnector.prototype.getInsertedId = function(model, info) {
return info;
};
TestConnector.prototype.fromColumnValue = function(propertyDef, value) {
return value;
};
TestConnector.prototype.beginTransaction = function(isolationLevel, cb) {
var name = 'tx_' + transactionId++;
cb(null, new MockTransaction(this, name));
};
TestConnector.prototype.commit = function(tx, cb) {
tx.commit(cb);
};
TestConnector.prototype.rollback = function(tx, cb) {
tx.rollback(cb);
};
2015-05-13 17:14:44 +00:00
TestConnector.prototype.executeSQL = function(sql, params, options, callback) {
2015-05-15 17:27:08 +00:00
var transaction = options.transaction;
var model = options.model;
2015-05-15 17:27:08 +00:00
if (transaction && transaction.connector === this && transaction.connection) {
if (sql.indexOf('INSERT') === 0) {
transaction.connection.data[model] =
transaction.connection.data[model] || [];
2017-03-06 23:40:47 +00:00
transaction.connection.data[model].push({sql: sql, params: params});
2015-05-15 17:27:08 +00:00
debug('INSERT', transaction.connection.data, sql,
transaction.connection.name);
callback(null, 1);
2016-04-09 19:00:28 +00:00
} else {
2015-05-15 17:27:08 +00:00
debug('SELECT', transaction.connection.data, sql,
transaction.connection.name);
callback(null, transaction.connection.data[model] || []);
2015-05-15 17:27:08 +00:00
}
} else {
if (sql.indexOf('INSERT') === 0) {
this.data[model] = this.data[model] || [];
2017-03-06 23:40:47 +00:00
this.data[model].push({sql: sql, params: params});
debug('INSERT', this.data, sql);
2015-05-15 17:27:08 +00:00
callback(null, 1);
} else {
debug('SELECT', this.data, sql);
callback(null, this.data[model] || []);
2015-05-15 17:27:08 +00:00
}
}
2015-05-13 17:14:44 +00:00
};