OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/test/unit/lib/chili_project/database_test.rb

101 lines
3.8 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require File.expand_path('../../../../test_helper', __FILE__)
class ChiliProject::DatabaseTest < ActiveSupport::TestCase
setup do
ChiliProject::Database.stubs(:adapter_name).returns "SQLite"
end
14 years ago
should "return the correct identifier" do
assert_equal :sqlite, ChiliProject::Database.name
end
should "be able to use the helper methods" do
assert_equal false, ChiliProject::Database.mysql?
assert_equal false, ChiliProject::Database.postgresql?
assert_equal true, ChiliProject::Database.sqlite?
end
14 years ago
should "return a version string for SQLite3" do
begin
ChiliProject::Database.stubs(:adapter_name).returns "SQLite"
if Object.const_defined?('RUBY_ENGINE') && ::RUBY_ENGINE == 'jruby'
# If we have the SQLite3 gem installed, save the old constant
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
# If we run the tests on a newer SQLite3, stub the VERSION constant
if Object.const_defined?('SQLite3') && SQLite3.const_defined?('SQLITE_VERSION')
sqlite3_version = SQLite3::SQLITE_VERSION
silence_warnings { ::SQLite3.const_set('SQLITE_VERSION', "1.2.3") }
# 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
assert_equal "1.2.3", ChiliProject::Database.version
assert_equal "1.2.3", ChiliProject::Database.version(true)
ensure
# Clean up after us
if Object.const_defined?('RUBY_ENGINE') && ::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
14 years ago
should "return a version string for PostgreSQL" do
ChiliProject::Database.stubs(:adapter_name).returns "PostgreSQL"
raw_version = "PostgreSQL 8.3.11 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.3.real (Debian 4.3.2-1.1) 4.3.2"
ActiveRecord::Base.connection.stubs(:select_value).returns raw_version
14 years ago
assert_equal "8.3.11", ChiliProject::Database.version
assert_equal raw_version, ChiliProject::Database.version(true)
end
14 years ago
should "return a version string for MySQL" do
ChiliProject::Database.stubs(:adapter_name).returns "MySQL"
ActiveRecord::Base.connection.stubs(:select_value).returns "5.1.2"
assert_equal "5.1.2", ChiliProject::Database.version
assert_equal "5.1.2", ChiliProject::Database.version(true)
end
end