connection_test.rb 5.0 KB
Newer Older
1
require "cases/helper"
2

3
class MysqlConnectionTest < ActiveRecord::TestCase
4
  def setup
5
    super
J
Jon Leighton 已提交
6
    @connection = ActiveRecord::Base.connection
7 8
  end

9 10
  def test_mysql_reconnect_attribute_after_connection_with_reconnect_true
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
11 12
      ActiveRecord::Base.establish_connection(orig_connection.merge({:reconnect => true}))
      assert ActiveRecord::Base.connection.raw_connection.reconnect
13 14 15
    end
  end

A
Aaron Patterson 已提交
16 17 18 19 20 21 22 23 24 25
  def test_connect_with_url
    run_without_connection do |orig|
      ar_config = ARTest.connection_config['arunit']
      url = "mysql://#{ar_config["username"]}@localhost/#{ar_config["database"]}"
      klass = Class.new(ActiveRecord::Base)
      klass.establish_connection(url)
      assert_equal ar_config['database'], klass.connection.current_database
    end
  end

26 27
  def test_mysql_reconnect_attribute_after_connection_with_reconnect_false
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
28 29
      ActiveRecord::Base.establish_connection(orig_connection.merge({:reconnect => false}))
      assert !ActiveRecord::Base.connection.raw_connection.reconnect
30 31 32
    end
  end

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  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
52
    @connection.verify!
53
    assert @connection.active?
M
Mark Turner 已提交
54
  end
55

A
Aaron Patterson 已提交
56
  def test_bind_value_substitute
57
    bind_param = @connection.substitute_at('foo', 0)
A
Aaron Patterson 已提交
58 59 60 61
    assert_equal Arel.sql('?'), bind_param
  end

  def test_exec_no_binds
62 63
    @connection.exec_query('drop table if exists ex')
    @connection.exec_query(<<-eosql)
A
Aaron Patterson 已提交
64 65 66
      CREATE TABLE `ex` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
        `data` varchar(255))
    eosql
67
    result = @connection.exec_query('SELECT id, data FROM ex')
A
Aaron Patterson 已提交
68 69 70 71
    assert_equal 0, result.rows.length
    assert_equal 2, result.columns.length
    assert_equal %w{ id data }, result.columns

72
    @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
73 74 75

    # if there are no bind parameters, it will return a string (due to
    # the libmysql api)
76
    result = @connection.exec_query('SELECT id, data FROM ex')
A
Aaron Patterson 已提交
77 78 79
    assert_equal 1, result.rows.length
    assert_equal 2, result.columns.length

80
    assert_equal [['1', 'foo']], result.rows
A
Aaron Patterson 已提交
81 82 83
  end

  def test_exec_with_binds
84 85
    @connection.exec_query('drop table if exists ex')
    @connection.exec_query(<<-eosql)
A
Aaron Patterson 已提交
86 87 88
      CREATE TABLE `ex` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
        `data` varchar(255))
    eosql
89 90
    @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
    result = @connection.exec_query(
A
Aaron Patterson 已提交
91 92 93 94 95 96 97 98 99
      'SELECT id, data FROM ex WHERE id = ?', nil, [[nil, 1]])

    assert_equal 1, result.rows.length
    assert_equal 2, result.columns.length

    assert_equal [[1, 'foo']], result.rows
  end

  def test_exec_typecasts_bind_vals
100 101
    @connection.exec_query('drop table if exists ex')
    @connection.exec_query(<<-eosql)
A
Aaron Patterson 已提交
102 103 104
      CREATE TABLE `ex` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
        `data` varchar(255))
    eosql
105
    @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
A
Aaron Patterson 已提交
106 107
    column = @connection.columns('ex').find { |col| col.name == 'id' }

108
    result = @connection.exec_query(
A
Aaron Patterson 已提交
109 110 111 112 113 114 115 116
      'SELECT id, data FROM ex WHERE id = ?', nil, [[column, '1-fuu']])

    assert_equal 1, result.rows.length
    assert_equal 2, result.columns.length

    assert_equal [[1, 'foo']], result.rows
  end

117
  # Test that MySQL allows multiple results for stored procedures
M
Marcin Raczkowski 已提交
118
  if defined?(Mysql) && Mysql.const_defined?(:CLIENT_MULTI_RESULTS)
119
    def test_multi_results
J
Jon Leighton 已提交
120
      rows = ActiveRecord::Base.connection.select_rows('CALL ten();')
121
      assert_equal 10, rows[0][0].to_i, "ten() did not return 10 as expected: #{rows.inspect}"
122
      assert @connection.active?, "Bad connection use by 'MysqlAdapter.select_rows'"
123
    end
124
  end
125

126 127 128 129 130
  def test_mysql_default_in_strict_mode
    result = @connection.exec_query "SELECT @@SESSION.sql_mode"
    assert_equal [["STRICT_ALL_TABLES"]], result.rows
  end

131
  def test_mysql_strict_mode_disabled_dont_override_global_sql_mode
132
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
133 134 135
      ActiveRecord::Base.establish_connection(orig_connection.merge({:strict => false}))
      global_sql_mode = ActiveRecord::Base.connection.exec_query "SELECT @@GLOBAL.sql_mode"
      session_sql_mode = ActiveRecord::Base.connection.exec_query "SELECT @@SESSION.sql_mode"
136
      assert_equal global_sql_mode.rows, session_sql_mode.rows
137 138 139
    end
  end

140 141 142
  private

  def run_without_connection
J
Jon Leighton 已提交
143
    original_connection = ActiveRecord::Base.remove_connection
144 145 146
    begin
      yield original_connection
    ensure
J
Jon Leighton 已提交
147
      ActiveRecord::Base.establish_connection(original_connection)
148 149
    end
  end
150
end