bulkcreate.test.js
1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict';
/* jshint -W030, -W110 */
var chai = require('chai')
, expect = chai.expect
, sinon = require('sinon')
, Support = require(__dirname + '/../support')
, DataTypes = require('../../../lib/data-types')
, current = Support.sequelize
, Promise = current.Promise;
describe(Support.getTestDialectTeaser('Model'), function() {
describe('bulkCreate', function () {
var Model = current.define('model', {
accountId: {
type: DataTypes.INTEGER(11).UNSIGNED,
allowNull: false,
field: 'account_id'
}
}, { timestamps: false });
before(function () {
this.stub = sinon.stub(current.getQueryInterface(), 'bulkInsert', function () {
return Promise.resolve([]);
});
});
beforeEach(function () {
this.stub.reset();
});
after(function () {
this.stub.restore();
});
describe('validations', function () {
it('should not fail for renamed fields', function () {
return Model.bulkCreate([
{ accountId: 42 }
], { validate: true }).bind(this).then(function () {
expect(this.stub.getCall(0).args[1]).to.deep.equal([
{ account_id: 42, id: null }
]);
});
});
});
});
});