node-oracledb/test/blobDMLReturningMultipleRow...

154 lines
5.1 KiB
JavaScript
Raw Normal View History

2017-07-08 10:43:45 +08:00
/* 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
2017-10-23 10:35:57 +08:00
* 137. blobDMLReturningMultipleRowsAsBuffer.js
2017-07-08 10:43:45 +08:00
*
* DESCRIPTION
2017-08-16 13:20:58 +08:00
* Testing BLOB DML returning multiple rows as buffer.
2017-07-08 10:43:45 +08:00
*
* 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 sql = require('./sql.js');
2017-10-23 10:35:57 +08:00
describe('137. blobDMLReturningMultipleRowsAsBuffer.js', function() {
2017-07-08 10:43:45 +08:00
var connection = null;
2017-10-23 10:35:57 +08:00
var tableName = "nodb_dml_blob_137";
2017-07-08 10:43:45 +08:00
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" +
2017-08-16 13:20:58 +08:00
" num NUMBER, \n" +
" blob BLOB \n" +
2017-07-08 10:43:45 +08:00
" ) \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;
done();
});
});
after(function(done) {
connection.release(function(err) {
should.not.exist(err);
done();
});
});
2017-10-23 10:35:57 +08:00
describe('137.1 BLOB DML returning multiple rows as buffer', function() {
2017-07-08 10:43:45 +08:00
before(function(done) {
async.series([
function(cb) {
sql.executeSql(connection, blob_table_create, {}, {}, cb);
},
function(cb) {
2018-02-06 10:24:48 +08:00
insertData(10, cb);
2017-07-08 10:43:45 +08:00
}
], done);
});
after(function(done) {
sql.executeSql(connection, blob_table_drop, {}, {}, done);
});
2017-10-23 10:35:57 +08:00
it('137.1.1 BLOB DML returning multiple rows as buffer', function(done) {
updateReturning_buffer(done);
2017-10-23 10:35:57 +08:00
});
2017-07-08 10:43:45 +08:00
2017-10-23 10:35:57 +08:00
});
2017-07-08 10:43:45 +08:00
2018-02-06 10:24:48 +08:00
var insertData = function(tableSize, cb) {
var insert_data = "DECLARE \n" +
" tmpchar VARCHAR2(2000); \n" +
" tmplob BLOB; \n" +
"BEGIN \n" +
" FOR i IN 1.." + tableSize + " LOOP \n" +
" select to_char(i) into tmpchar from dual; \n"+
" select utl_raw.cast_to_raw(tmpchar) into tmplob from dual; \n"+
" insert into " + tableName + " values (i, tmplob); \n" +
" END LOOP; \n" +
" commit; \n" +
"END; ";
async.series([
function(callback) {
connection.execute(
insert_data,
function(err) {
should.not.exist(err);
callback();
}
);
2017-07-08 10:43:45 +08:00
},
2018-02-06 10:24:48 +08:00
function(callback) {
connection.execute(
"select num from " + tableName,
function(err, result) {
should.not.exist(err);
should.strictEqual(result.rows.length, tableSize);
callback();
}
);
2017-07-08 10:43:45 +08:00
}
2018-02-06 10:24:48 +08:00
], cb);
2017-07-08 10:43:45 +08:00
};
var updateReturning_buffer = function(callback) {
2017-08-16 13:20:58 +08:00
var sql_update = "UPDATE " + tableName + " set num = num+10 RETURNING num, blob into :num, :lobou";
2017-07-08 10:43:45 +08:00
connection.execute(
sql_update,
{
2017-07-08 10:43:45 +08:00
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();
}
);
};
2017-07-08 10:43:45 +08:00
});