node-oracledb/test/blobDMLReturningMultipleRow...

140 lines
4.6 KiB
JavaScript

/* Copyright (c) 2017, 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
* 137. blobDMLReturningMultipleRowsAsBuffer.js
*
* DESCRIPTION
* Testing BLOB DML returning multiple rows as buffer.
*
* 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 onwards are for other tests
*
*****************************************************************************/
'use strict';
var oracledb = require('oracledb');
var should = require('should');
var async = require('async');
var dbConfig = require('./dbconfig.js');
var random = require('./random.js');
var sql = require('./sql.js');
describe('137. blobDMLReturningMultipleRowsAsBuffer.js', function() {
var connection = null;
var tableName = "nodb_dml_blob_137";
var node6plus = false; // assume node runtime version is lower than 6
var blob_table_create = "BEGIN \n" +
" DECLARE \n" +
" e_table_missing EXCEPTION; \n" +
" PRAGMA EXCEPTION_INIT(e_table_missing, -00942); \n" +
" BEGIN \n" +
" EXECUTE IMMEDIATE('DROP TABLE " + tableName + " PURGE'); \n" +
" EXCEPTION \n" +
" WHEN e_table_missing \n" +
" THEN NULL; \n" +
" END; \n" +
" EXECUTE IMMEDIATE (' \n" +
" CREATE TABLE " + tableName + " ( \n" +
" num NUMBER, \n" +
" blob BLOB \n" +
" ) \n" +
" '); \n" +
"END; ";
var blob_table_drop = "DROP TABLE " + tableName + " PURGE";
before(function(done) {
oracledb.getConnection(dbConfig, function(err, conn) {
should.not.exist(err);
connection = conn;
if ( process.versions["node"].substring (0, 1) >= "6")
node6plus = true;
done();
});
});
after(function(done) {
connection.release(function(err) {
should.not.exist(err);
done();
});
});
describe('137.1 BLOB DML returning multiple rows as buffer', function() {
before(function(done) {
async.series([
function(cb) {
sql.executeSql(connection, blob_table_create, {}, {}, cb);
},
function(cb) {
async.times(10, insertData, cb);
}
], done);
});
after(function(done) {
sql.executeSql(connection, blob_table_drop, {}, {}, done);
});
it('137.1.1 BLOB DML returning multiple rows as buffer', function(done) {
updateReturning_buffer(done);
});
});
var insertData = function(i, cb) {
var str = random.getRandomLengthString(i+10);
var blob = node6plus ? Buffer.from(str, "utf-8") : new Buffer(str, "utf-8");
connection.execute(
"insert into " + tableName + " values (:id, :b)",
{
id: {val: i, dir: oracledb.BIND_IN, type: oracledb.NUMBER},
b: {val: blob, dir: oracledb.BIND_IN, type: oracledb.BUFFER}
},
function(err, result) {
should.not.exist(err);
(result.rowsAffected).should.be.exactly(1);
cb(err);
}
);
};
var updateReturning_buffer = function(callback) {
var sql_update = "UPDATE " + tableName + " set num = num+10 RETURNING num, blob into :num, :lobou";
connection.execute(
sql_update,
{
num: { type: oracledb.NUMBER, dir: oracledb.BIND_OUT },
lobou: { type: oracledb.BUFFER, dir: oracledb.BIND_OUT }
},
function(err) {
should.exist(err);
should.strictEqual((err.message), "NJS-028: raw database type is not supported with DML Returning statements");
callback();
}
);
};
});