Created
August 8, 2019 07:29
-
-
Save jennifer-shehane/f498ce68b46425583fa72c8d945fe7bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function() { | |
Cypress.Commands.add('sqlServer', (query) => { | |
if(!query) { | |
throw new Error('Query must be set'); | |
} | |
cy.task('sqlServer:execute', query).then(response => { | |
let result = []; | |
const flatten = r => Array.isArray(r) && r.length === 1 ? flatten(r[0]) : r; | |
if(response) { | |
for (let i in response) { | |
result[i] = []; | |
for (let c in response[i]) { | |
result[i][c] = response[i][c].value; | |
} | |
} | |
result = flatten(result); | |
} else { | |
result = response; | |
} | |
return result; | |
}); | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Tedious = require('tedious'); | |
module.exports = (dbConfig) => { | |
return { | |
'sqlServer:execute': (sql) => { | |
const connection = new Tedious.Connection(dbConfig); | |
return new Promise((res, rej) => { | |
connection.on('connect', err => { | |
if (err) { | |
rej(err); | |
} | |
const request = new Tedious.Request(sql, function(err, rowCount, rows) { | |
return err ? rej(err) : res(rows); | |
}); | |
connection.execSql(request); | |
}); | |
}); | |
} | |
} | |
}; |
Would it be possible to do the same with a DB2 connection? This is working:
var ibmdb = require('ibm_db');
ibmdb.open(dbConfig, function (err, conn) {
if (err) return console.log(err);
conn.query(query, function (err, data) {
if (err) console.log(err);
else console.log(data);
conn.close(function () {
console.log('done');
});
});
});
but I would like to do as task/command in order to call it when I need it.
I use Cypress with Typescript. Will it be possible to call cy.sqlserver in a typescript class file. Could you provide the guidance?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How is your plugin/index.js configured in order to make "sqlServer:execute" of cypress-plugins-db.js called?