node-oracledb/test/urowidFunctionBindAsString3.js

343 lines
12 KiB
JavaScript
Raw Normal View History

2018-02-09 16:51:13 +08:00
/* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. */
2017-11-17 19:59:41 +08:00
/******************************************************************************
*
* 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
* 142. urowidFunctionBindAsString3.js
*
* DESCRIPTION
* Testing UROWID(> 200 bytes) plsql function bind in/out as String.
2017-11-17 19:59:41 +08:00
*
*****************************************************************************/
'use strict';
var oracledb = require('oracledb');
var should = require('should');
var async = require('async');
var dbConfig = require('./dbconfig.js');
var sql = require('./sql.js');
var random = require('./random.js');
describe('142. urowidFunctionBindAsString3.js', function() {
var connection = null;
var tableName_indexed = "nodb_urowid_indexed";
var tableName_normal = "nodb_urowid_normal";
var insertID = 1;
var table_indexed = "BEGIN \n" +
" DECLARE \n" +
" e_table_missing EXCEPTION; \n" +
" PRAGMA EXCEPTION_INIT(e_table_missing, -00942);\n" +
" BEGIN \n" +
" EXECUTE IMMEDIATE ('DROP TABLE " + tableName_indexed + " PURGE' ); \n" +
" EXCEPTION \n" +
" WHEN e_table_missing \n" +
" THEN NULL; \n" +
" END; \n" +
" EXECUTE IMMEDIATE ( ' \n" +
" CREATE TABLE " + tableName_indexed + " ( \n" +
" c1 NUMBER, \n" +
" c2 VARCHAR2(3189), \n" +
2017-11-17 19:59:41 +08:00
" primary key(c1, c2) \n" +
" ) organization index \n" +
" '); \n" +
"END; ";
var table_normal = "BEGIN \n" +
" DECLARE \n" +
" e_table_missing EXCEPTION; \n" +
" PRAGMA EXCEPTION_INIT(e_table_missing, -00942);\n" +
" BEGIN \n" +
" EXECUTE IMMEDIATE ('DROP TABLE " + tableName_normal + " PURGE' ); \n" +
" EXCEPTION \n" +
" WHEN e_table_missing \n" +
" THEN NULL; \n" +
" END; \n" +
" EXECUTE IMMEDIATE ( ' \n" +
" CREATE TABLE " + tableName_normal + " ( \n" +
" ID NUMBER, \n" +
" content UROWID(4000) \n" +
" ) \n" +
" '); \n" +
"END; ";
var drop_table_indexed = "DROP TABLE " + tableName_indexed + " PURGE";
var drop_table_normal = "DROP TABLE " + tableName_normal + " PURGE";
before('get connection and create table', function(done) {
async.series([
function(cb) {
oracledb.getConnection(dbConfig, function(err, conn) {
should.not.exist(err);
connection = conn;
cb();
});
},
function(cb) {
sql.executeSql(connection, table_indexed, {}, {}, cb);
},
function(cb) {
sql.executeSql(connection, table_normal, {}, {}, cb);
}
], done);
});
after('release connection', function(done) {
async.series([
function(cb) {
sql.executeSql(connection, drop_table_indexed, {}, {}, cb);
},
function(cb) {
sql.executeSql(connection, drop_table_normal, {}, {}, cb);
},
function(cb) {
connection.release( function(err) {
should.not.exist(err);
cb();
});
}
], done);
});
beforeEach(function(done) {
insertID++;
done();
});
describe('142.1 FUNCTION BIND_IN/OUT as UROWID', function() {
var fun_create = "CREATE OR REPLACE FUNCTION nodb_rowid_bind (ID_in IN NUMBER, content_in IN UROWID) RETURN UROWID\n" +
"IS \n" +
" tmp UROWID(4000); \n" +
"BEGIN \n" +
" insert into " + tableName_normal + " (id, content) values (ID_in, content_in); \n" +
" select content into tmp from " + tableName_normal + " where id = ID_in; \n" +
" return tmp; \n" +
"END; ";
var fun_execute = "BEGIN :o := nodb_rowid_bind (:i, :c); END;";
var fun_drop = "DROP FUNCTION nodb_rowid_bind";
before('create procedure', function(done) {
sql.executeSql(connection, fun_create, {}, {}, done);
});
after('drop procedure', function(done) {
sql.executeSql(connection, fun_drop, {}, {}, done);
});
it('142.1.1 urowid length > 200', function(done) {
var exceptedLen = 200;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
it('142.1.2 urowid length > 500', function(done) {
var exceptedLen = 500;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
it('142.1.3 urowid length > 2000', function(done) {
var exceptedLen = 2000;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
});
describe('142.2 FUNCTION BIND_IN/OUT as string', function() {
var fun_create = "CREATE OR REPLACE FUNCTION nodb_rowid_bind (id_in IN NUMBER, content_in IN UROWID) RETURN VARCHAR2\n" +
"IS \n" +
" tmp UROWID; \n" +
"BEGIN \n" +
" insert into " + tableName_normal + " (id, content) values (id_in, content_in); \n" +
" select content into tmp from " + tableName_normal + " where id = id_in; \n" +
" return tmp; \n" +
"END; ";
var fun_execute = "BEGIN :o := nodb_rowid_bind (:i, :c); END;";
var fun_drop = "DROP FUNCTION nodb_rowid_bind";
before('create procedure', function(done) {
sql.executeSql(connection, fun_create, {}, {}, done);
});
after('drop procedure', function(done) {
sql.executeSql(connection, fun_drop, {}, {}, done);
});
it('142.2.1 urowid length > 200', function(done) {
var exceptedLen = 200;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
it('142.2.2 urowid length > 500', function(done) {
var exceptedLen = 500;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
it('142.2.3 urowid length > 2000', function(done) {
var exceptedLen = 2000;
2017-11-17 19:59:41 +08:00
funBindOut(fun_execute, exceptedLen, done);
});
});
describe('142.3 FUNCTION BIND_IN, UPDATE', function() {
var fun_create = "CREATE OR REPLACE FUNCTION nodb_rowid_bind_1083 (id_in IN NUMBER, content_1 IN VARCHAR2, content_2 IN UROWID) RETURN UROWID\n" +
2017-11-17 19:59:41 +08:00
"IS \n" +
" tmp UROWID; \n" +
"BEGIN \n" +
" insert into " + tableName_normal + " (id, content) values (id_in, content_1); \n" +
" update " + tableName_normal + " set content = content_2 where id = id_in; \n" +
" select content into tmp from " + tableName_normal + " where id = id_in; \n" +
" return tmp; \n" +
"END; ";
var fun_exec = "BEGIN :o := nodb_rowid_bind_1083 (:i, :c1, :c2); END;";
var fun_drop = "DROP FUNCTION nodb_rowid_bind_1083";
before('create procedure', function(done) {
sql.executeSql(connection, fun_create, {}, {}, done);
});
after('drop procedure', function(done) {
sql.executeSql(connection, fun_drop, {}, {}, done);
});
it('142.3.1 update with UROWID > 200', function(done) {
2017-11-17 19:59:41 +08:00
var contentLen_1 = 10;
var contentLen_2 = 200;
2017-11-17 19:59:41 +08:00
funBindOut_update(fun_exec, contentLen_1, contentLen_2, done);
});
it('142.3.2 update with UROWID > 500', function(done) {
2017-11-17 19:59:41 +08:00
var contentLen_1 = 50;
var contentLen_2 = 500;
2017-11-17 19:59:41 +08:00
funBindOut_update(fun_exec, contentLen_1, contentLen_2, done);
});
it('142.3.3 update with UROWID > 2000', function(done) {
2017-11-17 19:59:41 +08:00
var contentLen_1 = 50;
var contentLen_2 = 2000;
2017-11-17 19:59:41 +08:00
funBindOut_update(fun_exec, contentLen_1, contentLen_2, done);
});
});
var funBindOut = function(fun_exec, expectedLength, callback) {
var str = random.getRandomLengthString(expectedLength);
var urowid, urowidLen;
async.series([
function(cb) {
var sql_insert = "insert into " + tableName_indexed + " values (" + insertID + ", '" + str + "')";
sql.executeInsert(connection, sql_insert, {}, {}, cb);
},
function(cb) {
connection.execute(
"select ROWID from " + tableName_indexed + " where c1 = " + insertID,
function(err, result) {
should.not.exist(err);
urowid = result.rows[0][0];
urowidLen = urowid.length;
urowidLen.should.be.above(expectedLength);
cb();
}
);
},
function(cb) {
var bindVar_in = {
i: { val: insertID, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
c: { val: urowid, type: oracledb.STRING, dir: oracledb.BIND_IN },
o: { type: oracledb.STRING, dir: oracledb.BIND_OUT, maxSize: 5000 }
2017-11-17 19:59:41 +08:00
};
connection.execute(
fun_exec,
bindVar_in,
function(err, result) {
should.not.exist(err);
var resultVal = result.outBinds.o;
should.strictEqual(resultVal.length, urowidLen);
should.strictEqual(resultVal, urowid);
2017-11-17 19:59:41 +08:00
cb();
}
);
}
], callback);
};
var funBindOut_update = function(fun_exec, contentLen_1, contentLen_2, callback) {
var str_1 = random.getRandomLengthString(contentLen_1);
var str_2 = random.getRandomLengthString(contentLen_2);
var urowid_1, urowid_2, urowidLen_1, urowidLen_2, id_1, id_2;
2017-11-17 19:59:41 +08:00
async.series([
function(cb) {
id_1 = insertID;
var sql_insert = "insert into " + tableName_indexed + " values (" + id_1 + ", '" + str_1 + "')";
sql.executeInsert(connection, sql_insert, {}, {}, cb);
},
function(cb) {
connection.execute(
"select ROWID from " + tableName_indexed + " where c1 = " + id_1,
function(err, result) {
should.not.exist(err);
urowid_1 = result.rows[0][0];
urowidLen_1 = urowid_1.length;
urowidLen_1.should.be.above(contentLen_1);
2017-11-17 19:59:41 +08:00
cb();
}
);
},
function(cb) {
id_2 = insertID + 1;
2017-11-17 19:59:41 +08:00
var sql_insert = "insert into " + tableName_indexed + " values (" + id_2 + ", '" + str_2 + "')";
sql.executeInsert(connection, sql_insert, {}, {}, cb);
},
function(cb) {
connection.execute(
"select ROWID from " + tableName_indexed + " where c1 = " + id_2,
function(err, result) {
should.not.exist(err);
urowid_2 = result.rows[0][0];
urowidLen_2 = urowid_2.length;
urowidLen_2.should.be.above(contentLen_2);
2017-11-17 19:59:41 +08:00
cb();
}
);
},
function(cb) {
var bindVar_in = {
i: { val: insertID, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
c1: { val: urowid_1, type: oracledb.STRING, dir: oracledb.BIND_IN },
c2: { val: urowid_2, type: oracledb.STRING, dir: oracledb.BIND_IN },
o: { type: oracledb.STRING, dir: oracledb.BIND_OUT, maxSize: 5000 }
2017-11-17 19:59:41 +08:00
};
connection.execute(
fun_exec,
bindVar_in,
function(err, result) {
should.not.exist(err);
var resultVal = result.outBinds.o;
should.strictEqual(resultVal.length, urowidLen_2);
should.strictEqual(resultVal, urowid_2);
insertID = insertID + 10;
2017-11-17 19:59:41 +08:00
cb();
}
);
}
], callback);
};
});