sequelize.test.js
61.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
'use strict';
const { expect, assert } = require('chai');
const Support = require('./support');
const DataTypes = require('../../lib/data-types');
const dialect = Support.getTestDialect();
const _ = require('lodash');
const Sequelize = require('../../index');
const config = require('../config/config');
const moment = require('moment');
const Transaction = require('../../lib/transaction');
const sinon = require('sinon');
const current = Support.sequelize;
const qq = str => {
if (dialect === 'postgres' || dialect === 'mssql') {
return `"${str}"`;
}
if (dialect === 'mysql' || dialect === 'mariadb' || dialect === 'sqlite') {
return `\`${str}\``;
}
return str;
};
describe(Support.getTestDialectTeaser('Sequelize'), () => {
describe('constructor', () => {
it('should pass the global options correctly', () => {
const sequelize = Support.createSequelizeInstance({ logging: false, define: { underscored: true } }),
DAO = sequelize.define('dao', { name: DataTypes.STRING });
expect(DAO.options.underscored).to.be.ok;
});
it('should correctly set the host and the port', () => {
const sequelize = Support.createSequelizeInstance({ host: '127.0.0.1', port: 1234 });
expect(sequelize.config.port).to.equal(1234);
expect(sequelize.config.host).to.equal('127.0.0.1');
});
it('should set operators aliases on dialect QueryGenerator', () => {
const operatorsAliases = { fake: true };
const sequelize = Support.createSequelizeInstance({ operatorsAliases });
expect(sequelize).to.have.property('dialect');
expect(sequelize.dialect).to.have.property('QueryGenerator');
expect(sequelize.dialect.QueryGenerator).to.have.property('OperatorsAliasMap');
expect(sequelize.dialect.QueryGenerator.OperatorsAliasMap).to.be.eql(operatorsAliases);
});
if (dialect === 'sqlite') {
it('should work with connection strings (1)', () => {
new Sequelize('sqlite://test.sqlite');
});
it('should work with connection strings (2)', () => {
new Sequelize('sqlite://test.sqlite/');
});
it('should work with connection strings (3)', () => {
new Sequelize('sqlite://test.sqlite/lol?reconnect=true');
});
}
if (dialect === 'postgres') {
const getConnectionUri = o => `${o.protocol}://${o.username}:${o.password}@${o.host}${o.port ? `:${o.port}` : ''}/${o.database}`;
it('should work with connection strings (postgres protocol)', () => {
const connectionUri = getConnectionUri({ ...config[dialect], protocol: 'postgres' });
// postgres://...
new Sequelize(connectionUri);
});
it('should work with connection strings (postgresql protocol)', () => {
const connectionUri = getConnectionUri({ ...config[dialect], protocol: 'postgresql' });
// postgresql://...
new Sequelize(connectionUri);
});
}
});
if (dialect !== 'sqlite') {
describe('authenticate', () => {
describe('with valid credentials', () => {
it('triggers the success event', function() {
return this.sequelize.authenticate();
});
});
describe('with an invalid connection', () => {
beforeEach(function() {
const options = { ...this.sequelize.options, port: '99999' };
this.sequelizeWithInvalidConnection = new Sequelize('wat', 'trololo', 'wow', options);
});
it('triggers the error event', function() {
return this
.sequelizeWithInvalidConnection
.authenticate()
.catch(err => {
expect(err).to.not.be.null;
});
});
it('triggers an actual RangeError or ConnectionError', function() {
return this
.sequelizeWithInvalidConnection
.authenticate()
.catch(err => {
expect(
err instanceof RangeError ||
err instanceof Sequelize.ConnectionError
).to.be.ok;
});
});
it('triggers the actual adapter error', function() {
return this
.sequelizeWithInvalidConnection
.authenticate()
.catch(err => {
console.log(err);
expect(
err.message.includes('connect ECONNREFUSED') ||
err.message.includes('invalid port number') ||
err.message.match(/should be >=? 0 and < 65536/) ||
err.message.includes('Login failed for user') ||
err.message.includes('must be > 0 and < 65536')
).to.be.ok;
});
});
});
describe('with invalid credentials', () => {
beforeEach(function() {
this.sequelizeWithInvalidCredentials = new Sequelize('localhost', 'wtf', 'lol', this.sequelize.options);
});
it('triggers the error event', function() {
return this
.sequelizeWithInvalidCredentials
.authenticate()
.catch(err => {
expect(err).to.not.be.null;
});
});
it('triggers an actual sequlize error', function() {
return this
.sequelizeWithInvalidCredentials
.authenticate()
.catch(err => {
expect(err).to.be.instanceof(Sequelize.Error);
});
});
it('triggers the error event when using replication', () => {
return new Sequelize('sequelize', null, null, {
dialect,
replication: {
read: {
host: 'localhost',
username: 'omg',
password: 'lol'
}
}
}).authenticate()
.catch(err => {
expect(err).to.not.be.null;
});
});
});
});
describe('validate', () => {
it('is an alias for .authenticate()', function() {
expect(this.sequelize.validate).to.equal(this.sequelize.authenticate);
});
});
}
describe('getDialect', () => {
it('returns the defined dialect', function() {
expect(this.sequelize.getDialect()).to.equal(dialect);
});
});
describe('getDatabaseName', () => {
it('returns the database name', function() {
expect(this.sequelize.getDatabaseName()).to.equal(this.sequelize.config.database);
});
});
describe('isDefined', () => {
it('returns false if the dao wasn\'t defined before', function() {
expect(this.sequelize.isDefined('Project')).to.be.false;
});
it('returns true if the dao was defined before', function() {
this.sequelize.define('Project', {
name: DataTypes.STRING
});
expect(this.sequelize.isDefined('Project')).to.be.true;
});
});
describe('model', () => {
it('throws an error if the dao being accessed is undefined', function() {
expect(() => {
this.sequelize.model('Project');
}).to.throw(/project has not been defined/i);
});
it('returns the dao factory defined by daoName', function() {
const project = this.sequelize.define('Project', {
name: DataTypes.STRING
});
expect(this.sequelize.model('Project')).to.equal(project);
});
});
describe('query', () => {
afterEach(function() {
this.sequelize.options.quoteIdentifiers = true;
console.log.restore && console.log.restore();
});
beforeEach(function() {
this.User = this.sequelize.define('User', {
username: {
type: DataTypes.STRING,
unique: true
},
emailAddress: {
type: DataTypes.STRING,
field: 'email_address'
}
});
this.insertQuery = `INSERT INTO ${qq(this.User.tableName)} (username, email_address, ${
qq('createdAt') }, ${qq('updatedAt')
}) VALUES ('john', 'john@gmail.com', '2012-01-01 10:10:10', '2012-01-01 10:10:10')`;
return this.User.sync({ force: true });
});
it('executes a query the internal way', function() {
return this.sequelize.query(this.insertQuery, { raw: true });
});
it('executes a query if only the sql is passed', function() {
return this.sequelize.query(this.insertQuery);
});
it('executes a query if a placeholder value is an array', function() {
return this.sequelize.query(`INSERT INTO ${qq(this.User.tableName)} (username, email_address, ` +
`${qq('createdAt')}, ${qq('updatedAt')}) VALUES ?;`, {
replacements: [[
['john', 'john@gmail.com', '2012-01-01 10:10:10', '2012-01-01 10:10:10'],
['michael', 'michael@gmail.com', '2012-01-01 10:10:10', '2012-01-01 10:10:10']
]]
})
.then(() => this.sequelize.query(`SELECT * FROM ${qq(this.User.tableName)};`, {
type: this.sequelize.QueryTypes.SELECT
}))
.then(rows => {
expect(rows).to.be.lengthOf(2);
expect(rows[0].username).to.be.equal('john');
expect(rows[1].username).to.be.equal('michael');
});
});
describe('retry', () => {
it('properly bind parameters on extra retries', function() {
const payload = {
username: 'test',
createdAt: '2010-10-10 00:00:00',
updatedAt: '2010-10-10 00:00:00'
};
const spy = sinon.spy();
return expect(this.User.create(payload).then(() => this.sequelize.query(`
INSERT INTO ${qq(this.User.tableName)} (username,${qq('createdAt')},${qq('updatedAt')}) VALUES ($username,$createdAt,$updatedAt);
`, {
bind: payload,
logging: spy,
retry: {
max: 3,
match: [
/Validation/
]
}
}))).to.be.rejectedWith(Sequelize.UniqueConstraintError).then(() => {
expect(spy.callCount).to.eql(3);
});
});
});
describe('logging', () => {
it('executes a query with global benchmarking option and custom logger', () => {
const logger = sinon.spy();
const sequelize = Support.createSequelizeInstance({
logging: logger,
benchmark: true
});
return sequelize.query('select 1;').then(() => {
expect(logger.calledOnce).to.be.true;
expect(logger.args[0][0]).to.be.match(/Executed \((\d*|default)\): select 1/);
expect(typeof logger.args[0][1] === 'number').to.be.true;
});
});
it('executes a query with benchmarking option and custom logger', function() {
const logger = sinon.spy();
return this.sequelize.query('select 1;', {
logging: logger,
benchmark: true
}).then(() => {
expect(logger.calledOnce).to.be.true;
expect(logger.args[0][0]).to.be.match(/Executed \(\d*|default\): select 1;/);
expect(typeof logger.args[0][1] === 'number').to.be.true;
});
});
describe('log sql when set logQueryParameters', () => {
beforeEach(function() {
this.sequelize = Support.createSequelizeInstance({
benchmark: true,
logQueryParameters: true
});
this.User = this.sequelize.define('User', {
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
username: {
type: DataTypes.STRING
},
emailAddress: {
type: DataTypes.STRING
}
}, {
timestamps: false
});
return this.User.sync({ force: true });
});
it('add parameters in log sql', function() {
let createSql, updateSql;
return this.User.create({
username: 'john',
emailAddress: 'john@gmail.com'
}, {
logging: s =>{
createSql = s;
}
}).then(user=>{
user.username = 'li';
return user.save({
logging: s =>{
updateSql = s;
}
});
}).then(()=>{
expect(createSql).to.match(/; ("john", "john@gmail.com"|{"(\$1|0)":"john","(\$2|1)":"john@gmail.com"})/);
expect(updateSql).to.match(/; ("li", 1|{"(\$1|0)":"li","(\$2|1)":1})/);
});
});
it('add parameters in log sql when use bind value', function() {
let logSql;
const typeCast = dialect === 'postgres' ? '::text' : '';
return this.sequelize.query(`select $1${typeCast} as foo, $2${typeCast} as bar`, { bind: ['foo', 'bar'], logging: s=>logSql = s })
.then(()=>{
expect(logSql).to.match(/; ("foo", "bar"|{"(\$1|0)":"foo","(\$2|1)":"bar"})/);
});
});
});
});
it('executes select queries correctly', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query(`select * from ${qq(this.User.tableName)}`);
}).then(([users]) => {
expect(users.map(u => { return u.username; })).to.include('john');
});
});
it('executes select queries correctly when quoteIdentifiers is false', function() {
const seq = Object.create(this.sequelize);
seq.options.quoteIdentifiers = false;
return seq.query(this.insertQuery).then(() => {
return seq.query(`select * from ${qq(this.User.tableName)}`);
}).then(([users]) => {
expect(users.map(u => { return u.username; })).to.include('john');
});
});
it('executes select query with dot notation results', function() {
return this.sequelize.query(`DELETE FROM ${qq(this.User.tableName)}`).then(() => {
return this.sequelize.query(this.insertQuery);
}).then(() => {
return this.sequelize.query(`select username as ${qq('user.username')} from ${qq(this.User.tableName)}`);
}).then(([users]) => {
expect(users).to.deep.equal([{ 'user.username': 'john' }]);
});
});
it('executes select query with dot notation results and nest it', function() {
return this.sequelize.query(`DELETE FROM ${qq(this.User.tableName)}`).then(() => {
return this.sequelize.query(this.insertQuery);
}).then(() => {
return this.sequelize.query(`select username as ${qq('user.username')} from ${qq(this.User.tableName)}`, { raw: true, nest: true });
}).then(users => {
expect(users.map(u => { return u.user; })).to.deep.equal([{ 'username': 'john' }]);
});
});
if (dialect === 'mysql') {
it('executes stored procedures', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query('DROP PROCEDURE IF EXISTS foo').then(() => {
return this.sequelize.query(
`CREATE PROCEDURE foo()\nSELECT * FROM ${this.User.tableName};`
).then(() => {
return this.sequelize.query('CALL foo()').then(users => {
expect(users.map(u => { return u.username; })).to.include('john');
});
});
});
});
});
} else {
console.log('FIXME: I want to be supported in this dialect as well :-(');
}
it('uses the passed model', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query(`SELECT * FROM ${qq(this.User.tableName)};`, {
model: this.User
});
}).then(users => {
expect(users[0]).to.be.instanceof(this.User);
});
});
it('maps the field names to attributes based on the passed model', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query(`SELECT * FROM ${qq(this.User.tableName)};`, {
model: this.User,
mapToModel: true
});
}).then(users => {
expect(users[0].emailAddress).to.be.equal('john@gmail.com');
});
});
it('arbitrarily map the field names', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query(`SELECT * FROM ${qq(this.User.tableName)};`, {
type: 'SELECT',
fieldMap: { username: 'userName', email_address: 'email' }
});
}).then(users => {
expect(users[0].userName).to.be.equal('john');
expect(users[0].email).to.be.equal('john@gmail.com');
});
});
it('keeps field names that are mapped to the same name', function() {
return this.sequelize.query(this.insertQuery).then(() => {
return this.sequelize.query(`SELECT * FROM ${qq(this.User.tableName)};`, {
type: 'SELECT',
fieldMap: { username: 'username', email_address: 'email' }
});
}).then(users => {
expect(users[0].username).to.be.equal('john');
expect(users[0].email).to.be.equal('john@gmail.com');
});
});
it('reject if `values` and `options.replacements` are both passed', function() {
return this.sequelize.query({ query: 'select ? as foo, ? as bar', values: [1, 2] }, { raw: true, replacements: [1, 2] })
.should.be.rejectedWith(Error, 'Both `sql.values` and `options.replacements` cannot be set at the same time');
});
it('reject if `sql.bind` and `options.bind` are both passed', function() {
return this.sequelize.query({ query: 'select $1 + ? as foo, $2 + ? as bar', bind: [1, 2] }, { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, 'Both `sql.bind` and `options.bind` cannot be set at the same time');
});
it('reject if `options.replacements` and `options.bind` are both passed', function() {
return this.sequelize.query('select $1 + ? as foo, $2 + ? as bar', { raw: true, bind: [1, 2], replacements: [1, 2] })
.should.be.rejectedWith(Error, 'Both `replacements` and `bind` cannot be set at the same time');
});
it('reject if `sql.bind` and `sql.values` are both passed', function() {
return this.sequelize.query({ query: 'select $1 + ? as foo, $2 + ? as bar', bind: [1, 2], values: [1, 2] }, { raw: true })
.should.be.rejectedWith(Error, 'Both `replacements` and `bind` cannot be set at the same time');
});
it('reject if `sql.bind` and `options.replacements`` are both passed', function() {
return this.sequelize.query({ query: 'select $1 + ? as foo, $2 + ? as bar', bind: [1, 2] }, { raw: true, replacements: [1, 2] })
.should.be.rejectedWith(Error, 'Both `replacements` and `bind` cannot be set at the same time');
});
it('reject if `options.bind` and `sql.replacements` are both passed', function() {
return this.sequelize.query({ query: 'select $1 + ? as foo, $1 _ ? as bar', values: [1, 2] }, { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, 'Both `replacements` and `bind` cannot be set at the same time');
});
it('properly adds and escapes replacement value', function() {
let logSql;
const number = 1,
date = new Date(),
string = 't\'e"st',
boolean = true,
buffer = Buffer.from('t\'e"st');
date.setMilliseconds(0);
return this.sequelize.query({
query: 'select ? as number, ? as date,? as string,? as boolean,? as buffer',
values: [number, date, string, boolean, buffer]
}, {
type: this.sequelize.QueryTypes.SELECT,
logging(s) {
logSql = s;
}
}).then(result => {
const res = result[0] || {};
res.date = res.date && new Date(res.date);
res.boolean = res.boolean && true;
if (typeof res.buffer === 'string' && res.buffer.startsWith('\\x')) {
res.buffer = Buffer.from(res.buffer.substring(2), 'hex');
}
expect(res).to.deep.equal({
number,
date,
string,
boolean,
buffer
});
expect(logSql).to.not.include('?');
});
});
it('it allows to pass custom class instances', function() {
let logSql;
class SQLStatement {
constructor() {
this.values = [1, 2];
}
get query() {
return 'select ? as foo, ? as bar';
}
}
return this.sequelize.query(new SQLStatement(), { type: this.sequelize.QueryTypes.SELECT, logging: s => logSql = s } ).then(result => {
expect(result).to.deep.equal([{ foo: 1, bar: 2 }]);
expect(logSql).to.not.include('?');
});
});
it('uses properties `query` and `values` if query is tagged', function() {
let logSql;
return this.sequelize.query({ query: 'select ? as foo, ? as bar', values: [1, 2] }, { type: this.sequelize.QueryTypes.SELECT, logging(s) { logSql = s; } }).then(result => {
expect(result).to.deep.equal([{ foo: 1, bar: 2 }]);
expect(logSql).to.not.include('?');
});
});
it('uses properties `query` and `bind` if query is tagged', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
let logSql;
return this.sequelize.query({ query: `select $1${typeCast} as foo, $2${typeCast} as bar`, bind: [1, 2] }, { type: this.sequelize.QueryTypes.SELECT, logging(s) { logSql = s; } }).then(result => {
expect(result).to.deep.equal([{ foo: 1, bar: 2 }]);
if (dialect === 'postgres' || dialect === 'sqlite') {
expect(logSql).to.include('$1');
expect(logSql).to.include('$2');
} else if (dialect === 'mssql') {
expect(logSql).to.include('@0');
expect(logSql).to.include('@1');
} else if (dialect === 'mysql') {
expect(logSql.match(/\?/g).length).to.equal(2);
}
});
});
it('dot separated attributes when doing a raw query without nest', function() {
const tickChar = dialect === 'postgres' || dialect === 'mssql' ? '"' : '`',
sql = `select 1 as ${Sequelize.Utils.addTicks('foo.bar.baz', tickChar)}`;
return expect(this.sequelize.query(sql, { raw: true, nest: false }).then(obj => obj[0])).to.eventually.deep.equal([{ 'foo.bar.baz': 1 }]);
});
it('destructs dot separated attributes when doing a raw query using nest', function() {
const tickChar = dialect === 'postgres' || dialect === 'mssql' ? '"' : '`',
sql = `select 1 as ${Sequelize.Utils.addTicks('foo.bar.baz', tickChar)}`;
return this.sequelize.query(sql, { raw: true, nest: true }).then(result => {
expect(result).to.deep.equal([{ foo: { bar: { baz: 1 } } }]);
});
});
it('replaces token with the passed array', function() {
return this.sequelize.query('select ? as foo, ? as bar', { type: this.sequelize.QueryTypes.SELECT, replacements: [1, 2] }).then(result => {
expect(result).to.deep.equal([{ foo: 1, bar: 2 }]);
});
});
it('replaces named parameters with the passed object', function() {
return expect(this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: { one: 1, two: 2 } }).then(obj => obj[0]))
.to.eventually.deep.equal([{ foo: 1, bar: 2 }]);
});
it('replaces named parameters with the passed object and ignore those which does not qualify', function() {
return expect(this.sequelize.query('select :one as foo, :two as bar, \'00:00\' as baz', { raw: true, replacements: { one: 1, two: 2 } }).then(obj => obj[0]))
.to.eventually.deep.equal([{ foo: 1, bar: 2, baz: '00:00' }]);
});
it('replaces named parameters with the passed object using the same key twice', function() {
return expect(this.sequelize.query('select :one as foo, :two as bar, :one as baz', { raw: true, replacements: { one: 1, two: 2 } }).then(obj => obj[0]))
.to.eventually.deep.equal([{ foo: 1, bar: 2, baz: 1 }]);
});
it('replaces named parameters with the passed object having a null property', function() {
return expect(this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: { one: 1, two: null } }).then(obj => obj[0]))
.to.eventually.deep.equal([{ foo: 1, bar: null }]);
});
it('reject when key is missing in the passed object', function() {
return this.sequelize.query('select :one as foo, :two as bar, :three as baz', { raw: true, replacements: { one: 1, two: 2 } })
.should.be.rejectedWith(Error, /Named parameter ":\w+" has no value in the given object\./g);
});
it('reject with the passed number', function() {
return this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: 2 })
.should.be.rejectedWith(Error, /Named parameter ":\w+" has no value in the given object\./g);
});
it('reject with the passed empty object', function() {
return this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: {} })
.should.be.rejectedWith(Error, /Named parameter ":\w+" has no value in the given object\./g);
});
it('reject with the passed string', function() {
return this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: 'foobar' })
.should.be.rejectedWith(Error, /Named parameter ":\w+" has no value in the given object\./g);
});
it('reject with the passed date', function() {
return this.sequelize.query('select :one as foo, :two as bar', { raw: true, replacements: new Date() })
.should.be.rejectedWith(Error, /Named parameter ":\w+" has no value in the given object\./g);
});
it('binds token with the passed array', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
let logSql;
return this.sequelize.query(`select $1${typeCast} as foo, $2${typeCast} as bar`, { type: this.sequelize.QueryTypes.SELECT, bind: [1, 2], logging(s) { logSql = s;} }).then(result => {
expect(result).to.deep.equal([{ foo: 1, bar: 2 }]);
if (dialect === 'postgres' || dialect === 'sqlite') {
expect(logSql).to.include('$1');
}
});
});
it('binds named parameters with the passed object', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
let logSql;
return this.sequelize.query(`select $one${typeCast} as foo, $two${typeCast} as bar`, { raw: true, bind: { one: 1, two: 2 }, logging(s) { logSql = s; } }).then(result => {
expect(result[0]).to.deep.equal([{ foo: 1, bar: 2 }]);
if (dialect === 'postgres') {
expect(logSql).to.include('$1');
}
if (dialect === 'sqlite') {
expect(logSql).to.include('$one');
}
});
});
it('binds named parameters with the passed object using the same key twice', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
let logSql;
return this.sequelize.query(`select $one${typeCast} as foo, $two${typeCast} as bar, $one${typeCast} as baz`, { raw: true, bind: { one: 1, two: 2 }, logging(s) { logSql = s; } }).then(result => {
expect(result[0]).to.deep.equal([{ foo: 1, bar: 2, baz: 1 }]);
if (dialect === 'postgres') {
expect(logSql).to.include('$1');
expect(logSql).to.include('$2');
expect(logSql).to.not.include('$3');
}
});
});
it('binds named parameters with the passed object having a null property', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
return this.sequelize.query(`select $one${typeCast} as foo, $two${typeCast} as bar`, { raw: true, bind: { one: 1, two: null } }).then(result => {
expect(result[0]).to.deep.equal([{ foo: 1, bar: null }]);
});
});
it('binds named parameters array handles escaped $$', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
let logSql;
return this.sequelize.query(`select $1${typeCast} as foo, '$$ / $$1' as bar`, { raw: true, bind: [1], logging(s) { logSql = s;} }).then(result => {
expect(result[0]).to.deep.equal([{ foo: 1, bar: '$ / $1' }]);
if (dialect === 'postgres' || dialect === 'sqlite') {
expect(logSql).to.include('$1');
}
});
});
it('binds named parameters object handles escaped $$', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
return this.sequelize.query(`select $one${typeCast} as foo, '$$ / $$one' as bar`, { raw: true, bind: { one: 1 } }).then(result => {
expect(result[0]).to.deep.equal([{ foo: 1, bar: '$ / $one' }]);
});
});
if (dialect === 'postgres' || dialect === 'sqlite' || dialect === 'mssql') {
it('does not improperly escape arrays of strings bound to named parameters', function() {
return this.sequelize.query('select :stringArray as foo', { raw: true, replacements: { stringArray: ['"string"'] } }).then(result => {
expect(result[0]).to.deep.equal([{ foo: '"string"' }]);
});
});
}
it('reject when binds passed with object and numeric $1 is also present', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
return this.sequelize.query(`select $one${typeCast} as foo, $two${typeCast} as bar, '$1' as baz`, { raw: true, bind: { one: 1, two: 2 } })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject when binds passed as array and $alpha is also present', function() {
const typeCast = dialect === 'postgres' ? '::int' : '';
return this.sequelize.query(`select $1${typeCast} as foo, $2${typeCast} as bar, '$foo' as baz`, { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject when bind key is $0 with the passed array', function() {
return this.sequelize.query('select $1 as foo, $0 as bar, $3 as baz', { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject when bind key is $01 with the passed array', function() {
return this.sequelize.query('select $1 as foo, $01 as bar, $3 as baz', { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject when bind key is missing in the passed array', function() {
return this.sequelize.query('select $1 as foo, $2 as bar, $3 as baz', { raw: true, bind: [1, 2] })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject when bind key is missing in the passed object', function() {
return this.sequelize.query('select $one as foo, $two as bar, $three as baz', { raw: true, bind: { one: 1, two: 2 } })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject with the passed number for bind', function() {
return this.sequelize.query('select $one as foo, $two as bar', { raw: true, bind: 2 })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject with the passed empty object for bind', function() {
return this.sequelize.query('select $one as foo, $two as bar', { raw: true, bind: {} })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject with the passed string for bind', function() {
return this.sequelize.query('select $one as foo, $two as bar', { raw: true, bind: 'foobar' })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('reject with the passed date for bind', function() {
return this.sequelize.query('select $one as foo, $two as bar', { raw: true, bind: new Date() })
.should.be.rejectedWith(Error, /Named bind parameter "\$\w+" has no value in the given object\./g);
});
it('handles AS in conjunction with functions just fine', function() {
let datetime = dialect === 'sqlite' ? 'date(\'now\')' : 'NOW()';
if (dialect === 'mssql') {
datetime = 'GETDATE()';
}
return this.sequelize.query(`SELECT ${datetime} AS t`).then(([result]) => {
expect(moment(result[0].t).isValid()).to.be.true;
});
});
if (Support.getTestDialect() === 'postgres') {
it('replaces named parameters with the passed object and ignores casts', function() {
return expect(this.sequelize.query('select :one as foo, :two as bar, \'1000\'::integer as baz', { raw: true, replacements: { one: 1, two: 2 } }).then(obj => obj[0]))
.to.eventually.deep.equal([{ foo: 1, bar: 2, baz: 1000 }]);
});
it('supports WITH queries', function() {
return expect(this.sequelize.query('WITH RECURSIVE t(n) AS ( VALUES (1) UNION ALL SELECT n+1 FROM t WHERE n < 100) SELECT sum(n) FROM t').then(obj => obj[0]))
.to.eventually.deep.equal([{ 'sum': '5050' }]);
});
}
if (Support.getTestDialect() === 'sqlite') {
it('binds array parameters for upsert are replaced. $$ unescapes only once', function() {
let logSql;
return this.sequelize.query('select $1 as foo, $2 as bar, \'$$$$\' as baz', { type: this.sequelize.QueryTypes.UPSERT, bind: [1, 2], logging(s) { logSql = s; } }).then(() => {
// sqlite.exec does not return a result
expect(logSql).to.not.include('$one');
expect(logSql).to.include('\'$$\'');
});
});
it('binds named parameters for upsert are replaced. $$ unescapes only once', function() {
let logSql;
return this.sequelize.query('select $one as foo, $two as bar, \'$$$$\' as baz', { type: this.sequelize.QueryTypes.UPSERT, bind: { one: 1, two: 2 }, logging(s) { logSql = s; } }).then(() => {
// sqlite.exec does not return a result
expect(logSql).to.not.include('$one');
expect(logSql).to.include('\'$$\'');
});
});
}
});
describe('set', () => {
it('should be configurable with global functions', function() {
const defaultSetterMethod = sinon.spy(),
overrideSetterMethod = sinon.spy(),
defaultGetterMethod = sinon.spy(),
overrideGetterMethod = sinon.spy(),
customSetterMethod = sinon.spy(),
customOverrideSetterMethod = sinon.spy(),
customGetterMethod = sinon.spy(),
customOverrideGetterMethod = sinon.spy();
this.sequelize.options.define = {
'setterMethods': {
'default': defaultSetterMethod,
'override': overrideSetterMethod
},
'getterMethods': {
'default': defaultGetterMethod,
'override': overrideGetterMethod
}
};
const testEntity = this.sequelize.define('TestEntity', {}, {
'setterMethods': {
'custom': customSetterMethod,
'override': customOverrideSetterMethod
},
'getterMethods': {
'custom': customGetterMethod,
'override': customOverrideGetterMethod
}
});
// Create Instance to test
const instance = testEntity.build();
// Call Getters
instance.default;
instance.custom;
instance.override;
expect(defaultGetterMethod).to.have.been.calledOnce;
expect(customGetterMethod).to.have.been.calledOnce;
expect(overrideGetterMethod.callCount).to.be.eql(0);
expect(customOverrideGetterMethod).to.have.been.calledOnce;
// Call Setters
instance.default = 'test';
instance.custom = 'test';
instance.override = 'test';
expect(defaultSetterMethod).to.have.been.calledOnce;
expect(customSetterMethod).to.have.been.calledOnce;
expect(overrideSetterMethod.callCount).to.be.eql(0);
expect(customOverrideSetterMethod).to.have.been.calledOnce;
});
});
if (dialect === 'mysql') {
describe('set', () => {
it("should return an promised error if transaction isn't defined", async function() {
await expect(this.sequelize.set({ foo: 'bar' }))
.to.be.rejectedWith(TypeError, 'options.transaction is required');
});
it('one value', function() {
return this.sequelize.transaction().then(t => {
this.t = t;
return this.sequelize.set({ foo: 'bar' }, { transaction: t });
}).then(() => {
return this.sequelize.query('SELECT @foo as `foo`', { plain: true, transaction: this.t });
}).then(data => {
expect(data).to.be.ok;
expect(data.foo).to.be.equal('bar');
return this.t.commit();
});
});
it('multiple values', function() {
return this.sequelize.transaction().then(t => {
this.t = t;
return this.sequelize.set({
foo: 'bar',
foos: 'bars'
}, { transaction: t });
}).then(() => {
return this.sequelize.query('SELECT @foo as `foo`, @foos as `foos`', { plain: true, transaction: this.t });
}).then(data => {
expect(data).to.be.ok;
expect(data.foo).to.be.equal('bar');
expect(data.foos).to.be.equal('bars');
return this.t.commit();
});
});
});
}
describe('define', () => {
it('adds a new dao to the dao manager', function() {
const count = this.sequelize.modelManager.all.length;
this.sequelize.define('foo', { title: DataTypes.STRING });
expect(this.sequelize.modelManager.all.length).to.equal(count + 1);
});
it('adds a new dao to sequelize.models', function() {
expect(this.sequelize.models.bar).to.equal(undefined);
const Bar = this.sequelize.define('bar', { title: DataTypes.STRING });
expect(this.sequelize.models.bar).to.equal(Bar);
});
it('overwrites global options', () => {
const sequelize = Support.createSequelizeInstance({ define: { collate: 'utf8_general_ci' } });
const DAO = sequelize.define('foo', { bar: DataTypes.STRING }, { collate: 'utf8_bin' });
expect(DAO.options.collate).to.equal('utf8_bin');
});
it('overwrites global rowFormat options', () => {
const sequelize = Support.createSequelizeInstance({ define: { rowFormat: 'compact' } });
const DAO = sequelize.define('foo', { bar: DataTypes.STRING }, { rowFormat: 'default' });
expect(DAO.options.rowFormat).to.equal('default');
});
it('inherits global collate option', () => {
const sequelize = Support.createSequelizeInstance({ define: { collate: 'utf8_general_ci' } });
const DAO = sequelize.define('foo', { bar: DataTypes.STRING });
expect(DAO.options.collate).to.equal('utf8_general_ci');
});
it('inherits global rowFormat option', () => {
const sequelize = Support.createSequelizeInstance({ define: { rowFormat: 'default' } });
const DAO = sequelize.define('foo', { bar: DataTypes.STRING });
expect(DAO.options.rowFormat).to.equal('default');
});
it('uses the passed tableName', function() {
const Photo = this.sequelize.define('Foto', { name: DataTypes.STRING }, { tableName: 'photos' });
return Photo.sync({ force: true }).then(() => {
return this.sequelize.getQueryInterface().showAllTables().then(tableNames => {
if (dialect === 'mssql' || dialect === 'mariadb') {
tableNames = tableNames.map(v => v.tableName);
}
expect(tableNames).to.include('photos');
});
});
});
});
describe('truncate', () => {
it('truncates all models', function() {
const Project = this.sequelize.define(`project${config.rand()}`, {
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
title: DataTypes.STRING
});
return this.sequelize.sync({ force: true }).then(() => {
return Project.create({ title: 'bla' });
}).then(project => {
expect(project).to.exist;
expect(project.title).to.equal('bla');
expect(project.id).to.equal(1);
return this.sequelize.truncate().then(() => {
return Project.findAll({});
});
}).then(projects => {
expect(projects).to.exist;
expect(projects).to.have.length(0);
});
});
});
describe('sync', () => {
it('synchronizes all models', function() {
const Project = this.sequelize.define(`project${config.rand()}`, { title: DataTypes.STRING });
const Task = this.sequelize.define(`task${config.rand()}`, { title: DataTypes.STRING });
return Project.sync({ force: true }).then(() => {
return Task.sync({ force: true }).then(() => {
return Project.create({ title: 'bla' }).then(() => {
return Task.create({ title: 'bla' }).then(task => {
expect(task).to.exist;
expect(task.title).to.equal('bla');
});
});
});
});
});
it('works with correct database credentials', function() {
const User = this.sequelize.define('User', { username: DataTypes.STRING });
return User.sync().then(() => {
expect(true).to.be.true;
});
});
it('fails with incorrect match condition', function() {
const sequelize = new Sequelize('cyber_bird', 'user', 'pass', {
dialect: this.sequelize.options.dialect
});
sequelize.define('Project', { title: Sequelize.STRING });
sequelize.define('Task', { title: Sequelize.STRING });
return expect(sequelize.sync({ force: true, match: /$phoenix/ }))
.to.be.rejectedWith('Database "cyber_bird" does not match sync match parameter "/$phoenix/"');
});
if (dialect !== 'sqlite') {
it('fails for incorrect connection even when no models are defined', function() {
const sequelize = new Sequelize('cyber_bird', 'user', 'pass', {
dialect: this.sequelize.options.dialect
});
return expect(sequelize.sync({ force: true })).to.be.rejected;
});
it('fails with incorrect database credentials (1)', function() {
this.sequelizeWithInvalidCredentials = new Sequelize('omg', 'bar', null, _.omit(this.sequelize.options, ['host']));
const User2 = this.sequelizeWithInvalidCredentials.define('User', { name: DataTypes.STRING, bio: DataTypes.TEXT });
return User2.sync()
.then(() => { expect.fail(); })
.catch(err => {
if (dialect === 'postgres' || dialect === 'postgres-native') {
assert([
'fe_sendauth: no password supplied',
'role "bar" does not exist',
'FATAL: role "bar" does not exist',
'password authentication failed for user "bar"'
].includes(err.message.trim()));
} else if (dialect === 'mssql') {
expect(err.message).to.equal('Login failed for user \'bar\'.');
} else {
expect(err.message.toString()).to.match(/.*Access denied.*/);
}
});
});
it('fails with incorrect database credentials (2)', function() {
const sequelize = new Sequelize('db', 'user', 'pass', {
dialect: this.sequelize.options.dialect
});
sequelize.define('Project', { title: Sequelize.STRING });
sequelize.define('Task', { title: Sequelize.STRING });
return expect(sequelize.sync({ force: true })).to.be.rejected;
});
it('fails with incorrect database credentials (3)', function() {
const sequelize = new Sequelize('db', 'user', 'pass', {
dialect: this.sequelize.options.dialect,
port: 99999
});
sequelize.define('Project', { title: Sequelize.STRING });
sequelize.define('Task', { title: Sequelize.STRING });
return expect(sequelize.sync({ force: true })).to.be.rejected;
});
it('fails with incorrect database credentials (4)', function() {
const sequelize = new Sequelize('db', 'user', 'pass', {
dialect: this.sequelize.options.dialect,
port: 99999,
pool: {}
});
sequelize.define('Project', { title: Sequelize.STRING });
sequelize.define('Task', { title: Sequelize.STRING });
return expect(sequelize.sync({ force: true })).to.be.rejected;
});
it('returns an error correctly if unable to sync a foreign key referenced model', function() {
this.sequelize.define('Application', {
authorID: {
type: Sequelize.BIGINT,
allowNull: false,
references: {
model: 'User',
key: 'id'
}
}
});
return expect(this.sequelize.sync()).to.be.rejected;
});
it('handles this dependant foreign key constraints', function() {
const block = this.sequelize.define('block', {
id: { type: DataTypes.INTEGER, primaryKey: true },
name: DataTypes.STRING
}, {
tableName: 'block',
timestamps: false,
paranoid: false
});
block.hasMany(block, {
as: 'childBlocks',
foreignKey: 'parent',
joinTableName: 'link_block_block',
useJunctionTable: true,
foreignKeyConstraint: true
});
block.belongsTo(block, {
as: 'parentBlocks',
foreignKey: 'child',
joinTableName: 'link_block_block',
useJunctionTable: true,
foreignKeyConstraint: true
});
return this.sequelize.sync();
});
}
it('return the sequelize instance after syncing', function() {
return this.sequelize.sync().then(sequelize => {
expect(sequelize).to.deep.equal(this.sequelize);
});
});
it('return the single dao after syncing', function() {
const block = this.sequelize.define('block', {
id: { type: DataTypes.INTEGER, primaryKey: true },
name: DataTypes.STRING
}, {
tableName: 'block',
timestamps: false,
paranoid: false
});
return block.sync().then(result => {
expect(result).to.deep.equal(block);
});
});
it('handles alter: true with underscore correctly', function() {
this.sequelize.define('access_metric', {
user_id: {
type: DataTypes.INTEGER
}
}, {
underscored: true
});
return this.sequelize.sync({
alter: true
});
});
describe("doesn't emit logging when explicitly saying not to", () => {
afterEach(function() {
this.sequelize.options.logging = false;
});
beforeEach(function() {
this.spy = sinon.spy();
this.sequelize.options.logging = () => { this.spy(); };
this.User = this.sequelize.define('UserTest', { username: DataTypes.STRING });
});
it('through Sequelize.sync()', function() {
this.spy.resetHistory();
return this.sequelize.sync({ force: true, logging: false }).then(() => {
expect(this.spy.notCalled).to.be.true;
});
});
it('through DAOFactory.sync()', function() {
this.spy.resetHistory();
return this.User.sync({ force: true, logging: false }).then(() => {
expect(this.spy.notCalled).to.be.true;
});
});
});
describe('match', () => {
it('will return an error not matching', function() {
expect(
this.sequelize.sync({
force: true,
match: /alibabaizshaek/
})
).to.be.rejected;
});
});
});
describe('drop should work', () => {
it('correctly succeeds', function() {
const User = this.sequelize.define('Users', { username: DataTypes.STRING });
return User.sync({ force: true }).then(() => {
return User.drop();
});
});
});
describe('define', () => {
it('raises an error if no values are defined', function() {
expect(() => {
this.sequelize.define('omnomnom', {
bla: { type: DataTypes.ARRAY }
});
}).to.throw(Error, 'ARRAY is missing type definition for its values.');
});
});
describe('define', () => {
[
{ type: DataTypes.ENUM, values: ['scheduled', 'active', 'finished'] },
DataTypes.ENUM('scheduled', 'active', 'finished')
].forEach(status => {
describe('enum', () => {
beforeEach(function() {
this.sequelize = Support.createSequelizeInstance({
typeValidation: true
});
this.Review = this.sequelize.define('review', { status });
return this.Review.sync({ force: true });
});
it('raises an error if no values are defined', function() {
expect(() => {
this.sequelize.define('omnomnom', {
bla: { type: DataTypes.ENUM }
});
}).to.throw(Error, 'Values for ENUM have not been defined.');
});
it('correctly stores values', function() {
return this.Review.create({ status: 'active' }).then(review => {
expect(review.status).to.equal('active');
});
});
it('correctly loads values', function() {
return this.Review.create({ status: 'active' }).then(() => {
return this.Review.findAll().then(reviews => {
expect(reviews[0].status).to.equal('active');
});
});
});
it("doesn't save an instance if value is not in the range of enums", function() {
return this.Review.create({ status: 'fnord' }).catch(err => {
expect(err).to.be.instanceOf(Error);
expect(err.message).to.equal('"fnord" is not a valid choice in ["scheduled","active","finished"]');
});
});
});
});
describe('table', () => {
[
{ id: { type: DataTypes.BIGINT, primaryKey: true } },
{ id: { type: DataTypes.STRING, allowNull: true, primaryKey: true } },
{ id: { type: DataTypes.BIGINT, allowNull: false, primaryKey: true, autoIncrement: true } }
].forEach(customAttributes => {
it('should be able to override options on the default attributes', function() {
const Picture = this.sequelize.define('picture', _.cloneDeep(customAttributes));
return Picture.sync({ force: true }).then(() => {
Object.keys(customAttributes).forEach(attribute => {
Object.keys(customAttributes[attribute]).forEach(option => {
const optionValue = customAttributes[attribute][option];
if (typeof optionValue === 'function' && optionValue() instanceof DataTypes.ABSTRACT) {
expect(Picture.rawAttributes[attribute][option] instanceof optionValue).to.be.ok;
} else {
expect(Picture.rawAttributes[attribute][option]).to.be.equal(optionValue);
}
});
});
});
});
});
});
if (current.dialect.supports.transactions) {
describe('transaction', () => {
beforeEach(function() {
return Support.prepareTransactionTest(this.sequelize).then(sequelize => {
this.sequelizeWithTransaction = sequelize;
});
});
it('is a transaction method available', () => {
expect(Support.Sequelize).to.respondTo('transaction');
});
it('passes a transaction object to the callback', function() {
return this.sequelizeWithTransaction.transaction().then(t => {
expect(t).to.be.instanceOf(Transaction);
});
});
it('allows me to define a callback on the result', function() {
return this.sequelizeWithTransaction.transaction().then(t => {
return t.commit();
});
});
if (dialect === 'sqlite') {
it('correctly scopes transaction from other connections', function() {
const TransactionTest = this.sequelizeWithTransaction.define('TransactionTest', { name: DataTypes.STRING }, { timestamps: false });
const count = transaction => {
const sql = this.sequelizeWithTransaction.getQueryInterface().QueryGenerator.selectQuery('TransactionTests', { attributes: [['count(*)', 'cnt']] });
return this.sequelizeWithTransaction.query(sql, { plain: true, transaction }).then(result => {
return result.cnt;
});
};
return TransactionTest.sync({ force: true }).then(() => {
return this.sequelizeWithTransaction.transaction();
}).then(t1 => {
this.t1 = t1;
return this.sequelizeWithTransaction.query(`INSERT INTO ${qq('TransactionTests')} (${qq('name')}) VALUES ('foo');`, { transaction: t1 });
}).then(() => {
return expect(count()).to.eventually.equal(0);
}).then(() => {
return expect(count(this.t1)).to.eventually.equal(1);
}).then(() => {
return this.t1.commit();
}).then(() => {
return expect(count()).to.eventually.equal(1);
});
});
} else {
it('correctly handles multiple transactions', function() {
const TransactionTest = this.sequelizeWithTransaction.define('TransactionTest', { name: DataTypes.STRING }, { timestamps: false });
const aliasesMapping = new Map([['_0', 'cnt']]);
const count = transaction => {
const sql = this.sequelizeWithTransaction.getQueryInterface().QueryGenerator.selectQuery('TransactionTests', { attributes: [['count(*)', 'cnt']] });
return this.sequelizeWithTransaction.query(sql, { plain: true, transaction, aliasesMapping }).then(result => {
return parseInt(result.cnt, 10);
});
};
return TransactionTest.sync({ force: true }).then(() => {
return this.sequelizeWithTransaction.transaction();
}).then(t1 => {
this.t1 = t1;
return this.sequelizeWithTransaction.query(`INSERT INTO ${qq('TransactionTests')} (${qq('name')}) VALUES ('foo');`, { transaction: t1 });
}).then(() => {
return this.sequelizeWithTransaction.transaction();
}).then(t2 => {
this.t2 = t2;
return this.sequelizeWithTransaction.query(`INSERT INTO ${qq('TransactionTests')} (${qq('name')}) VALUES ('bar');`, { transaction: t2 });
}).then(() => {
return expect(count()).to.eventually.equal(0);
}).then(() => {
return expect(count(this.t1)).to.eventually.equal(1);
}).then(() => {
return expect(count(this.t2)).to.eventually.equal(1);
}).then(() => {
return this.t2.rollback();
}).then(() => {
return expect(count()).to.eventually.equal(0);
}).then(() => {
return this.t1.commit();
}).then(() => {
return expect(count()).to.eventually.equal(1);
});
});
}
it('supports nested transactions using savepoints', function() {
const User = this.sequelizeWithTransaction.define('Users', { username: DataTypes.STRING });
return User.sync({ force: true }).then(() => {
return this.sequelizeWithTransaction.transaction().then(t1 => {
return User.create({ username: 'foo' }, { transaction: t1 }).then(user => {
return this.sequelizeWithTransaction.transaction({ transaction: t1 }).then(t2 => {
return user.update({ username: 'bar' }, { transaction: t2 }).then(() => {
return t2.commit().then(() => {
return user.reload({ transaction: t1 }).then(newUser => {
expect(newUser.username).to.equal('bar');
return t1.commit();
});
});
});
});
});
});
});
});
describe('supports rolling back to savepoints', () => {
beforeEach(function() {
this.User = this.sequelizeWithTransaction.define('user', {});
return this.sequelizeWithTransaction.sync({ force: true });
});
it('rolls back to the first savepoint, undoing everything', function() {
return this.sequelizeWithTransaction.transaction().then(transaction => {
this.transaction = transaction;
return this.sequelizeWithTransaction.transaction({ transaction });
}).then(sp1 => {
this.sp1 = sp1;
return this.User.create({}, { transaction: this.transaction });
}).then(() => {
return this.sequelizeWithTransaction.transaction({ transaction: this.transaction });
}).then(sp2 => {
this.sp2 = sp2;
return this.User.create({}, { transaction: this.transaction });
}).then(() => {
return this.User.findAll({ transaction: this.transaction });
}).then(users => {
expect(users).to.have.length(2);
return this.sp1.rollback();
}).then(() => {
return this.User.findAll({ transaction: this.transaction });
}).then(users => {
expect(users).to.have.length(0);
return this.transaction.rollback();
});
});
it('rolls back to the most recent savepoint, only undoing recent changes', function() {
return this.sequelizeWithTransaction.transaction().then(transaction => {
this.transaction = transaction;
return this.sequelizeWithTransaction.transaction({ transaction });
}).then(sp1 => {
this.sp1 = sp1;
return this.User.create({}, { transaction: this.transaction });
}).then(() => {
return this.sequelizeWithTransaction.transaction({ transaction: this.transaction });
}).then(sp2 => {
this.sp2 = sp2;
return this.User.create({}, { transaction: this.transaction });
}).then(() => {
return this.User.findAll({ transaction: this.transaction });
}).then(users => {
expect(users).to.have.length(2);
return this.sp2.rollback();
}).then(() => {
return this.User.findAll({ transaction: this.transaction });
}).then(users => {
expect(users).to.have.length(1);
return this.transaction.rollback();
});
});
});
it('supports rolling back a nested transaction', function() {
const User = this.sequelizeWithTransaction.define('Users', { username: DataTypes.STRING });
return User.sync({ force: true }).then(() => {
return this.sequelizeWithTransaction.transaction().then(t1 => {
return User.create({ username: 'foo' }, { transaction: t1 }).then(user => {
return this.sequelizeWithTransaction.transaction({ transaction: t1 }).then(t2 => {
return user.update({ username: 'bar' }, { transaction: t2 }).then(() => {
return t2.rollback().then(() => {
return user.reload({ transaction: t1 }).then(newUser => {
expect(newUser.username).to.equal('foo');
return t1.commit();
});
});
});
});
});
});
});
});
it('supports rolling back outermost transaction', function() {
const User = this.sequelizeWithTransaction.define('Users', { username: DataTypes.STRING });
return User.sync({ force: true }).then(() => {
return this.sequelizeWithTransaction.transaction().then(t1 => {
return User.create({ username: 'foo' }, { transaction: t1 }).then(user => {
return this.sequelizeWithTransaction.transaction({ transaction: t1 }).then(t2 => {
return user.update({ username: 'bar' }, { transaction: t2 }).then(() => {
return t1.rollback().then(() => {
return User.findAll().then(users => {
expect(users.length).to.equal(0);
});
});
});
});
});
});
});
});
});
}
});
describe('databaseVersion', () => {
it('should database/dialect version', function() {
return this.sequelize.databaseVersion().then(version => {
expect(typeof version).to.equal('string');
expect(version).to.be.ok;
});
});
});
describe('paranoid deletedAt non-null default value', () => {
it('should use defaultValue of deletedAt in paranoid clause and restore', function() {
const epochObj = new Date(0),
epoch = Number(epochObj);
const User = this.sequelize.define('user', {
username: DataTypes.STRING,
deletedAt: {
type: DataTypes.DATE,
defaultValue: epochObj
}
}, {
paranoid: true
});
return this.sequelize.sync({ force: true }).then(() => {
return User.create({ username: 'user1' }).then(user => {
expect(Number(user.deletedAt)).to.equal(epoch);
return User.findOne({
where: {
username: 'user1'
}
}).then(user => {
expect(user).to.exist;
expect(Number(user.deletedAt)).to.equal(epoch);
return user.destroy();
}).then(destroyedUser => {
expect(destroyedUser.deletedAt).to.exist;
expect(Number(destroyedUser.deletedAt)).not.to.equal(epoch);
return User.findByPk(destroyedUser.id, { paranoid: false });
}).then(fetchedDestroyedUser => {
expect(fetchedDestroyedUser.deletedAt).to.exist;
expect(Number(fetchedDestroyedUser.deletedAt)).not.to.equal(epoch);
return fetchedDestroyedUser.restore();
}).then(restoredUser => {
expect(Number(restoredUser.deletedAt)).to.equal(epoch);
return User.destroy({ where: {
username: 'user1'
} });
}).then(() => {
return User.count();
}).then(count => {
expect(count).to.equal(0);
return User.restore();
}).then(() => {
return User.findAll();
}).then(nonDeletedUsers => {
expect(nonDeletedUsers.length).to.equal(1);
nonDeletedUsers.forEach(u => {
expect(Number(u.deletedAt)).to.equal(epoch);
});
});
});
});
});
});
});