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';
|
2014-10-13 16:47:11 +00:00
|
|
|
var expect = require('chai').expect;
|
|
|
|
var testConnector = require('./connectors/test-sql-connector');
|
|
|
|
|
|
|
|
var juggler = require('loopback-datasource-juggler');
|
|
|
|
var ds = new juggler.DataSource({
|
|
|
|
connector: testConnector,
|
2016-04-09 18:35:52 +00:00
|
|
|
debug: true,
|
2014-10-13 16:47:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('sql connector', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
ds.connector._tables = {};
|
|
|
|
ds.connector._models = {};
|
|
|
|
ds.createModel('m1', {});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('automigrate all models', function(done) {
|
|
|
|
ds.automigrate(function(err) {
|
|
|
|
expect(ds.connector._tables).have.property('m1');
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('automigrate one model', function(done) {
|
|
|
|
ds.automigrate('m1', function(err) {
|
|
|
|
expect(ds.connector._tables).have.property('m1');
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('automigrate one or more models in an array', function(done) {
|
|
|
|
ds.automigrate(['m1'], function(err) {
|
|
|
|
expect(ds.connector._tables).have.property('m1');
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('automigrate reports errors for models not attached', function(done) {
|
|
|
|
ds.automigrate(['m1', 'm2'], function(err) {
|
|
|
|
expect(err).to.be.an.instanceOf(Error);
|
|
|
|
expect(ds.connector._tables).to.not.have.property('m1');
|
|
|
|
expect(ds.connector._tables).to.not.have.property('m2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|