2017-04-28 11:47:24 +01:00
|
|
|
// global it, describe, expect
|
2016-11-30 20:44:43 +13:00
|
|
|
|
|
|
|
'use strict';
|
2017-04-28 11:47:24 +01:00
|
|
|
var _ = require('lodash');
|
2016-11-30 20:44:43 +13:00
|
|
|
var expect = require('chai').expect;
|
2018-07-09 08:10:34 -04:00
|
|
|
var knex = require('../../../knex');
|
2017-04-28 11:47:24 +01:00
|
|
|
var config = require('../../knexfile');
|
2016-11-30 20:44:43 +13:00
|
|
|
|
2018-07-09 08:10:34 -04:00
|
|
|
describe('OracleDb externalAuth', function() {
|
2017-04-28 11:47:24 +01:00
|
|
|
var knexInstance = knex({
|
|
|
|
client: 'oracledb',
|
|
|
|
connection: {
|
2018-07-09 08:10:34 -04:00
|
|
|
user: 'user',
|
|
|
|
password: 'password',
|
|
|
|
connectString: 'connect-string',
|
|
|
|
externalAuth: true,
|
|
|
|
host: 'host',
|
|
|
|
database: 'database',
|
|
|
|
},
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
var spy;
|
2016-11-30 20:44:43 +13:00
|
|
|
|
2017-04-28 11:47:24 +01:00
|
|
|
before(function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
spy = sinon.spy(knexInstance.client.driver, 'getConnection');
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
2016-11-30 20:44:43 +13:00
|
|
|
|
|
|
|
it('externalAuth and connectString should be sent to the getConnection', function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
var connectionWithExternalAuth = {
|
|
|
|
connectString: 'connect-string',
|
|
|
|
externalAuth: true,
|
|
|
|
};
|
|
|
|
knexInstance.client
|
|
|
|
.acquireRawConnection()
|
|
|
|
.then(function(resolve) {}, function(reject) {});
|
|
|
|
expect(spy).to.have.callCount(1);
|
|
|
|
expect(spy).to.have.been.calledWith(connectionWithExternalAuth);
|
2016-11-30 20:44:43 +13:00
|
|
|
});
|
2017-04-28 11:47:24 +01:00
|
|
|
|
|
|
|
after(function() {
|
2018-02-01 23:46:12 +02:00
|
|
|
knexInstance.client.driver.getConnection.restore();
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-07-09 08:10:34 -04:00
|
|
|
describe('OracleDb parameters', function() {
|
|
|
|
describe('with fetchAsString parameter', function() {
|
2017-04-28 11:47:24 +01:00
|
|
|
var knexClient;
|
|
|
|
|
|
|
|
before(function() {
|
|
|
|
var conf = _.clone(config.oracledb);
|
2018-07-09 08:10:34 -04:00
|
|
|
conf.fetchAsString = ['number', 'DATE', 'cLOb'];
|
2017-04-28 11:47:24 +01:00
|
|
|
knexClient = knex(conf);
|
|
|
|
return knexClient;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('on float', function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return knexClient
|
|
|
|
.raw('select 7.329 as "field" from dual')
|
|
|
|
.then(function(result) {
|
|
|
|
expect(result[0]).to.be.ok;
|
|
|
|
expect(result[0].field).to.be.a('string');
|
|
|
|
});
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('on date', function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return knexClient
|
|
|
|
.raw('select CURRENT_DATE as "field" from dual')
|
|
|
|
.then(function(result) {
|
|
|
|
expect(result[0]).to.be.ok;
|
|
|
|
expect(result[0].field).to.be.a('string');
|
|
|
|
});
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
after(function() {
|
|
|
|
return knexClient.destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-07-09 08:10:34 -04:00
|
|
|
describe('without fetchAsString parameter', function() {
|
2017-04-28 11:47:24 +01:00
|
|
|
var knexClient;
|
|
|
|
|
|
|
|
before(function() {
|
|
|
|
knexClient = knex(config.oracledb);
|
|
|
|
return knexClient;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('on float', function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return knexClient
|
|
|
|
.raw('select 7.329 as "field" from dual')
|
|
|
|
.then(function(result) {
|
|
|
|
expect(result[0]).to.be.ok;
|
|
|
|
expect(result[0].field).to.not.be.a('string');
|
|
|
|
});
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('on date', function() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return knexClient
|
|
|
|
.raw('select CURRENT_DATE as "field" from dual')
|
|
|
|
.then(function(result) {
|
|
|
|
expect(result[0]).to.be.ok;
|
|
|
|
expect(result[0].field).to.not.be.a('string');
|
|
|
|
});
|
2017-04-28 11:47:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
after(function() {
|
|
|
|
return knexClient.destroy();
|
|
|
|
});
|
|
|
|
});
|
2016-11-30 20:44:43 +13:00
|
|
|
});
|