forked from TimelordUK/node-sqlserver-v8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-support.js
452 lines (398 loc) · 12.5 KB
/
demo-support.js
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
'use strict'
const fs = require('fs')
const path = require('path')
const assert = require('assert')
const GlobalConn = (() => {
const connStr = 'set global connection here'
function getSqlLocalDbPipe (done) {
const childProcess = require('child_process')
const oldSpawn = childProcess.spawn
function mySpawn () {
// console.log('spawn called');
// console.log(arguments);
return oldSpawn.apply(this, arguments)
}
childProcess.spawn = mySpawn
const extract = a => {
a = a.trim()
const idx = a.indexOf('np:')
if (idx > 0) {
a = a.substr(idx)
}
return a
}
const child = childProcess.spawn('sqllocaldb', ['info', 'node'])
child.stdout.on('data', data => {
const str = data.toString()
const arr = str.split('\r')
arr.forEach(a => {
const idx = a.indexOf('np:')
if (idx > 0) {
const pipe = extract(a)
setImmediate(() => {
done(pipe)
})
}
})
// Here is where the output goes
})
child.stderr.on('data', data => {
console.log('stderr: ' + data)
// Here is where the error output goes
})
child.on('close', () => {
// console.log('closing code: ' + code);
// Here you can get the exit code of the script
})
child.on('error', code => {
console.log('closing code: ' + code)
process.exit()
// Here you can get the exit code of the script
})
}
const driver = 'SQL Server Native Client 11.0'
const database = 'scratch'
function getLocalConnStr (done) {
getSqlLocalDbPipe(pipe => {
const conn = `Driver={${driver}}; Server=${pipe}; Database={${database}}; Trusted_Connection=Yes;`
done(conn)
})
}
function init (sql, done, candidateConnStr) {
const ds = new DemoSupport()
if (!candidateConnStr) {
getLocalConnStr(cs => {
const ret = {
driver,
database,
conn_str: cs,
support: new DemoSupport(sql, cs),
async: new ds.Async(),
helper: new ds.EmployeeHelper(sql, cs)
}
done(ret)
})
} else {
const ret = {
driver,
database,
conn_str: candidateConnStr,
support: new DemoSupport(sql, candidateConnStr),
async: new ds.Async(),
helper: new ds.EmployeeHelper(sql, candidateConnStr)
}
done(ret)
}
}
function getConnStr () {
return connStr
}
return {
init,
getConnStr
}
})()
function DemoSupport (native) {
const sql = native
function Assert () {
function ifError (err) {
if (err) {
console.log('error whilst executing msnodelsqlv8 demo - error is ' + err)
process.exit()
}
}
function check (test, err) {
if (!test) {
console.log('check condition fails in msnodelsqlv8 demo - error is ' + err)
process.exit()
}
}
this.ifError = ifError
this.check = check
}
function Async () {
function series (suite, done) {
let i = 0
next()
function next () {
const fn = suite[i]
fn(function () {
iterate()
})
}
function iterate () {
++i
if (i === suite.length) {
done()
} else next()
}
}
this.series = series
}
function ProcedureHelper (conn) {
const connStr = conn
const async = new Async()
const assert = new Assert()
let verbose = true
function createProcedureIfNotExist (procedureName, doneFunction) {
let createSql = `IF NOT EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND name = '${procedureName}')`
createSql += ` EXEC ('CREATE PROCEDURE ${procedureName} AS BEGIN SET nocount ON; END')`
if (verbose) console.log(createSql)
sql.query(connStr, createSql, (e) => {
doneFunction(e)
})
}
function createProcedure (procedureName, procedureSql, doneFunction) {
procedureSql = procedureSql.replace(/<name>/g, procedureName)
const sequence = [
asyncDone => {
let createSql = `IF NOT EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND name = '${procedureName}')`
createSql += ` EXEC ('CREATE PROCEDURE ${procedureName} AS BEGIN SET nocount ON; END')`
if (verbose) console.log(createSql)
sql.query(connStr, createSql, () => {
asyncDone()
})
},
asyncDone => {
sql.query(connStr, procedureSql,
function (e) {
assert.ifError(e, 'Error creating procedure.')
asyncDone()
})
}
]
async.series(sequence,
() => {
doneFunction()
})
}
function setVerbose (v) {
verbose = v
}
this.createProcedureIfNotExist = createProcedureIfNotExist
this.createProcedure = createProcedure
this.setVerbose = setVerbose
}
function EmployeeHelper (native, cstr) {
const connStr = cstr
const sql = native
let verbose = true
function setVerbose (v) {
verbose = v
}
function extractKey (parsedJSON, key) {
const keys = []
parsedJSON.forEach(emp => {
const obj = {}
obj[key] = emp[key]
keys.push(obj)
})
return keys
}
async function bindInsert (connection, tableName) {
tableName = tableName || 'employee'
const parsedJSON = getJSON()
const keys = extractKey(parsedJSON, 'BusinessEntityID')
const bulkMgr = await connection.promises.getTable(tableName)
await bulkMgr.promises.insert(parsedJSON)
const results = await bulkMgr.promises.select(keys)
assert(results.length === parsedJSON.length)
assert.deepStrictEqual(results, parsedJSON, 'results didn\'t match')
return {
bulkMgr,
parsedJSON
}
}
function dropCreateTable (params, doneFunction) {
const async = new Async()
const tableName = params.tableName
const rootPath = params.rootPath || '../../test'
const columnName = params.columnName || 'col1'
const type = params.type
const theConnection = params.theConnection
let insert = false
if (Object.prototype.hasOwnProperty.call(params, 'insert')) {
insert = params.insert
}
const assert = new Assert()
let conn
function readFile (f, done) {
if (verbose) console.log('reading ' + f)
fs.readFile(f, 'utf8', (err, data) => {
if (err) {
done(err)
} else {
done(data)
}
})
}
const sequence = [
function (asyncDone) {
if (theConnection) {
conn = theConnection
asyncDone()
} else {
sql.open(connStr, function (err, newConn) {
assert.ifError(err)
conn = newConn
asyncDone()
})
}
},
function (asyncDone) {
const dropSql = 'DROP TABLE ' + tableName
if (verbose) console.log(dropSql)
conn.query(dropSql, function () {
asyncDone()
})
},
function (asyncDone) {
const folder = path.join(__dirname, rootPath)
let fileName = tableName
if (fileName.charAt(0) === '#') {
fileName = fileName.substr(1)
}
if (fileName.charAt(0) === '#') {
fileName = fileName.substr(1)
}
let file = folder + '/sql/' + fileName
file += '.sql'
function inChunks (arr, callback) {
let i = 0
if (verbose) console.log(arr[i])
conn.query(arr[i], next)
function next (err, res) {
assert.ifError(err)
assert.check(res.length === 0)
++i
if (i < arr.length) {
if (verbose) console.log(arr[i])
conn.query(arr[i], (err, res) => {
next(err, res)
})
} else {
callback()
}
}
}
// submit the SQL one chunk at a time to create table with constraints.
readFile(file, createSql => {
createSql = createSql.replace(/<name>/g, tableName)
createSql = createSql.replace(/<type>/g, type)
createSql = createSql.replace(/<col_name>/g, columnName)
const arr = createSql.split('GO')
for (let i = 0; i < arr.length; ++i) {
const s = arr[i].replace(/^\s+|\s+$/g, '')
if (s === '') continue
arr[i] = s
}
while (arr[arr.length - 1] === '') {
arr.pop()
}
inChunks(arr, () => {
asyncDone()
})
})
},
asyncDone => {
if (!insert) {
asyncDone()
}
},
asyncDone => {
if (theConnection) {
asyncDone()
} else {
conn.close(() => {
asyncDone()
})
}
}
]
async.series(sequence,
() => {
doneFunction()
})
}
function compareEmployee (res, parsedJSON) {
assert.strictEqual(res.length, parsedJSON.length)
for (let i = 0; i < res.length; ++i) {
const lhs = res[i]
const rhs = parsedJSON[i]
rhs.ModifiedDate.nanosecondsDelta = 0
rhs.BirthDate.nanosecondsDelta = 0
rhs.HireDate.nanosecondsDelta = 0
assert.strictEqual(lhs.BusinessEntityID, rhs.BusinessEntityID)
assert.strictEqual(lhs.NationalIDNumber, rhs.NationalIDNumber)
assert.strictEqual(lhs.LoginID, rhs.LoginID)
assert.strictEqual(lhs.OrganizationNode.length, rhs.OrganizationNode.length)
for (let j = 0; i < lhs.OrganizationNode.length; ++j) {
assert.strictEqual(lhs.OrganizationNode[j], rhs.OrganizationNode[j])
}
assert.strictEqual(lhs.OrganizationLevel, rhs.OrganizationLevel)
assert.strictEqual(lhs.JobTitle, rhs.JobTitle)
assert.strictEqual(lhs.MaritalStatus, rhs.MaritalStatus)
assert.strictEqual(lhs.Gender, rhs.Gender)
assert.strictEqual(lhs.SalariedFlag, rhs.SalariedFlag)
assert.strictEqual(lhs.VacationHours, rhs.VacationHours)
assert.strictEqual(lhs.SickLeaveHours, rhs.SickLeaveHours)
assert.strictEqual(lhs.CurrentFlag, rhs.CurrentFlag)
assert.deepStrictEqual(lhs.ModifiedDate, rhs.ModifiedDate)
assert.deepStrictEqual(lhs.BirthDate, rhs.BirthDate)
assert.deepStrictEqual(lhs.HireDate, rhs.HireDate)
assert.strictEqual(lhs.rowguid, rhs.rowguid)
}
}
function cloneEmployee (src) {
return {
BusinessEntityID: src.BusinessEntityID,
NationalIDNumber: src.NationalIDNumber,
LoginID: src.LoginID,
OrganizationNode: src.OrganizationNode.length === 0 ? Buffer.from('58', 'hex') : src.OrganizationNode,
OrganizationLevel: src.OrganizationLevel === 0 ? 1 : src.OrganizationLevel,
JobTitle: src.JobTitle,
BirthDate: src.BirthDate,
MaritalStatus: src.MaritalStatus,
Gender: src.Gender,
HireDate: src.HireDate,
SalariedFlag: src.SalariedFlag,
VacationHours: src.VacationHours,
SickLeaveHours: src.SickLeaveHours,
CurrentFlag: src.CurrentFlag,
rowguid: src.rowguid,
ModifiedDate: src.ModifiedDate
}
}
function getJSON (stem) {
const p = stem || '../../test/env/json'
const folder = path.join(__dirname, p)
const fs = require('fs')
const parsedJSON = JSON.parse(fs.readFileSync(folder + '/employee.json', 'utf8'))
for (let i = 0; i < parsedJSON.length; ++i) {
const rec = parsedJSON[i]
rec.OrganizationNode = Buffer.from(rec.OrganizationNode.data, 'utf8')
rec.BirthDate = new Date(rec.BirthDate)
rec.BirthDate.nanosecondsDelta = 0
rec.HireDate = new Date(rec.HireDate)
rec.HireDate.nanosecondsDelta = 0
rec.ModifiedDate = new Date(rec.ModifiedDate)
rec.ModifiedDate.nanosecondsDelta = 0
}
return parsedJSON
}
this.bindInsert = bindInsert
this.compareEmployee = compareEmployee
this.getJSON = getJSON
this.dropCreateTable = dropCreateTable
this.extractKey = extractKey
this.setVerbose = setVerbose
this.cloneEmployee = cloneEmployee
return this
}
this.Async = Async
this.Assert = Assert
this.EmployeeHelper = EmployeeHelper
this.ProcedureHelper = ProcedureHelper
}
exports.DemoSupport = DemoSupport
module.exports.GlobalConn = GlobalConn