Sha256: bbfa9308bd998dcd8ed551ca9db0f2952a0e47d3f144dd5ef90648971a3b8059

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

require 'cases/helper'

class HotCompatibilityTest < ActiveRecord::TestCase
  self.use_transactional_fixtures = false

  setup do
    @klass = Class.new(ActiveRecord::Base) do
      connection.create_table :hot_compatibilities, force: true do |t|
        t.string :foo
        t.string :bar
      end

      def self.name; 'HotCompatibility'; end
    end
  end

  teardown do
    ActiveRecord::Base.connection.drop_table :hot_compatibilities
  end

  test "insert after remove_column" do
    # warm cache
    @klass.create!

    # we have 3 columns
    assert_equal 3, @klass.columns.length

    # remove one of them
    @klass.connection.remove_column :hot_compatibilities, :bar

    # we still have 3 columns in the cache
    assert_equal 3, @klass.columns.length

    # but we can successfully create a record so long as we don't
    # reference the removed column
    record = @klass.create! foo: 'foo'
    record.reload
    assert_equal 'foo', record.foo
  end

  test "update after remove_column" do
    record = @klass.create! foo: 'foo'
    assert_equal 3, @klass.columns.length
    @klass.connection.remove_column :hot_compatibilities, :bar
    assert_equal 3, @klass.columns.length

    record.reload
    assert_equal 'foo', record.foo
    record.foo = 'bar'
    record.save!
    record.reload
    assert_equal 'bar', record.foo
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
ibm_db-3.0.4-x86-mingw32 test/cases/hot_compatibility_test.rb
ibm_db-3.0.4 test/cases/hot_compatibility_test.rb
ibm_db-3.0.3-x86-mingw32 test/cases/hot_compatibility_test.rb
ibm_db-3.0.3 test/cases/hot_compatibility_test.rb
ibm_db-3.0.2-x86-mingw32 test/cases/hot_compatibility_test.rb
ibm_db-3.0.2 test/cases/hot_compatibility_test.rb
activejob-lock-0.0.2 rails/activerecord/test/cases/hot_compatibility_test.rb
ibm_db-3.0.1 test/cases/hot_compatibility_test.rb
ibm_db-3.0.1-x86-mingw32 test/cases/hot_compatibility_test.rb
activejob-lock-0.0.1 rails/activerecord/test/cases/hot_compatibility_test.rb