mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
39814fcce0
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8681 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
30 lines
767 B
Ruby
30 lines
767 B
Ruby
require "cases/helper"
|
|
|
|
class MysqlConnectionTest < ActiveRecord::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
|