aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/connection_adapters/adapter_leasing_test.rb
blob: 662e19f35edb51a090577c3110fd2171056790c2 (plain) (tree)





















































                                                             
require "cases/helper"

module ActiveRecord
  module ConnectionAdapters
    class AdapterLeasingTest < ActiveRecord::TestCase
      class Pool < ConnectionPool
        def insert_connection_for_test!(c)
          synchronize do
            @connections << c
            @available.add c
          end
        end
      end

      def setup
        @adapter = AbstractAdapter.new nil, nil
      end

      def test_in_use?
        assert_not @adapter.in_use?, 'adapter is not in use'
        assert @adapter.lease, 'lease adapter'
        assert @adapter.in_use?, 'adapter is in use'
      end

      def test_lease_twice
        assert @adapter.lease, 'should lease adapter'
        assert_not @adapter.lease, 'should not lease adapter'
      end

      def test_expire_mutates_in_use
        assert @adapter.lease, 'lease adapter'
        assert @adapter.in_use?, 'adapter is in use'
        @adapter.expire
        assert_not @adapter.in_use?, 'adapter is in use'
      end

      def test_close
        pool = Pool.new(ConnectionSpecification.new({}, nil))
        pool.insert_connection_for_test! @adapter
        @adapter.pool = pool

        # Make sure the pool marks the connection in use
        assert_equal @adapter, pool.connection
        assert @adapter.in_use?

        # Close should put the adapter back in the pool
        @adapter.close
        assert_not @adapter.in_use?

        assert_equal @adapter, pool.connection
      end
    end
  end
end