aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/connection_test_mysql.rb
blob: e49a326d2ba699e7aa3aee0d1fba81ba211bbe54 (plain) (tree)
1
2
3

                                                 
                                                   


























                                                                      
require "#{File.dirname(__FILE__)}/abstract_unit"

class MysqlConnectionTest < ActiveSupport::TestCase
  def setup
    @connection = ActiveRecord::Base.connection
  end

  def test_no_automatic_reconnection_after_timeout
    assert @connection.active?
    @connection.update('set @@wait_timeout=1')
    sleep 2
    assert !@connection.active?
  end

  def test_successful_reconnection_after_timeout_with_manual_reconnect
    assert @connection.active?
    @connection.update('set @@wait_timeout=1')
    sleep 2
    @connection.reconnect!
    assert @connection.active?
  end

  def test_successful_reconnection_after_timeout_with_verify
    assert @connection.active?
    @connection.update('set @@wait_timeout=1')
    sleep 2
    @connection.verify!(0)
    assert @connection.active?
  end
end