mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
be806d8696
(cherry picked from commit e2093c1f678175bde7c37c848686d979427346e1) (cherry picked from commit d7dbe48273bd9e0adb1de5b52e3cdaeb4a65630b)
40 lines
998 B
Ruby
40 lines
998 B
Ruby
require "test_helper"
|
|
require_relative "common"
|
|
|
|
require "active_record"
|
|
|
|
class PostgresqlAdapterTest < ActionCable::TestCase
|
|
include CommonSubscriptionAdapterTest
|
|
|
|
def setup
|
|
database_config = { "adapter" => "postgresql", "database" => "activerecord_unittest" }
|
|
ar_tests = File.expand_path("../../../activerecord/test", __dir__)
|
|
if Dir.exist?(ar_tests)
|
|
require File.join(ar_tests, "config")
|
|
require File.join(ar_tests, "support/config")
|
|
local_config = ARTest.config["connections"]["postgresql"]["arunit"]
|
|
database_config.update local_config if local_config
|
|
end
|
|
|
|
ActiveRecord::Base.establish_connection database_config
|
|
|
|
begin
|
|
ActiveRecord::Base.connection
|
|
rescue
|
|
@rx_adapter = @tx_adapter = nil
|
|
skip "Couldn't connect to PostgreSQL: #{database_config.inspect}"
|
|
end
|
|
|
|
super
|
|
end
|
|
|
|
def teardown
|
|
super
|
|
|
|
ActiveRecord::Base.clear_all_connections!
|
|
end
|
|
|
|
def cable_config
|
|
{ adapter: "postgresql" }
|
|
end
|
|
end
|