-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathdbType03.js
183 lines (157 loc) · 6.1 KB
/
dbType03.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* Copyright (c) 2019, 2022, 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
* 229. dbType03.js
*
* DESCRIPTION
* Test binding data of types DB_TYPE_BINARY_FLOAT and DB_TYPE_BINARY_DOUBLE.
*
*****************************************************************************/
'use strict';
const oracledb = require('oracledb');
const assert = require('assert');
const dbConfig = require('./dbconfig.js');
const testsUtil = require('./testsUtil.js');
describe('229. dbType03.js', () => {
let conn;
const TABLE = `NODB_TAB_BFBD`;
before(async () => {
conn = await oracledb.getConnection(dbConfig);
const sql = `create table ${TABLE} (id number,
bf binary_float, bd binary_double)`;
const plsql = testsUtil.sqlCreateTable(TABLE, sql);
await conn.execute(plsql);
});
after(async () => {
const sql = `drop table ${TABLE} purge`;
await conn.execute(sql);
await conn.close();
});
function ApproxEql(v1, v2) {
const precision = 0.001;
return Math.abs(v1 - v2) < precision;
}
it('229.1 IN binds binary_float and binary_double', async () => {
const NUM = 1;
let sql = `insert into ${TABLE} values (:1, :2, :3)`;
const binds = [
NUM,
{ val: 1.23, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: 3.45678, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
let result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
sql = `select * from ${TABLE} where id = ${NUM}`;
result = await conn.execute(sql);
assert.strictEqual(binds[0], result.rows[0][0]);
let nearlyEqual = false;
nearlyEqual = ApproxEql(binds[1].val, result.rows[0][1]);
assert.strictEqual(nearlyEqual, true);
nearlyEqual = ApproxEql(binds[2].val, result.rows[0][2]);
assert.strictEqual(nearlyEqual, true);
}); // 229.1
it('229.2 OUT binds', async () => {
const NUM = 2;
const num1 = 2.345;
const num2 = 9876.54321;
const sql = `insert into ${TABLE} values (:1, :2, :3)
returning bf, bd into :4, :5`;
const binds = [
NUM,
{ val: num1, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: num2, type: oracledb.DB_TYPE_BINARY_DOUBLE },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
const result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
let nearlyEqual = false;
nearlyEqual = ApproxEql(num1, result.outBinds[0][0]);
assert.strictEqual(nearlyEqual, true);
nearlyEqual = ApproxEql(num2, result.outBinds[1][0]);
assert.strictEqual(nearlyEqual, true);
}); // 229.2
it('229.3 IN bind Infinity number', async () => {
const NUM = 3;
let sql = `insert into ${TABLE} values (:1, :2, :3)`;
const binds = [
NUM,
{ val: Infinity, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: -Infinity, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
let result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
sql = `select * from ${TABLE} where id = ${NUM}`;
result = await conn.execute(sql);
assert.strictEqual(Infinity, result.rows[0][1]);
assert.strictEqual(-Infinity, result.rows[0][2]);
}); // 229.3
it('229.4 OUT bind Infinity number', async () => {
const NUM = 4;
const sql = `insert into ${TABLE} values (:1, :2, :3)
returning bf, bd into :4, :5`;
const binds = [
NUM,
{ val: -Infinity, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: Infinity, type: oracledb.DB_TYPE_BINARY_DOUBLE },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
const result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
assert.strictEqual(-Infinity, result.outBinds[0][0]);
assert.strictEqual(Infinity, result.outBinds[1][0]);
}); // 229.4
it('229.5 IN bind NaN', async () => {
const NUM = 5;
let sql = `insert into ${TABLE} values (:1, :2, :3)`;
const binds = [
NUM,
{ val: NaN, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: NaN, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
let result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
sql = `select * from ${TABLE} where id = ${NUM}`;
result = await conn.execute(sql);
assert.strictEqual(result.rows[0][1], NaN);
assert.strictEqual(result.rows[0][2], NaN);
}); // 229.5
it('229.6 OUT bind NaN', async () => {
const NUM = 6;
const sql = `insert into ${TABLE} values (:1, :2, :3)
returning bf, bd into :4, :5`;
const binds = [
NUM,
{ val: NaN, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ val: NaN, type: oracledb.DB_TYPE_BINARY_DOUBLE },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_FLOAT },
{ dir: oracledb.BIND_OUT, type: oracledb.DB_TYPE_BINARY_DOUBLE }
];
const result = await conn.execute(sql, binds);
assert.strictEqual(1, result.rowsAffected);
assert.strictEqual(result.outBinds[0][0], NaN);
assert.strictEqual(result.outBinds[1][0], NaN);
}); // 229.6
});