Skip to content

Latest commit

 

History

History
45 lines (25 loc) · 2.32 KB

RUNNING_TESTS.md

File metadata and controls

45 lines (25 loc) · 2.32 KB

Creating the test database

You need Oracle database (version 10.2 or later) with SYS and SYSTEM user access.

If you are on a Mac OS X 10.6 then use these instructions to install local Oracle DB 10.2.0.4. Other option is to use Linux VM and install Oracle DB on it.

If you are on Linux (or will use Linux virtual machine) and need Oracle DB just for running tests then Oracle DB XE edition is enough. See Oracle XE downloads page for download links and instructions.

If you are getting ORA-12520 errors when running tests then it means that Oracle cannot create enough processes to handle many connections (as during tests many connections are created and destroyed). In this case you need to log in as SYSTEM user and execute e.g.

alter system set processes=200 scope=spfile;

to increase process limit and then restart the database (this will be necessary if Oracle XE will be used as default processes limit is 40).

Ruby versions

It is recommended to use RVM to run tests with different Ruby implementations. oracle_enhanced is mainly tested with MRI 1.8.7 (all Rails versions) and 1.9.2 (Rails 3) and JRuby 1.6.

Running tests

  • Create Oracle database schema for test purposes. Review spec/spec_helper.rb to see default schema/user names and database names (use environment variables to override defaults)

      SQL> CREATE USER oracle_enhanced IDENTIFIED BY oracle_enhanced;
      SQL> GRANT unlimited tablespace, create session, create table, create sequence, create procedure, create trigger, create view, create materialized view, create database link, create synonym, create type, ctxapp TO oracle_enhanced;
    
  • If you use RVM then switch to corresponding Ruby (1.8.7, 1.9.2 or JRuby) and it is recommended to create isolated gemset for test purposes (e.g. rvm create gemset oracle_enhanced)

  • Install bundler with

      gem install bundler
    
  • Set RAILS_GEM_VERSION to Rails version that you would like to use in oracle_enhanced tests, e.g.

      export RAILS_GEM_VERSION=3.0.3
    
  • Install necessary gems with

      bundle install
    
  • Run tests with

      rake spec