node-oracledb/test/longrawProcedureBind_in.js

235 lines
8.2 KiB
JavaScript
Raw Normal View History

2023-02-21 12:04:16 +08:00
/* Copyright (c) 2017, 2023, Oracle and/or its affiliates. */
2017-06-29 14:17:44 +08:00
/******************************************************************************
*
* This software is dual-licensed to you under the Universal Permissive License
* (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
* 2.0 as shown at https://www.apache.org/licenses/LICENSE-2.0. You may choose
* either license.
2017-06-29 14:17:44 +08:00
*
* If you elect to accept the software under the Apache License, Version 2.0,
* the following applies:
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
2017-06-29 14:17:44 +08:00
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
2017-06-29 14:17:44 +08:00
*
* 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.
2017-06-29 14:17:44 +08:00
* See the License for the specific language governing permissions and
* limitations under the License.
*
* NAME
* 132. longrawProcedureBind_in.js
*
* DESCRIPTION
* Test LONG RAW type PLSQL procedure support.
* https://docs.oracle.com/cloud/latest/db121/LNPLS/datatypes.htm#LNPLS346
*
*****************************************************************************/
2023-03-14 14:31:35 +08:00
2017-06-29 14:17:44 +08:00
'use strict';
2023-02-21 15:02:10 +08:00
const oracledb = require('oracledb');
2023-03-14 14:31:35 +08:00
const assert = require('assert');
2023-02-21 15:02:10 +08:00
const dbConfig = require('./dbconfig.js');
const random = require('./random.js');
const testsUtil = require('./testsUtil.js');
2017-06-29 14:17:44 +08:00
describe('132. longrawProcedureBind_in.js', function() {
2023-03-14 14:31:35 +08:00
let connection = null;
2023-02-21 12:04:16 +08:00
const tableName = "nodb_longraw_132";
2023-03-14 14:31:35 +08:00
let insertID = 0;
2017-06-29 14:17:44 +08:00
2023-03-14 14:31:35 +08:00
before(async function() {
2023-02-21 15:02:10 +08:00
const sqlCreate = `
CREATE TABLE ${tableName} (
id NUMBER,
content LONG RAW
)`;
2023-03-14 14:31:35 +08:00
const sqlCreateTbl = await testsUtil.sqlCreateTable(tableName, sqlCreate);
connection = await oracledb.getConnection(dbConfig);
await connection.execute(sqlCreateTbl);
2017-06-29 14:17:44 +08:00
}); // before
2023-03-14 14:31:35 +08:00
after(async function() {
const sqlDropTbl = await testsUtil.sqlDropTable(tableName);
await connection.execute(sqlDropTbl);
await connection.close();
2017-06-29 14:17:44 +08:00
}); // after
2023-03-14 14:31:35 +08:00
beforeEach(function() {
2017-06-29 14:17:44 +08:00
insertID++;
});
describe('132.1 PLSQL PROCEDURE BIND IN AS LONG RAW', function() {
2023-03-14 14:31:35 +08:00
const proc_bindin_name = "nodb_longraw_bindin_proc_1";
const proc_bindin_create = "CREATE OR REPLACE PROCEDURE " + proc_bindin_name + " (NUM IN NUMBER, C IN LONG RAW) \n" +
2017-06-29 14:17:44 +08:00
"AS \n" +
"BEGIN \n" +
" insert into " + tableName + " values (NUM, C); \n" +
"END " + proc_bindin_name + ";";
2023-03-14 14:31:35 +08:00
const proc_bindin_exec = "BEGIN " + proc_bindin_name + " (:i, :c); END;";
const proc_bindin_drop = "DROP PROCEDURE " + proc_bindin_name;
2017-06-29 14:17:44 +08:00
2023-03-14 14:31:35 +08:00
before(async function() {
await connection.execute(proc_bindin_create);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
after(async function() {
await connection.execute(proc_bindin_drop);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.1 works with NULL', async function() {
const insertedStr = null;
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.2 works with undefined', async function() {
const insertedStr = undefined;
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.3 works with empty buffer', async function() {
const insertedBuf = Buffer.from("");
await longraw_bindin(insertedBuf, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.4 works with data size 2000', async function() {
const insertedStr = random.getRandomLengthString(2000);
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.5 works with data size (32K - 1)', async function() {
const insertedStr = random.getRandomLengthString(32767);
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.6 set maxSize to size (32K - 1)', async function() {
const insertedStr = random.getRandomLengthString(100);
await longraw_bindin_maxSize(insertedStr, proc_bindin_exec, 32767);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.1.7 set maxSize to size 1GB', async function() {
const insertedStr = random.getRandomLengthString(100);
const maxsize = 1 * 1024 * 1024 * 1024;
await longraw_bindin_maxSize(insertedStr, proc_bindin_exec, maxsize);
2017-06-29 14:17:44 +08:00
});
}); // 132.1
describe('132.2 PLSQL PROCEDURE BIND IN AS RAW', function() {
2023-03-14 14:31:35 +08:00
const proc_bindin_name = "nodb_longraw_bindin_proc_2";
const proc_bindin_create = "CREATE OR REPLACE PROCEDURE " + proc_bindin_name + " (NUM IN NUMBER, C IN RAW) \n" +
2017-06-29 14:17:44 +08:00
"AS \n" +
"BEGIN \n" +
" insert into " + tableName + " values (NUM, C); \n" +
"END " + proc_bindin_name + ";";
2023-03-14 14:31:35 +08:00
const proc_bindin_exec = "BEGIN " + proc_bindin_name + " (:i, :c); END;";
const proc_bindin_drop = "DROP PROCEDURE " + proc_bindin_name;
2017-06-29 14:17:44 +08:00
2023-03-14 14:31:35 +08:00
before(async function() {
await connection.execute(proc_bindin_create);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
after(async function() {
await connection.execute(proc_bindin_drop);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.1 works with NULL', async function() {
const insertedStr = null;
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.2 works with undefined', async function() {
const insertedStr = undefined;
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.3 works with empty buffer', async function() {
const insertedStr = Buffer.from("");
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.4 works with data size 2000', async function() {
const insertedStr = random.getRandomLengthString(2000);
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.5 works with data size 32767', async function() {
const insertedStr = random.getRandomLengthString(32767);
await longraw_bindin(insertedStr, proc_bindin_exec);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.6 set maxSize to size (32K - 1)', async function() {
const insertedStr = random.getRandomLengthString(100);
await longraw_bindin_maxSize(insertedStr, proc_bindin_exec, 32767);
2017-06-29 14:17:44 +08:00
});
2023-03-14 14:31:35 +08:00
it('132.2.7 set maxSize to size 1GB', async function() {
const insertedStr = random.getRandomLengthString(100);
const maxsize = 1 * 1024 * 1024 * 1024;
await longraw_bindin_maxSize(insertedStr, proc_bindin_exec, maxsize);
2017-06-29 14:17:44 +08:00
});
}); // 132.2
2023-03-14 14:31:35 +08:00
const longraw_bindin = async function(insertContent, proc_bindin_exec) {
let insertBuf, expectedBuf;
2021-04-01 12:48:37 +08:00
if (insertContent == null || insertContent == undefined || insertContent.length == 0) {
2017-06-29 14:17:44 +08:00
insertBuf = insertContent;
expectedBuf = null;
} else {
insertBuf = Buffer.from(insertContent);
2017-06-29 14:17:44 +08:00
expectedBuf = insertBuf;
}
2023-03-14 14:31:35 +08:00
const bind_in_var = {
i: { val: insertID, dir: await oracledb.BIND_IN, type: await oracledb.NUMBER },
c: { val: insertBuf, dir: await oracledb.BIND_IN, type: await oracledb.BUFFER }
};
await connection.execute(
proc_bindin_exec,
bind_in_var);
await checkResult(expectedBuf);
2017-06-29 14:17:44 +08:00
};
2023-03-14 14:31:35 +08:00
const longraw_bindin_maxSize = async function(insertContent, proc_bindin_exec, maxsize) {
let insertBuf, expectedBuf;
2021-04-01 12:48:37 +08:00
if (insertContent == null || insertContent == undefined) {
2017-06-29 14:17:44 +08:00
insertBuf = insertContent;
expectedBuf = null;
} else {
insertBuf = Buffer.from(insertContent);
2017-06-29 14:17:44 +08:00
expectedBuf = insertBuf;
}
2023-03-14 14:31:35 +08:00
const bind_in_var = {
i: { val: insertID, dir: await oracledb.BIND_IN, type: await oracledb.NUMBER },
c: { val: insertBuf, dir: await oracledb.BIND_IN, type: await oracledb.BUFFER, maxSize: maxsize }
};
await connection.execute(
proc_bindin_exec,
bind_in_var);
await checkResult(expectedBuf);
2017-06-29 14:17:44 +08:00
};
2023-03-14 14:31:35 +08:00
const checkResult = async function(expected) {
const result = await connection.execute(
"select * from " + tableName + " where id = " + insertID);
assert.strictEqual(result.rows[0][0], insertID);
if (expected == null) {
assert.strictEqual(result.rows[0][1], expected);
} else {
2023-03-14 15:07:21 +08:00
assert.deepStrictEqual(result.rows[0][1], expected);
2023-03-14 14:31:35 +08:00
}
};
2017-06-29 14:17:44 +08:00
});