[112] Detect SQLite3 version on JRuby
This commit is contained in:
parent
79ed4920cf
commit
18247a6c58
@ -66,10 +66,14 @@ module ChiliProject
|
|||||||
version = ActiveRecord::Base.connection.select_value('SELECT version()')
|
version = ActiveRecord::Base.connection.select_value('SELECT version()')
|
||||||
raw ? version : version.match(/^PostgreSQL (\S+)/i)[1]
|
raw ? version : version.match(/^PostgreSQL (\S+)/i)[1]
|
||||||
when :sqlite
|
when :sqlite
|
||||||
if SQLite3.const_defined? 'SQLITE_VERSION'
|
if RUBY_ENGINE == 'jruby'
|
||||||
SQLite3::SQLITE_VERSION
|
Jdbc::SQLite3::VERSION
|
||||||
else
|
else
|
||||||
SQLite3::Driver::Native::API.sqlite3_libversion
|
if SQLite3.const_defined? 'SQLITE_VERSION'
|
||||||
|
SQLite3::SQLITE_VERSION
|
||||||
|
else
|
||||||
|
SQLite3::Driver::Native::API.sqlite3_libversion
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -36,22 +36,53 @@ class ChiliProject::DatabaseTest < ActiveSupport::TestCase
|
|||||||
begin
|
begin
|
||||||
ChiliProject::Database.stubs(:adapter_name).returns "SQLite"
|
ChiliProject::Database.stubs(:adapter_name).returns "SQLite"
|
||||||
|
|
||||||
# if we run the tests on sqlite, just stub the version method
|
if RUBY_ENGINE == 'jruby'
|
||||||
if Object.const_defined? 'SQLite3'
|
# If we have the SQLite3 gem installed, save the old constant
|
||||||
SQLite3::Driver::Native::API.stubs(:sqlite3_libversion).returns "1.2.3"
|
if Object.const_defined?('Jdbc') && Jdbc::SQLite3.const_defined?('SQLite3')
|
||||||
|
sqlite3_version = Jdbc::SQLite3::VERSION
|
||||||
|
# else create the module for this test
|
||||||
|
else
|
||||||
|
module ::Jdbc; module SQLite3; end ;end
|
||||||
|
created_module = true
|
||||||
|
end
|
||||||
|
silence_warnings { ::Jdbc::SQLite3.const_set('VERSION', "1.2.3") }
|
||||||
else
|
else
|
||||||
# if we don't have any sqlite3 module, stub the whole module
|
# If we run the tests on a newer SQLite3, stub the VERSION constant
|
||||||
module ::SQLite3; module Driver; module Native; module API
|
if Object.const_defined?('SQLite3') && SQLite3.const_defined?('SQLITE_VERSION')
|
||||||
def self.sqlite3_libversion; "1.2.3"; end
|
sqlite3_version = SQLite3::SQLITE_VERSION
|
||||||
end; end; end; end
|
silence_warnings { ::SQLite3.const_set('SQLITE_VERSION', "1.2.3") }
|
||||||
created_stub = true
|
# On an older SQLite3, stub the C-provided sqlite3_libversion method
|
||||||
|
elsif %w(SQLite3 Driver Native API).inject(Object){ |m, defined|
|
||||||
|
m = (m && m.const_defined?(defined)) ? m.const_get(defined) : false
|
||||||
|
}
|
||||||
|
SQLite3::Driver::Native::API.stubs('sqlite3_libversion').returns "1.2.3"
|
||||||
|
# Fallback if nothing else worked: Stub the old SQLite3 API
|
||||||
|
else
|
||||||
|
# if we don't have any sqlite3 module, stub the whole module
|
||||||
|
module ::SQLite3; module Driver; module Native; module API
|
||||||
|
def self.sqlite3_libversion; "1.2.3"; end
|
||||||
|
end; end; end; end
|
||||||
|
created_module = true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_equal "1.2.3", ChiliProject::Database.version
|
assert_equal "1.2.3", ChiliProject::Database.version
|
||||||
assert_equal "1.2.3", ChiliProject::Database.version(true)
|
assert_equal "1.2.3", ChiliProject::Database.version(true)
|
||||||
ensure
|
ensure
|
||||||
# Clean up after us
|
# Clean up after us
|
||||||
Object.instance_eval{remove_const :SQLite3 } if created_stub
|
if RUBY_ENGINE == 'jruby'
|
||||||
|
if created_module
|
||||||
|
Jdbc.instance_eval{remove_const 'SQLite3' }
|
||||||
|
elsif sqlite3_version
|
||||||
|
silence_warnings { Jdbc::SQLite3.const_set('VERSION', sqlite3_version) }
|
||||||
|
end
|
||||||
|
else
|
||||||
|
if created_module
|
||||||
|
Object.instance_eval{remove_const 'SQLite3' }
|
||||||
|
elsif sqlite3_version
|
||||||
|
silence_warnings { SQLite3.const_set('SQLITE_VERSION', sqlite3_version) }
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user