node-oracledb/test/nclobDMLBindAsString.js

187 lines
6.0 KiB
JavaScript
Raw Permalink Normal View History

2023-02-21 14:18:59 +08:00
/* Copyright (c) 2017, 2023, Oracle and/or its affiliates. */
2017-06-14 09:25:16 +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-14 09:25:16 +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-14 09:25:16 +08:00
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
2017-06-14 09:25:16 +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-14 09:25:16 +08:00
* See the License for the specific language governing permissions and
* limitations under the License.
*
* NAME
* 124. nclobDMLBindAsString.js
*
* DESCRIPTION
* Testing NCLOB binding as STRING in DML.
*
*****************************************************************************/
'use strict';
2023-02-21 10:53:17 +08:00
const oracledb = require('oracledb');
const assert = require('assert');
const dbConfig = require('./dbconfig.js');
const assist = require('./dataTypeAssist.js');
const random = require('./random.js');
2017-06-14 09:25:16 +08:00
describe('124. nclobDMLBindAsString.js', function() {
2023-02-21 10:53:17 +08:00
let connection = null;
2023-08-17 16:11:49 +08:00
const tableName = "nodb_nclob";
2023-02-21 10:53:17 +08:00
let insertID = 0;
2017-06-14 09:25:16 +08:00
2023-02-21 10:53:17 +08:00
before('get one connection', async function() {
connection = await oracledb.getConnection(dbConfig);
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
after('release connection', async function() {
2023-02-21 15:02:10 +08:00
await connection.close();
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
beforeEach(function() {
2017-06-14 09:25:16 +08:00
insertID++;
});
describe('124.1 DML binding', function() {
2023-02-21 10:53:17 +08:00
before('create table', async function() {
2023-02-21 14:18:59 +08:00
await connection.execute(assist.sqlCreateTable(tableName));
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
after(async function() {
await connection.execute("DROP table " + tableName + " PURGE");
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
it('124.1.1 bind in via INSERT', async function() {
2023-08-17 16:11:49 +08:00
const insertLength = 100;
const insertStr = random.getRandomLengthString(insertLength);
2023-02-21 10:53:17 +08:00
await bindIn(tableName, insertStr);
2017-06-14 09:25:16 +08:00
2023-02-21 10:53:17 +08:00
await streamLob(tableName, insertStr);
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
it('124.1.2 bind out via RETURNING INTO', async function() {
2023-08-17 16:11:49 +08:00
const insertLength = 3000;
const insertStr = random.getRandomLengthString(insertLength);
2023-02-21 10:53:17 +08:00
await insertData(tableName, insertStr);
await bindOut(tableName, insertStr);
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
it('124.1.3 bind in via UPDATE', async function() {
2023-08-17 16:11:49 +08:00
const insertLength = 100;
const insertStr = random.getRandomLengthString(insertLength);
const updateStr = random.getRandomLengthString(200);
2023-02-21 10:53:17 +08:00
await insertData(tableName, insertStr);
await bind_update(tableName, updateStr);
await streamLob(tableName, updateStr);
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
it('124.1.3 bind in via WHERE', async function() {
2023-08-17 16:11:49 +08:00
const insertLength = 500;
const insertStr = random.getRandomLengthString(insertLength);
2023-02-21 10:53:17 +08:00
await insertData(tableName, insertStr);
await bind_where(tableName, insertStr);
});
2017-06-14 09:25:16 +08:00
});
2023-08-17 16:11:49 +08:00
const insertData = async function(tableName, insertStr) {
const sql = "INSERT INTO " + tableName + "(num, content) VALUES(" + insertID + ", TO_NCLOB('" + insertStr + "'))";
2023-02-21 10:53:17 +08:00
await connection.execute(sql);
2017-06-14 09:25:16 +08:00
};
2023-08-17 16:11:49 +08:00
const bindIn = async function(tableName, insertStr) {
const sql = "INSERT INTO " + tableName + "(num, content) VALUES(:i, TO_NCLOB(:c))";
const bindVar = {
2017-06-14 09:25:16 +08:00
i: { val: insertID, type: oracledb.NUMBER, dir: oracledb.BIND_IN},
c: { val: insertStr, type: oracledb.STRING, dir: oracledb.BIND_IN},
};
2023-02-21 10:53:17 +08:00
await connection.execute(sql, bindVar);
2017-06-14 09:25:16 +08:00
};
2023-08-17 16:11:49 +08:00
const bindOut = async function(tableName, insertStr) {
2017-06-14 09:25:16 +08:00
insertID++;
2023-02-21 10:53:17 +08:00
let result = null;
result = await connection.execute(
2017-06-14 09:25:16 +08:00
"INSERT INTO " + tableName + " (num, content) VALUES (:i, TO_NCLOB(:c)) RETURNING content INTO :lobbv",
{
i: { val: insertID, type: oracledb.NUMBER, dir: oracledb.BIND_IN},
c: { val: insertStr, type: oracledb.STRING, dir: oracledb.BIND_IN },
lobbv: { type: oracledb.STRING, dir: oracledb.BIND_OUT, maxSize: insertStr.length }
});
2023-08-17 16:11:49 +08:00
const resultStr = result.outBinds.lobbv[0];
2023-02-21 10:53:17 +08:00
assert.strictEqual(resultStr.length, insertStr.length);
assert.strictEqual(resultStr, insertStr);
2017-06-14 09:25:16 +08:00
};
2023-08-17 16:11:49 +08:00
const bind_update = async function(tableName, insertStr) {
const sql = "update " + tableName + " set content = TO_NCLOB(:c) where num = :i";
const bindVar = {
2017-06-14 09:25:16 +08:00
i: { val: insertID, type: oracledb.NUMBER, dir: oracledb.BIND_IN},
c: { val: insertStr, type: oracledb.STRING, dir: oracledb.BIND_IN}
};
2023-02-21 10:53:17 +08:00
await connection.execute(sql, bindVar);
2017-06-14 09:25:16 +08:00
};
2023-08-17 16:11:49 +08:00
const bind_where = async function(tableName, insertStr) {
const sql = "select * from " + tableName + " where dbms_lob.compare(content, TO_NCLOB(:c)) = 0";
const bindVar = {
2017-06-14 09:25:16 +08:00
c: { val: insertStr, type: oracledb.STRING, dir: oracledb.BIND_IN}
};
2023-02-21 10:53:17 +08:00
let result = null;
result = await connection.execute(
2017-06-14 09:25:16 +08:00
sql,
bindVar,
{
fetchInfo: { CONTENT: { type: oracledb.STRING } }
2023-02-21 10:53:17 +08:00
});
assert.strictEqual(result.rows[0][0], insertID);
assert.strictEqual(result.rows[0][1], insertStr);
2017-06-14 09:25:16 +08:00
};
2023-08-17 16:11:49 +08:00
const streamLob = async function(tableName, originalStr) {
2023-02-21 10:53:17 +08:00
let result = null;
result = await connection.execute(
"SELECT TO_CLOB(content) FROM " + tableName + " where num = " + insertID);
await new Promise((resolve, reject) => {
let clob = '';
2023-08-17 16:11:49 +08:00
const lob = result.rows[0][0];
2023-02-21 10:53:17 +08:00
assert(lob);
lob.setEncoding('utf8'); // set the encoding so we get a 'string' not a 'buffer'
lob.on('data', function(chunk) {
clob += chunk;
});
lob.on('end', function() {
assert.strictEqual(clob.length, originalStr.length);
assert.strictEqual(clob, originalStr);
resolve();
2017-06-14 09:25:16 +08:00
});
2023-02-21 10:53:17 +08:00
lob.on('error', reject);
});
};
2017-06-14 09:25:16 +08:00
});