connection_test.rb 6.1 KB
Newer Older
1
require "cases/helper"
2
require 'support/connection_helper'
G
Guo Xiang Tan 已提交
3
require 'support/ddl_helper'
4

5
class MysqlConnectionTest < ActiveRecord::TestCase
6
  include ConnectionHelper
G
Guo Xiang Tan 已提交
7 8
  include DdlHelper

9 10 11
  class Klass < ActiveRecord::Base
  end

12
  def setup
13
    super
J
Jon Leighton 已提交
14
    @connection = ActiveRecord::Base.connection
15 16
  end

17 18
  def test_mysql_reconnect_attribute_after_connection_with_reconnect_true
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
19 20
      ActiveRecord::Base.establish_connection(orig_connection.merge({:reconnect => true}))
      assert ActiveRecord::Base.connection.raw_connection.reconnect
21 22 23
    end
  end

24 25 26 27
  unless ARTest.connection_config['arunit']['socket']
    def test_connect_with_url
      run_without_connection do
        ar_config = ARTest.connection_config['arunit']
28

29 30 31 32
        url = "mysql://#{ar_config["username"]}@localhost/#{ar_config["database"]}"
        Klass.establish_connection(url)
        assert_equal ar_config['database'], Klass.connection.current_database
      end
A
Aaron Patterson 已提交
33 34 35
    end
  end

36 37
  def test_mysql_reconnect_attribute_after_connection_with_reconnect_false
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
38 39
      ActiveRecord::Base.establish_connection(orig_connection.merge({:reconnect => false}))
      assert !ActiveRecord::Base.connection.raw_connection.reconnect
40 41 42
    end
  end

43 44 45 46 47
  def test_no_automatic_reconnection_after_timeout
    assert @connection.active?
    @connection.update('set @@wait_timeout=1')
    sleep 2
    assert !@connection.active?
48 49 50 51 52

    # Repair all fixture connections so other tests won't break.
    @fixture_connections.each do |c|
      c.verify!
    end
53 54 55 56 57 58 59 60 61 62 63 64 65 66
  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
67
    @connection.verify!
68
    assert @connection.active?
M
Mark Turner 已提交
69
  end
70

A
Aaron Patterson 已提交
71
  def test_bind_value_substitute
72
    bind_param = @connection.substitute_at('foo', 0)
A
Aaron Patterson 已提交
73 74 75 76
    assert_equal Arel.sql('?'), bind_param
  end

  def test_exec_no_binds
G
Guo Xiang Tan 已提交
77 78 79 80 81
    with_example_table do
      result = @connection.exec_query('SELECT id, data FROM ex')
      assert_equal 0, result.rows.length
      assert_equal 2, result.columns.length
      assert_equal %w{ id data }, result.columns
A
Aaron Patterson 已提交
82

G
Guo Xiang Tan 已提交
83
      @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
84

G
Guo Xiang Tan 已提交
85 86 87 88 89
      # if there are no bind parameters, it will return a string (due to
      # the libmysql api)
      result = @connection.exec_query('SELECT id, data FROM ex')
      assert_equal 1, result.rows.length
      assert_equal 2, result.columns.length
A
Aaron Patterson 已提交
90

G
Guo Xiang Tan 已提交
91 92
      assert_equal [['1', 'foo']], result.rows
    end
A
Aaron Patterson 已提交
93 94 95
  end

  def test_exec_with_binds
G
Guo Xiang Tan 已提交
96 97 98 99
    with_example_table do
      @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
      result = @connection.exec_query(
        'SELECT id, data FROM ex WHERE id = ?', nil, [[nil, 1]])
A
Aaron Patterson 已提交
100

G
Guo Xiang Tan 已提交
101 102
      assert_equal 1, result.rows.length
      assert_equal 2, result.columns.length
A
Aaron Patterson 已提交
103

G
Guo Xiang Tan 已提交
104 105
      assert_equal [[1, 'foo']], result.rows
    end
A
Aaron Patterson 已提交
106 107 108
  end

  def test_exec_typecasts_bind_vals
G
Guo Xiang Tan 已提交
109 110 111
    with_example_table do
      @connection.exec_query('INSERT INTO ex (id, data) VALUES (1, "foo")')
      column = @connection.columns('ex').find { |col| col.name == 'id' }
A
Aaron Patterson 已提交
112

G
Guo Xiang Tan 已提交
113 114
      result = @connection.exec_query(
        'SELECT id, data FROM ex WHERE id = ?', nil, [[column, '1-fuu']])
A
Aaron Patterson 已提交
115

G
Guo Xiang Tan 已提交
116 117
      assert_equal 1, result.rows.length
      assert_equal 2, result.columns.length
A
Aaron Patterson 已提交
118

G
Guo Xiang Tan 已提交
119 120
      assert_equal [[1, 'foo']], result.rows
    end
A
Aaron Patterson 已提交
121 122
  end

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

132 133 134 135 136
  def test_mysql_connection_collation_is_configured
    assert_equal 'utf8_unicode_ci', @connection.show_variable('collation_connection')
    assert_equal 'utf8_general_ci', ARUnit2Model.connection.show_variable('collation_connection')
  end

137 138 139 140 141
  def test_mysql_default_in_strict_mode
    result = @connection.exec_query "SELECT @@SESSION.sql_mode"
    assert_equal [["STRICT_ALL_TABLES"]], result.rows
  end

142
  def test_mysql_strict_mode_disabled
143
    run_without_connection do |orig_connection|
J
Jon Leighton 已提交
144
      ActiveRecord::Base.establish_connection(orig_connection.merge({:strict => false}))
145 146
      result = ActiveRecord::Base.connection.exec_query "SELECT @@SESSION.sql_mode"
      assert_equal [['']], result.rows
147 148 149
    end
  end

150 151 152 153 154 155 156 157
  def test_mysql_set_session_variable
    run_without_connection do |orig_connection|
      ActiveRecord::Base.establish_connection(orig_connection.deep_merge({:variables => {:default_week_format => 3}}))
      session_mode = ActiveRecord::Base.connection.exec_query "SELECT @@SESSION.DEFAULT_WEEK_FORMAT"
      assert_equal 3, session_mode.rows.first.first.to_i
    end
  end

158
  def test_mysql_sql_mode_variable_overrides_strict_mode
159 160 161 162 163 164 165
    run_without_connection do |orig_connection|
      ActiveRecord::Base.establish_connection(orig_connection.deep_merge(variables: { 'sql_mode' => 'ansi' }))
      result = ActiveRecord::Base.connection.exec_query 'SELECT @@SESSION.sql_mode'
      assert_not_equal [['STRICT_ALL_TABLES']], result.rows
    end
  end

166 167 168 169 170 171 172 173 174
  def test_mysql_set_session_variable_to_default
    run_without_connection do |orig_connection|
      ActiveRecord::Base.establish_connection(orig_connection.deep_merge({:variables => {:default_week_format => :default}}))
      global_mode = ActiveRecord::Base.connection.exec_query "SELECT @@GLOBAL.DEFAULT_WEEK_FORMAT"
      session_mode = ActiveRecord::Base.connection.exec_query "SELECT @@SESSION.DEFAULT_WEEK_FORMAT"
      assert_equal global_mode.rows, session_mode.rows
    end
  end

175 176
  private

G
Guo Xiang Tan 已提交
177 178 179 180 181 182 183
  def with_example_table(&block)
    definition ||= <<-SQL
      `id` int(11) auto_increment PRIMARY KEY,
      `data` varchar(255)
    SQL
    super(@connection, 'ex', definition, &block)
  end
184
end