node-oracledb/test/dataTypeTimestamp1.js

167 lines
4.8 KiB
JavaScript
Raw Normal View History

2015-07-20 12:42:12 +08:00
/* 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.
2016-03-24 14:09:53 +08:00
*
* The node-oracledb test suite uses 'mocha', 'should' and 'async'.
2015-07-20 12:42:12 +08:00
* See LICENSE.md for relevant licenses.
*
* NAME
* 33. dataTypeTimestamp1.js
*
* DESCRIPTION
* Testing Oracle data type support - TIMESTAMP.
*
* 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
2016-03-24 14:09:53 +08:00
* 51 - are for other tests
*
2015-07-20 12:42:12 +08:00
*****************************************************************************/
2015-09-02 20:33:00 +08:00
"use strict";
2015-07-20 12:42:12 +08:00
var oracledb = require('oracledb');
var should = require('should');
var async = require('async');
var assist = require('./dataTypeAssist.js');
var dbConfig = require('./dbconfig.js');
2015-07-20 12:42:12 +08:00
describe('33. dataTypeTimestamp1.js', function() {
2016-03-24 14:09:53 +08:00
2015-07-20 12:42:12 +08:00
if(dbConfig.externalAuth){
var credential = { externalAuth: true, connectString: dbConfig.connectString };
} else {
var credential = dbConfig;
}
2016-03-24 14:09:53 +08:00
var connection = null;
2015-09-02 18:22:31 +08:00
var tableName = "oracledb_timestamp1";
2016-03-24 14:09:53 +08:00
2015-09-02 18:49:30 +08:00
before('get one connection', function(done) {
oracledb.getConnection(credential, function(err, conn) {
should.not.exist(err);
connection = conn;
done();
});
2015-07-20 12:42:12 +08:00
})
2015-09-02 18:49:30 +08:00
after('release connection', function(done) {
connection.release( function(err) {
should.not.exist(err);
done();
});
})
2015-09-02 19:08:19 +08:00
describe('33.1 Testing JavaScript Date with database TIMESTAMP', function() {
2015-09-02 18:49:30 +08:00
var dates = assist.data.dates;
2015-09-02 19:08:19 +08:00
before('create table, insert data',function(done) {
assist.setUp(connection, tableName, dates, done);
})
2015-09-02 18:49:30 +08:00
after(function(done) {
connection.execute(
"DROP table " + tableName,
function(err) {
should.not.exist(err);
done();
}
);
2015-09-02 19:08:19 +08:00
})
2015-09-02 18:49:30 +08:00
2015-09-02 19:08:19 +08:00
it('33.1.1 works well with SELECT query', function(done) {
assist.dataTypeSupport(connection, tableName, dates, done);
2016-03-24 14:09:53 +08:00
})
2015-09-02 18:49:30 +08:00
it('33.1.2 works well with result set', function(done) {
2015-09-02 19:08:19 +08:00
assist.verifyResultSet(connection, tableName, dates, done);
2016-03-24 14:09:53 +08:00
})
2015-09-02 20:24:42 +08:00
it('33.1.3 works well with REF Cursor', function(done) {
2015-09-02 19:08:19 +08:00
assist.verifyRefCursor(connection, tableName, dates, done);
2016-03-24 14:09:53 +08:00
})
2015-09-02 18:49:30 +08:00
}) // end of 33.1 suite
2015-09-02 19:08:19 +08:00
describe('33.2 stores null value correctly', function() {
it('33.2.1 testing Null, Empty string and Undefined', function(done) {
assist.verifyNullValues(connection, tableName, done);
})
})
2015-09-02 18:49:30 +08:00
2015-09-02 19:08:19 +08:00
describe('33.3 testing TIMESTAMP without TIME ZONE', function() {
var timestamps = assist.TIMESTAMP_STRINGS;
2016-03-24 14:09:53 +08:00
2015-09-02 18:49:30 +08:00
before(function(done) {
2015-09-02 19:08:19 +08:00
assist.setUp4sql(connection, tableName, timestamps, done);
})
2015-09-02 18:49:30 +08:00
after(function(done) {
connection.execute(
"DROP table " + tableName,
function(err) {
should.not.exist(err);
done();
}
);
}) // after
2015-09-02 19:08:19 +08:00
it('32.3.1 SELECT query - original data', function(done) {
assist.selectOriginalData(connection, tableName, timestamps, done);
})
it('33.3.2 SELECT query - formatted data for comparison', function(done) {
2015-09-02 18:49:30 +08:00
async.forEach(timestamps, function(timestamp, cb) {
var bv = timestamps.indexOf(timestamp);
connection.execute(
2015-09-02 19:08:19 +08:00
"SELECT num, TO_CHAR(content, 'DD-MM-YYYY HH24:MI:SS.FF') AS TS_DATA FROM " + tableName + " WHERE num = :no",
2015-09-02 18:49:30 +08:00
{ no: bv },
{ outFormat: oracledb.OBJECT },
function(err, result) {
should.not.exist(err);
2015-09-02 19:08:19 +08:00
// console.log(result.rows);
(result.rows[0].TS_DATA).should.equal(assist.content.timestamps1[bv]);
2015-09-02 18:49:30 +08:00
cb();
2016-03-24 14:09:53 +08:00
}
2015-09-02 18:49:30 +08:00
);
}, function(err) {
should.not.exist(err);
done();
});
2015-09-02 19:08:19 +08:00
})
2015-09-02 18:49:30 +08:00
it('33.3.3 returns scalar types from PL/SQL block', function(done) {
2016-03-24 14:09:53 +08:00
var sql = "BEGIN SELECT systimestamp into :bv from dual; END;";
var binds = { bv: { dir: oracledb.BIND_OUT, type: oracledb.STRING } };
var options = { outFormat: oracledb.OBJECT };
connection.execute(
sql,
binds,
options,
function(err, result) {
should.not.exist(err);
(result.outBinds.bv).should.be.a.String;
done();
}
);
2016-03-24 14:09:53 +08:00
})
2015-09-02 19:08:19 +08:00
}) // end of 33.3 suite
2015-09-02 18:22:31 +08:00
2015-07-20 12:42:12 +08:00
})