node-oracledb/test/getConnAfterPoolTerminate.js

90 lines
2.8 KiB
JavaScript

/* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. */
/******************************************************************************
*
* You may not use the identified files except in compliance with the Apache
* License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*
* The node-oracledb test suite uses 'mocha', 'should' and 'async'.
* See LICENSE.md for relevant licenses.
*
* NAME
* 52. getConnAfterPoolTerminate.js
*
* DESCRIPTION
* Testing driver behaviour when trying to get connection from terminated pool.
*
* NUMBERING RULE
* Test numbers follow this numbering rule:
* 1 - 20 are reserved for basic functional tests
* 21 - 50 are reserved for data type supporting tests
* 51 - are for other tests
*
*****************************************************************************/
var oracledb = require('oracledb');
var should = require('should');
var dbConfig = require('./dbConfig.js');
describe('52. getConnAfterPoolTerminate.js', function(){
if(dbConfig.externalAuth){
var credential = { externalAuth: true, connectString: dbConfig.connectString };
} else {
var credential = dbConfig;
}
it('can not get connections from pool after pool is terminated', function(done){
oracledb.createPool(
{
externalAuth : credential.externalAuth,
user : credential.user,
password : credential.password,
connectString : credential.connectString,
poolMin : 2,
poolMax : 10
},
function(err, pool){
should.not.exist(err);
pool.should.be.ok;
pool.getConnection( function(err, connection){
should.not.exist(err);
(pool.connectionsInUse).should.eql(1);
connection.execute(
"SELECT (4+1) FROM dual",
function(err, result){
should.not.exist(err);
(result.rows[0][0]).should.be.exactly(5);
connection.release( function(err){
should.not.exist(err);
pool.terminate( function(err){
should.not.exist(err);
pool.getConnection( function(err){
should.exist(err);
});
done();
});
});
}
);
});
}
);
})
})