Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
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 for relevant licenses.
See INSTALL for installation requirements and more details.
Note: the
test suite
is in GitHub. From node-oracledb 1.9.1 it is not included when
installing from npmjs.com with npm install oracledb
.
mkdir <some-directory>
cd <some-directory>
Clone the project repository:
cd <some-directory>
git clone https://github.com/oracle/node-oracledb.git
cd <some-directory>/node-oracledb
npm install
Running npm install
within the node-oracledb/ directory will recompile
oracledb and install all its dependent modules. These are listed
in the devDependencies
field of package.json
file. Thus, 'mocha', 'async'
and 'should' modules are installed by this command.
The test suite uses mocha, async and should.
The database credentials for node-oracledb test suite are defined in dbconfig.js
.
They can also be set via environment variables shown in that file.
vi <some-directory>/node-oracledb/test/dbconfig.js
module.exports = {
user : process.env.NODE_ORACLEDB_USER || "hr",
password : process.env.NODE_ORACLEDB_PASSWORD || "welcome",
connectString : process.env.NODE_ORACLEDB_CONNECTIONSTRING || "localhost/orcl"
};
To enable external authentication tests, please make sure Oracle Database
and the authentication service have been appropriately configured. See
Documentation for External Authentication
for more details. And then, set the environment variable NODE_ORACLEDB_EXTERNALAUTH
to be true
.
Note: the test suite requires a schema with these privileges:
- CREATE TABLE
- CREATE SESSION
- CREATE PROCEDURE
- CREATE SEQUENCE
- CREATE TRIGGER
export NODE_PATH=<some-directory>/node-oracledb/lib
cd <some-directory>/node-oracledb
npm test
This calls the test
script defined in oracledb/package.json
.
cd <some-directory>/node_oracledb
npm run testwindows
This calls the testwindows
script defined in oracledb/package.json
.
See npm scripts for more information
about how npm handles the "scripts" field of package.json
.
cd <some-directory>/node_oracledb
<mocha-executable-file-directory>/mocha test/<test-names>
See mochajs.org for more information on running tests with mocha.
See CONTRIBUTING for general information on contribution requirements.
For easy correlation between results and test code, each test is assigned a number. The following number ranges have been chosen:
- 1 - 20 are reserved for basic functional tests
- 21 - 50 are reserved for data type supporting tests
- 51 onwards are for other tests
In order to include your tests in the suite, add each new test file
name to test/opts/mocha.opts
.
Please also add a description of each individual test to the Test List.
See test/list.txt
for the list of existing tests.
-
We conduct base testing with Instant Client 11.2.0.4 and 12.1.0.2 on Linux X64 and Windows 7.
-
Users of 11.2.0.1 and 11.2.0.2 clients may see failures with poolTimeout.js and dataTypeDouble.js.
-
Slow networks may cause some tests to timeout.
You may encounter some troubles when running the test suite. These troubles might be caused by the concurrency issue of Mocha framework, network latencies, or database server issues. This section gives some issues that we ever saw and our solutions.
This error occurs when Node.js programs try to change database objects which hold locks. The workaround would be:
(1) Use unique DB object names for each test to avoid interference between test files. (2) Try not to use 'beforeEach' blocks for object operations to avoid the interference between cases.
This error occurs when the test suite takes up more sessions than the configured limit. You can alter the session limit on the database server side. If you do not have access to change the database session setting, you could use the below script to deliberately add an interval between tests.
arr=$(ls test/*js)
for case in ${arr[@]}
do
var="$NODE_PATH/../node_modules/.bin/mocha --timeout 10000 $case"
eval $var
sleep 1
done
You may encounter this error when the test suite sends more connection requests per second than the database is configured to handle.
There are two solutions:
-
Solution 1: Change database
RATE_LIMIT
configuration. This parameter defines the connection count allowed per second. See RATE_LIMIT for more information. -
Solution 2: Set the
RETRY_COUNT
andRETRY_DELAY
parameters in connectString.
For example, below is the connectString which could be defined in
tnsnames.ora
file.
dbaccess = (description=(RETRY_COUNT=20)(RETRY_DELAY=3)
(address=(protocol=tcps)(port=1521)(host=<db-host>))
(connect_data=(service_name=<service-name>))
(security=(my_wallet_directory=<wallet-location>)(ssl_server_cert_dn=<ssl-server-cert-dn>))
)