Sha256: a2969c62dc5eeba90450d9051f60bbe4daa0d0e4cc70558cb843c467669a6071

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

# frozen_string_literal: true

require "cases/helper"

class Mysql2DatetimePrecisionQuotingTest < ActiveRecord::Mysql2TestCase
  setup do
    @connection = ActiveRecord::Base.connection
  end

  test "microsecond precision for MySQL gte 5.6.4" do
    stub_version "5.6.4" do
      assert_microsecond_precision
    end
  end

  test "no microsecond precision for MySQL lt 5.6.4" do
    stub_version "5.6.3" do
      assert_no_microsecond_precision
    end
  end

  test "microsecond precision for MariaDB gte 5.3.0" do
    stub_version "5.5.5-10.1.8-MariaDB-log" do
      assert_microsecond_precision
    end
  end

  private
    def assert_microsecond_precision
      assert_match_quoted_microsecond_datetime(/\.123456\z/)
    end

    def assert_no_microsecond_precision
      assert_match_quoted_microsecond_datetime(/:55\z/)
    end

    def assert_match_quoted_microsecond_datetime(match)
      assert_match match, @connection.quoted_date(Time.now.change(sec: 55, usec: 123456))
    end

    def stub_version(full_version_string)
      @connection.stub(:get_full_version, full_version_string) do
        @connection.schema_cache.clear!
        yield
      end
    ensure
      @connection.schema_cache.clear!
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ibm_db-5.5.0-x86-mingw32 test/cases/adapters/mysql2/datetime_precision_quoting_test.rb
ibm_db-5.4.1-x86-mingw32 test/cases/adapters/mysql2/datetime_precision_quoting_test.rb
ibm_db-5.4.0-x86-mingw32 test/cases/adapters/mysql2/datetime_precision_quoting_test.rb
ibm_db-5.3.2-x86-mingw32 test/cases/adapters/mysql2/datetime_precision_quoting_test.rb