Sha256: a65f3c5ff018446df722023d8b672cae36daf9a5f909c30adb8358082af83b75

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

# frozen_string_literal: true

require "cases/helper"

class TestRecord < ActiveRecord::Base
end

class TestUnconnectedAdapter < ActiveRecord::TestCase
  self.use_transactional_tests = false

  def setup
    @underlying = ActiveRecord::Base.connection
    @specification = ActiveRecord::Base.remove_connection

    # Clear out connection info from other pids (like a fork parent) too
    ActiveRecord::ConnectionAdapters::PoolConfig.discard_pools!
  end

  teardown do
    @underlying = nil
    ActiveRecord::Base.establish_connection(@specification)
    load_schema if in_memory_db?
  end

  def test_connection_no_longer_established
    assert_raise(ActiveRecord::ConnectionNotEstablished) do
      TestRecord.find(1)
    end

    assert_raise(ActiveRecord::ConnectionNotEstablished) do
      TestRecord.new.save
    end
  end

  def test_error_message_when_connection_not_established
    error = assert_raise(ActiveRecord::ConnectionNotEstablished) do
      TestRecord.find(1)
    end

    assert_equal "No connection pool for 'ActiveRecord::Base' found.", error.message
  end

  def test_underlying_adapter_no_longer_active
    assert_not @underlying.active?, "Removed adapter should no longer be active"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ibm_db-5.5.0-x86-mingw32 test/cases/unconnected_test.rb
ibm_db-5.4.1-x86-mingw32 test/cases/unconnected_test.rb
ibm_db-5.4.0-x86-mingw32 test/cases/unconnected_test.rb
ibm_db-5.3.2-x86-mingw32 test/cases/unconnected_test.rb