diff options
author | Keenan Brock <keenan@thebrocks.net> | 2016-04-20 23:36:05 -0400 |
---|---|---|
committer | Keenan Brock <keenan@thebrocks.net> | 2016-04-28 17:48:41 -0400 |
commit | ba05b3c218568467277ea309dcfd10d34bf8e756 (patch) | |
tree | 96ac34a85ac33aaba9c14ff99e9b87850d4162e8 | |
parent | dffbba1e2aed01748cfc79327946175ad51f6b4f (diff) | |
download | rails-ba05b3c218568467277ea309dcfd10d34bf8e756.tar.gz rails-ba05b3c218568467277ea309dcfd10d34bf8e756.tar.bz2 rails-ba05b3c218568467277ea309dcfd10d34bf8e756.zip |
test the number of times the schema is loading
-rw-r--r-- | activerecord/test/cases/schema_loading_test.rb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/activerecord/test/cases/schema_loading_test.rb b/activerecord/test/cases/schema_loading_test.rb new file mode 100644 index 0000000000..2815ccd842 --- /dev/null +++ b/activerecord/test/cases/schema_loading_test.rb @@ -0,0 +1,53 @@ +require 'thread' +require "cases/helper" + +module SchemaLoadCounter + extend ActiveSupport::Concern + + module ClassMethods + attr_accessor :load_schema_calls + + def load_schema! + self.load_schema_calls ||= 0 + self.load_schema_calls +=1 + super + end + end +end + +class SchemaLoadingTest < ActiveRecord::TestCase + def test_basic_model_is_loaded_once + klass = define_model + klass.new + assert_equal 1, klass.load_schema_calls + end + + def test_model_with_custom_lock_is_loaded_once + klass = define_model do |c| + c.table_name = :lock_without_defaults_cust + c.locking_column = :custom_lock_version + end + klass.new + assert_equal 1, klass.load_schema_calls + end + + def test_model_with_changed_custom_lock_is_loaded_twice + klass = define_model do |c| + c.table_name = :lock_without_defaults_cust + end + klass.new + klass.locking_column = :custom_lock_version + klass.new + assert_equal 2, klass.load_schema_calls + end + + private + + def define_model + Class.new(ActiveRecord::Base) do + include SchemaLoadCounter + self.table_name = :lock_without_defaults + yield self if block_given? + end + end +end |