1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activejob/test/support/integration/adapters/queue_classic.rb

38 lines
1.1 KiB
Ruby
Raw Normal View History

2014-08-18 03:19:41 -04:00
module QueueClassicJobsManager
def setup
ENV["QC_DATABASE_URL"] ||= "postgres:///active_jobs_qc_int_test"
ENV["QC_RAILS_DATABASE"] = "false"
ENV["QC_LISTEN_TIME"] = "0.5"
2014-08-18 03:19:41 -04:00
ActiveJob::Base.queue_adapter = :queue_classic
end
def clear_jobs
QC::Queue.new("integration_tests").delete_all
end
def start_workers
uri = URI.parse(ENV["QC_DATABASE_URL"])
user = uri.user || ENV["USER"]
pass = uri.password
db = uri.path[1..-1]
%x{#{"PGPASSWORD=\"#{pass}\"" if pass} psql -c 'drop database if exists "#{db}"' -U #{user} -t template1}
%x{#{"PGPASSWORD=\"#{pass}\"" if pass} psql -c 'create database "#{db}"' -U #{user} -t template1}
QC::Setup.create
2015-03-05 16:41:14 -05:00
QC.default_conn_adapter.disconnect
QC.default_conn_adapter = nil
2014-08-18 03:19:41 -04:00
@pid = fork do
worker = QC::Worker.new(q_name: "integration_tests")
2014-08-18 03:19:41 -04:00
worker.start
end
rescue PG::ConnectionBad
puts "Cannot run integration tests for queue_classic. To be able to run integration tests for queue_classic you need to install and start postgresql.\n"
exit
2014-08-18 03:19:41 -04:00
end
def stop_workers
Process.kill "HUP", @pid
2014-08-18 03:19:41 -04:00
end
end