loopback-connector-mysql/test/init.js

32 lines
860 B
JavaScript
Raw Normal View History

2013-04-07 21:53:55 +00:00
module.exports = require('should');
2013-08-22 04:53:48 +00:00
var DataSource = require('loopback-datasource-juggler').DataSource;
2013-08-23 21:31:43 +00:00
var config = require('rc')('loopback', {test: {mysql: {}}}).test.mysql;
2015-11-18 22:37:46 +00:00
console.log(config)
2014-02-13 00:57:06 +00:00
global.getConfig = function (options) {
var dbConf = {
2015-11-19 01:13:06 +00:00
host: process.env.TEST_MYSQL_HOST || config.host || 'localhost',
port: process.env.TEST_MYSQL_PORT || config.port || 3306,
2014-02-13 00:57:06 +00:00
database: 'myapp_test',
2015-11-19 01:13:06 +00:00
username: process.env.TEST_MYSQL_USER || config.username,
password: process.env.TEST_MYSQL_PASSWORD || config.password,
2014-02-13 00:57:06 +00:00
createDatabase: true
};
if (options) {
for (var el in options) {
dbConf[el] = options[el];
2013-07-22 00:27:54 +00:00
}
2014-02-13 00:57:06 +00:00
}
return dbConf;
2013-08-23 21:31:43 +00:00
};
2013-07-22 00:27:54 +00:00
2014-02-13 00:57:06 +00:00
global.getDataSource = global.getSchema = function (options) {
var db = new DataSource(require('../'), getConfig(options));
return db;
2013-03-27 00:37:13 +00:00
};
2013-07-22 00:27:54 +00:00
2015-07-21 04:50:47 +00:00
global.sinon = require('sinon');