Description
I have few tests that I run using simple-oracledb to check that nothing is broken for every new version of oracledb.
I tried it with oracledb 2 and it core dumps.
You can see it at:
https://travis-ci.org/sagiegurari/misc-test/builds/244591174#L463
Test Code at (it tests many different capabilities, insert/delete/update/select/LOBs and so on..):
https://github.com/sagiegurari/simple-oracledb/blob/master/test/spec/integration-spec.js
The build does the following:
- run docker image with oracle 11 (wnameless/oracle-xe-11g)
- run docker image with oci and node (collinestes/docker-node-oracle) and in the dockerfile it looks like it is node 6 and oci client 12 (https://hub.docker.com/r/collinestes/docker-node-oracle/~/dockerfile/)
- run tests inside the second docker after installing simple-oracledb, oracledb (dev2), mocha and so on...
You can see the above test definition for travis at (still playing with it to try it with oracle 12 docker image):
https://github.com/sagiegurari/misc-test/tree/oracle-docker
I have not investigated why it core dumps and which test exactly core dumps.
which latest oracledb version 1.13.1 the tests pass correctly:
https://travis-ci.org/sagiegurari/misc-test/builds/184018541