node-oracledb/test/dbObject2.js

246 lines
7.3 KiB
JavaScript

/* Copyright (c) 2019, 2023, Oracle and/or its affiliates. */
/******************************************************************************
*
* 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.
*
* 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.
* You may obtain a copy of the License at
*
* https://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.
*
* NAME
* 201. dbObject2.js
*
* DESCRIPTION
* Test the Oracle data type Object on TIMESTAMP.
*
*****************************************************************************/
'use strict';
const oracledb = require('oracledb');
const assert = require('assert');
const dbConfig = require('./dbconfig.js');
const testsUtil = require('./testsUtil.js');
describe('201. dbObject2.js', () => {
let conn;
const TYPE = 'NODB_TYP_OBJ_2';
const TABLE = 'NODB_TAB_OBJ2';
const proc1 =
`create or replace procedure nodb_getDataCursor1(p_cur out sys_refcursor) is
begin
open p_cur for
SELECT
* FROM
${TABLE}
WHERE num >= 100;
end; `;
const proc2 =
`create or replace procedure nodb_getDataCursor2(p_cur out sys_refcursor) is
begin
open p_cur for
SELECT
* FROM
${TABLE}
WHERE num >= 101;
end; `;
const proc3 =
`create or replace procedure nodb_getDataCursor3(
p_cur1 out sys_refcursor,
p_cur2 out sys_refcursor
) is
begin
nodb_getDataCursor1(p_cur1);
nodb_getDataCursor2(p_cur2);
end;`;
before(async () => {
conn = await oracledb.getConnection(dbConfig);
let sql =
`CREATE OR REPLACE TYPE ${TYPE} AS OBJECT (
entry TIMESTAMP,
exit TIMESTAMP
);`;
await conn.execute(sql);
sql =
`CREATE TABLE ${TABLE} (
num NUMBER,
person ${TYPE}
)`;
const plsql = testsUtil.sqlCreateTable(TABLE, sql);
await conn.execute(plsql);
}); // before()
after(async () => {
let sql = `DROP TABLE ${TABLE} PURGE`;
await conn.execute(sql);
sql = `DROP TYPE ${TYPE}`;
await conn.execute(sql);
await conn.execute(`DROP PROCEDURE nodb_getDataCursor3`);
await conn.execute(`DROP PROCEDURE nodb_getDataCursor2`);
await conn.execute(`DROP PROCEDURE nodb_getDataCursor1`);
await conn.close();
}); // after()
it.skip('201.1 insert an object with timestamp attributes', async () => {
let sql = `INSERT INTO ${TABLE} VALUES (:1, :2)`;
const date1 = new Date (1986, 8, 18, 12, 14, 27, 0);
const date2 = new Date (1989, 3, 4, 10, 27, 16, 201);
const objData = {
ENTRY: date1,
EXIT: date2
};
const objClass = await conn.getDbObjectClass(TYPE);
const testObj = new objClass(objData);
const seq = 101;
let result = await conn.execute(sql, [seq, testObj]);
assert.strictEqual(result.rowsAffected, 1);
await conn.commit();
sql = `SELECT * FROM ${TABLE} WHERE num = ${seq}`;
result = await conn.execute(sql);
// console.log('Queried data', result.rows[0][1]['ENTRY'].getTime());
// console.log('Inserted data', date1.getTime());
//assert.strictEqual(result.rows[0][1]['ENTRY'].getTime(), date1.getTime());
//assert.strictEqual(result.rows[0][1]['EXIT'].getTime(), date2.getTime());
}); // 201.1
it.skip('directly insert timestamp data', async () => {
const tabName = 'nodb_tmp';
let sql =
`CREATE TABLE ${tabName} (
num NUMBER,
content TIMESTAMP
)`;
const plsql = testsUtil.sqlCreateTable(tabName, sql);
await conn.execute(plsql);
sql = `INSERT INTO ${tabName} VALUES (:1, :2)`;
const date1 = new Date (1986, 8, 18, 12, 14, 27, 0);
let result = await conn.execute(sql, [111, date1]);
assert.strictEqual(result.rowsAffected, 1);
sql = `SELECT * FROM ${tabName}`;
result = await conn.execute(sql);
console.log('Queried data', result.rows[0][1].getTime());
console.log('Inserted data', date1.getTime());
sql = `DROP TABLE ${tabName} PURGE`;
await conn.execute(sql);
});
it('201.2 insert null values for timestamp attribute', async () => {
const seq = 102;
let sql = `INSERT INTO ${TABLE} VALUES (:1, :2)`;
const objData = {
ENTRY: null,
EXIT: null
};
const objClass = await conn.getDbObjectClass(TYPE);
const testObj = new objClass(objData);
let result = await conn.execute(sql, [seq, testObj]);
assert.strictEqual(result.rowsAffected, 1);
await conn.commit();
sql = `SELECT * FROM ${TABLE} WHERE num = ${seq}`;
result = await conn.execute(sql);
assert.strictEqual(result.rows[0][1]['ENTRY'], null);
assert.strictEqual(result.rows[0][1]['EXIT'], null);
}); // 201.2
it('201.3 insert undefined values for timestamp attribute', async () => {
const seq = 103;
let sql = `INSERT INTO ${TABLE} VALUES (:1, :2)`;
const objData = {
ENTRY: undefined,
EXIT: undefined
};
const objClass = await conn.getDbObjectClass(TYPE);
const testObj = new objClass(objData);
let result = await conn.execute(sql, [seq, testObj]);
assert.strictEqual(result.rowsAffected, 1);
await conn.commit();
sql = `SELECT * FROM ${TABLE} WHERE num = ${seq}`;
result = await conn.execute(sql);
assert.strictEqual(result.rows[0][1]['ENTRY'], null);
assert.strictEqual(result.rows[0][1]['EXIT'], null);
}); // 201.3
it('201.4 insert an empty JSON for timestamp attribute', async () => {
const seq = 104;
let sql = `INSERT INTO ${TABLE} VALUES (:1, :2)`;
const objClass = await conn.getDbObjectClass(TYPE);
const testObj = new objClass({});
let result = await conn.execute(sql, [seq, testObj]);
assert.strictEqual(result.rowsAffected, 1);
await conn.commit();
sql = `SELECT * FROM ${TABLE} WHERE num = ${seq}`;
result = await conn.execute(sql);
assert.strictEqual(result.rows[0][1]['ENTRY'], null);
assert.strictEqual(result.rows[0][1]['EXIT'], null);
}); // 201.4
it('201.5 call procedure with 2 OUT binds of DbObject', async function() {
await conn.execute(proc1);
await conn.execute(proc2);
await conn.execute(proc3);
const result = await conn.execute(
`BEGIN nodb_getDataCursor3(p_cur1 => :p_cur1,
p_cur2 => :p_cur2); end;`,
{
p_cur1: {type: oracledb.CURSOR, dir: oracledb.BIND_OUT},
p_cur2: {type: oracledb.CURSOR, dir: oracledb.BIND_OUT}
}
);
let resultSet = await result.outBinds.p_cur1.getRows();
assert.equal(resultSet.length, 3);
result.outBinds.p_cur1.close();
resultSet = await result.outBinds.p_cur2.getRows();
assert.equal(resultSet.length, 3);
result.outBinds.p_cur2.close();
}); // 201.5;
});