mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
0965863564
I’m renaming all instances of `use_transcational_fixtures` to `use_transactional_tests` and “transactional fixtures” to “transactional tests”. I’m deprecating `use_transactional_fixtures=`. So anyone who is explicitly setting this will get a warning telling them to use `use_transactional_tests=` instead. I’m maintaining backwards compatibility—both forms will work. `use_transactional_tests` will check to see if `use_transactional_fixtures` is set and use that, otherwise it will use itself. But because `use_transactional_tests` is a class attribute (created with `class_attribute`) this requires a little bit of hoop jumping. The writer method that `class_attribute` generates defines a new reader method that return the value being set. Which means we can’t set the default of `true` using `use_transactional_tests=` as was done previously because that won’t take into account anyone using `use_transactional_fixtures`. Instead I defined the reader method manually and it checks `use_transactional_fixtures`. If it was set then it should be used, otherwise it should return the default, which is `true`. If someone uses `use_transactional_tests=` then it will overwrite the backwards-compatible method with whatever they set.
91 lines
2.7 KiB
Ruby
91 lines
2.7 KiB
Ruby
require 'abstract_unit'
|
|
|
|
# Define the essentials
|
|
class ActiveRecordTestConnector
|
|
cattr_accessor :able_to_connect
|
|
cattr_accessor :connected
|
|
|
|
# Set our defaults
|
|
self.connected = false
|
|
self.able_to_connect = true
|
|
end
|
|
|
|
# Try to grab AR
|
|
unless defined?(ActiveRecord) && defined?(FixtureSet)
|
|
begin
|
|
PATH_TO_AR = "#{File.dirname(__FILE__)}/../../activerecord/lib"
|
|
raise LoadError, "#{PATH_TO_AR} doesn't exist" unless File.directory?(PATH_TO_AR)
|
|
$LOAD_PATH.unshift PATH_TO_AR
|
|
require 'active_record'
|
|
rescue LoadError => e
|
|
$stderr.print "Failed to load Active Record. Skipping Active Record assertion tests: #{e}"
|
|
ActiveRecordTestConnector.able_to_connect = false
|
|
end
|
|
end
|
|
$stderr.flush
|
|
|
|
|
|
# Define the rest of the connector
|
|
class ActiveRecordTestConnector
|
|
class << self
|
|
def setup
|
|
unless self.connected || !self.able_to_connect
|
|
setup_connection
|
|
load_schema
|
|
require_fixture_models
|
|
self.connected = true
|
|
end
|
|
rescue Exception => e # errors from ActiveRecord setup
|
|
$stderr.puts "\nSkipping ActiveRecord assertion tests: #{e}"
|
|
#$stderr.puts " #{e.backtrace.join("\n ")}\n"
|
|
self.able_to_connect = false
|
|
end
|
|
|
|
private
|
|
def setup_connection
|
|
if Object.const_defined?(:ActiveRecord)
|
|
defaults = { :database => ':memory:' }
|
|
adapter = defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'
|
|
options = defaults.merge :adapter => adapter, :timeout => 500
|
|
ActiveRecord::Base.establish_connection(options)
|
|
ActiveRecord::Base.configurations = { 'sqlite3_ar_integration' => options }
|
|
ActiveRecord::Base.connection
|
|
|
|
Object.send(:const_set, :QUOTED_TYPE, ActiveRecord::Base.connection.quote_column_name('type')) unless Object.const_defined?(:QUOTED_TYPE)
|
|
else
|
|
raise "Can't setup connection since ActiveRecord isn't loaded."
|
|
end
|
|
end
|
|
|
|
# Load actionpack sqlite3 tables
|
|
def load_schema
|
|
File.read(File.dirname(__FILE__) + "/fixtures/db_definitions/sqlite.sql").split(';').each do |sql|
|
|
ActiveRecord::Base.connection.execute(sql) unless sql.blank?
|
|
end
|
|
end
|
|
|
|
def require_fixture_models
|
|
Dir.glob(File.dirname(__FILE__) + "/fixtures/*.rb").each {|f| require f}
|
|
end
|
|
end
|
|
end
|
|
|
|
class ActiveRecordTestCase < ActionController::TestCase
|
|
include ActiveRecord::TestFixtures
|
|
|
|
# Set our fixture path
|
|
if ActiveRecordTestConnector.able_to_connect
|
|
self.fixture_path = [FIXTURE_LOAD_PATH]
|
|
self.use_transactional_tests = false
|
|
end
|
|
|
|
def self.fixtures(*args)
|
|
super if ActiveRecordTestConnector.connected
|
|
end
|
|
|
|
def run(*args)
|
|
super if ActiveRecordTestConnector.connected
|
|
end
|
|
end
|
|
|
|
ActiveRecordTestConnector.setup
|