bulkcreate.test.js
1.16 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
'use strict';
const 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'), () => {
describe('bulkCreate', () => {
before(function() {
this.Model = current.define('model', {
accountId: {
type: DataTypes.INTEGER(11).UNSIGNED,
allowNull: false,
field: 'account_id'
}
}, { timestamps: false });
this.stub = sinon.stub(current.getQueryInterface(), 'bulkInsert').returns(Promise.resolve([]));
});
afterEach(function() {
this.stub.reset();
});
after(function() {
this.stub.restore();
});
describe('validations', () => {
it('should not fail for renamed fields', function() {
return this.Model.bulkCreate([
{ accountId: 42 }
], { validate: true }).then(() => {
expect(this.stub.getCall(0).args[1]).to.deep.equal([
{ account_id: 42, id: null }
]);
});
});
});
});
});