aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections
diff options
context:
space:
mode:
authorRaimonds Simanovskis <raimonds.simanovskis@gmail.com>2010-08-24 01:46:02 +0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-08-23 10:50:21 -0700
commit2fc29524e1bb44b7e6c332f7e0d7db269a30ba49 (patch)
tree726d848b93ffb55a35807c97c1de60587543b2d0 /activerecord/test/connections
parent3538dc0d7aaf11b7d6952d43d320ee226b57fd40 (diff)
downloadrails-2fc29524e1bb44b7e6c332f7e0d7db269a30ba49.tar.gz
rails-2fc29524e1bb44b7e6c332f7e0d7db269a30ba49.tar.bz2
rails-2fc29524e1bb44b7e6c332f7e0d7db269a30ba49.zip
use database from ARUNIT_DB_NAME environment variable when running tests on Oracle
Diffstat (limited to 'activerecord/test/connections')
-rw-r--r--activerecord/test/connections/native_oracle/connection.rb22
1 files changed, 3 insertions, 19 deletions
diff --git a/activerecord/test/connections/native_oracle/connection.rb b/activerecord/test/connections/native_oracle/connection.rb
index 00164466f2..9a717018b2 100644
--- a/activerecord/test/connections/native_oracle/connection.rb
+++ b/activerecord/test/connections/native_oracle/connection.rb
@@ -8,32 +8,22 @@ print "Using Oracle\n"
require_dependency 'models/course'
require 'logger'
-# ActiveRecord::Base.logger = Logger.new STDOUT
-# ActiveRecord::Base.logger.level = Logger::WARN
ActiveRecord::Base.logger = Logger.new("debug.log")
# Set these to your database connection strings
-db = ENV['ARUNIT_DB_NAME'] = 'orcl'
+ENV['ARUNIT_DB_NAME'] ||= 'orcl'
ActiveRecord::Base.configurations = {
'arunit' => {
:adapter => 'oracle_enhanced',
- :database => db,
- :host => "localhost", # used just by JRuby to construct JDBC connect string
- # :adapter => "jdbc",
- # :driver => "oracle.jdbc.driver.OracleDriver",
- # :url => "jdbc:oracle:thin:@localhost:1521:#{db}",
+ :database => ENV['ARUNIT_DB_NAME'],
:username => 'arunit',
:password => 'arunit',
:emulate_oracle_adapter => true
},
'arunit2' => {
:adapter => 'oracle_enhanced',
- :database => db,
- :host => "localhost", # used just by JRuby to construct JDBC connect string
- # :adapter => "jdbc",
- # :driver => "oracle.jdbc.driver.OracleDriver",
- # :url => "jdbc:oracle:thin:@localhost:1521:#{db}",
+ :database => ENV['ARUNIT_DB_NAME'],
:username => 'arunit2',
:password => 'arunit2',
:emulate_oracle_adapter => true
@@ -43,9 +33,6 @@ ActiveRecord::Base.configurations = {
ActiveRecord::Base.establish_connection 'arunit'
Course.establish_connection 'arunit2'
-# ActiveRecord::Base.connection.execute %q{alter session set nls_date_format = 'YYYY-MM-DD HH24:MI:SS'}
-# ActiveRecord::Base.connection.execute %q{alter session set nls_timestamp_format = 'YYYY-MM-DD HH24:MI:SS'} rescue nil
-
# for assert_queries test helper
ActiveRecord::Base.connection.class.class_eval do
IGNORED_SELECT_SQL = [/^select .*nextval/i, /^SAVEPOINT/, /^ROLLBACK TO/, /^\s*select .* from ((all|user)_tab_columns|(all|user)_triggers|(all|user)_constraints)/im]
@@ -58,6 +45,3 @@ ActiveRecord::Base.connection.class.class_eval do
alias_method_chain :select, :query_record
end
-
-# For JRuby Set default $KCODE to UTF8
-$KCODE = "UTF8" if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'