Sha256: 8d568a0dac6c5a92332cfc9b3c358ebf3f8c621f72c9ffddb0d5d2b00a6d9992

Contents?: true

Size: 1.2 KB

Versions: 6

Compression:

Stored size: 1.2 KB

Contents

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/cases/schema_loading_test.rb
ibm_db-5.1.0-x86-mingw32 test/cases/schema_loading_test.rb
ibm_db-5.0.5-x86-mingw32 test/cases/schema_loading_test.rb
ibm_db-5.0.4-x86-mingw32 test/cases/schema_loading_test.rb
ibm_db-5.0.3-x86-mingw32 test/cases/schema_loading_test.rb
ibm_db-5.0.2-x86-mingw32 test/cases/schema_loading_test.rb