2010-02-23 20:31:17 -05:00
|
|
|
require File.expand_path('../../../load_paths', __FILE__)
|
2009-11-10 00:28:36 -05:00
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
$:.unshift(File.dirname(__FILE__) + '/lib')
|
2005-04-17 02:16:00 -04:00
|
|
|
$:.unshift(File.dirname(__FILE__) + '/fixtures/helpers')
|
2008-11-20 17:05:20 -05:00
|
|
|
$:.unshift(File.dirname(__FILE__) + '/fixtures/alternate_helpers')
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2010-08-22 17:43:31 -04:00
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
|
|
|
|
2011-12-24 07:57:54 -05:00
|
|
|
# These are the normal settings that will be set up by Railties
|
|
|
|
# TODO: Have these tests support other combinations of these values
|
|
|
|
silence_warnings do
|
|
|
|
Encoding.default_internal = "UTF-8"
|
|
|
|
Encoding.default_external = "UTF-8"
|
2010-05-17 11:41:54 -04:00
|
|
|
end
|
|
|
|
|
2014-07-17 15:08:41 -04:00
|
|
|
require 'drb'
|
|
|
|
require 'drb/unix'
|
|
|
|
require 'tempfile'
|
|
|
|
|
2014-07-23 13:38:41 -04:00
|
|
|
PROCESS_COUNT = (ENV['N'] || 4).to_i
|
|
|
|
|
2012-12-28 14:17:37 -05:00
|
|
|
require 'active_support/testing/autorun'
|
2009-09-19 13:10:41 -04:00
|
|
|
require 'abstract_controller'
|
2014-12-02 08:39:59 -05:00
|
|
|
require 'abstract_controller/railties/routes_helpers'
|
2009-06-15 14:44:45 -04:00
|
|
|
require 'action_controller'
|
2009-09-19 13:10:41 -04:00
|
|
|
require 'action_view'
|
2010-05-02 10:20:17 -04:00
|
|
|
require 'action_view/testing/resolvers'
|
2009-09-19 13:10:41 -04:00
|
|
|
require 'action_dispatch'
|
2009-06-15 14:44:45 -04:00
|
|
|
require 'active_support/dependencies'
|
2009-12-16 12:56:51 -05:00
|
|
|
require 'active_model'
|
2010-05-07 01:01:47 -04:00
|
|
|
require 'active_record'
|
|
|
|
require 'action_controller/caching'
|
2009-12-16 12:56:51 -05:00
|
|
|
|
2009-09-19 13:10:41 -04:00
|
|
|
require 'pp' # require 'pp' early to prevent hidden_methods from not picking up the pretty-print methods until too late
|
|
|
|
|
2010-06-27 17:53:06 -04:00
|
|
|
module Rails
|
2010-10-22 10:34:45 -04:00
|
|
|
class << self
|
|
|
|
def env
|
2015-03-19 05:06:28 -04:00
|
|
|
@_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || "test")
|
2010-10-22 10:34:45 -04:00
|
|
|
end
|
|
|
|
end
|
2010-06-27 17:53:06 -04:00
|
|
|
end
|
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
ActiveSupport::Dependencies.hook!
|
2009-05-20 19:52:56 -04:00
|
|
|
|
2013-01-24 05:10:58 -05:00
|
|
|
Thread.abort_on_exception = true
|
|
|
|
|
2006-09-03 23:38:13 -04:00
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
|
2013-12-16 13:04:07 -05:00
|
|
|
# Disable available locale checks to avoid warnings running the test suite.
|
|
|
|
I18n.enforce_available_locales = false
|
|
|
|
|
2009-01-25 23:50:02 -05:00
|
|
|
# Register danish language for testing
|
|
|
|
I18n.backend.store_translations 'da', {}
|
2009-02-07 00:23:50 -05:00
|
|
|
I18n.backend.store_translations 'pt-BR', {}
|
2009-01-25 23:50:02 -05:00
|
|
|
|
2009-06-15 14:50:11 -04:00
|
|
|
FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures')
|
2009-06-15 14:44:45 -04:00
|
|
|
|
2010-02-24 19:01:03 -05:00
|
|
|
SharedTestRoutes = ActionDispatch::Routing::RouteSet.new
|
|
|
|
|
2012-08-09 17:30:26 -04:00
|
|
|
module ActionDispatch
|
|
|
|
module SharedRoutes
|
|
|
|
def before_setup
|
|
|
|
@routes = SharedTestRoutes
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-09 17:46:57 -04:00
|
|
|
# Hold off drawing routes until all the possible controller classes
|
|
|
|
# have been loaded.
|
|
|
|
module DrawOnce
|
|
|
|
class << self
|
|
|
|
attr_accessor :drew
|
|
|
|
end
|
|
|
|
self.drew = false
|
|
|
|
|
|
|
|
def before_setup
|
|
|
|
super
|
|
|
|
return if DrawOnce.drew
|
|
|
|
|
2010-08-05 09:44:23 -04:00
|
|
|
SharedTestRoutes.draw do
|
2012-04-24 23:32:09 -04:00
|
|
|
get ':controller(/:action)'
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
|
|
|
|
2010-09-24 20:15:52 -04:00
|
|
|
ActionDispatch::IntegrationTest.app.routes.draw do
|
2012-04-24 23:32:09 -04:00
|
|
|
get ':controller(/:action)'
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2012-08-09 17:46:57 -04:00
|
|
|
|
|
|
|
DrawOnce.drew = true
|
2009-10-04 00:55:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-09 17:46:57 -04:00
|
|
|
module ActiveSupport
|
|
|
|
class TestCase
|
|
|
|
include ActionDispatch::DrawOnce
|
2015-02-27 08:16:48 -05:00
|
|
|
if RUBY_ENGINE == "ruby" && PROCESS_COUNT > 0
|
2014-07-23 13:38:41 -04:00
|
|
|
parallelize_me!
|
|
|
|
end
|
2012-08-09 17:46:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-02-24 19:01:03 -05:00
|
|
|
class RoutedRackApp
|
2010-03-30 15:05:42 -04:00
|
|
|
attr_reader :routes
|
2010-02-24 19:01:03 -05:00
|
|
|
|
2010-03-30 15:05:42 -04:00
|
|
|
def initialize(routes, &blk)
|
|
|
|
@routes = routes
|
|
|
|
@stack = ActionDispatch::MiddlewareStack.new(&blk).build(@routes)
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
@stack.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-24 18:17:30 -04:00
|
|
|
class ActionDispatch::IntegrationTest < ActiveSupport::TestCase
|
2012-08-09 17:30:26 -04:00
|
|
|
include ActionDispatch::SharedRoutes
|
2010-04-24 18:17:30 -04:00
|
|
|
|
2009-10-03 21:45:49 -04:00
|
|
|
def self.build_app(routes = nil)
|
2010-02-24 19:01:03 -05:00
|
|
|
RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
|
2011-12-16 03:29:37 -05:00
|
|
|
middleware.use "ActionDispatch::ShowExceptions", ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public")
|
2011-12-01 14:46:18 -05:00
|
|
|
middleware.use "ActionDispatch::DebugExceptions"
|
2009-10-03 21:45:49 -04:00
|
|
|
middleware.use "ActionDispatch::Callbacks"
|
|
|
|
middleware.use "ActionDispatch::ParamsParser"
|
2010-01-16 18:21:46 -05:00
|
|
|
middleware.use "ActionDispatch::Cookies"
|
2010-01-15 15:44:27 -05:00
|
|
|
middleware.use "ActionDispatch::Flash"
|
2012-07-23 12:50:48 -04:00
|
|
|
middleware.use "Rack::Head"
|
2010-05-17 19:43:06 -04:00
|
|
|
yield(middleware) if block_given?
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2009-10-03 21:45:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
self.app = build_app
|
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
# Stub Rails dispatcher so it does not get controller references and
|
|
|
|
# simply return the controller#action as Rack::Body.
|
|
|
|
class StubDispatcher < ::ActionDispatch::Routing::RouteSet::Dispatcher
|
|
|
|
protected
|
|
|
|
def controller_reference(controller_param)
|
|
|
|
controller_param
|
|
|
|
end
|
|
|
|
|
|
|
|
def dispatch(controller, action, env)
|
|
|
|
[200, {'Content-Type' => 'text/html'}, ["#{controller}##{action}"]]
|
2009-10-27 20:48:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.stub_controllers
|
|
|
|
old_dispatcher = ActionDispatch::Routing::RouteSet::Dispatcher
|
|
|
|
ActionDispatch::Routing::RouteSet.module_eval { remove_const :Dispatcher }
|
|
|
|
ActionDispatch::Routing::RouteSet.module_eval { const_set :Dispatcher, StubDispatcher }
|
|
|
|
yield ActionDispatch::Routing::RouteSet.new
|
|
|
|
ensure
|
|
|
|
ActionDispatch::Routing::RouteSet.module_eval { remove_const :Dispatcher }
|
|
|
|
ActionDispatch::Routing::RouteSet.module_eval { const_set :Dispatcher, old_dispatcher }
|
|
|
|
end
|
|
|
|
|
2009-10-03 21:45:49 -04:00
|
|
|
def with_routing(&block)
|
2010-02-21 11:21:25 -05:00
|
|
|
temporary_routes = ActionDispatch::Routing::RouteSet.new
|
2010-02-24 19:01:03 -05:00
|
|
|
old_app, self.class.app = self.class.app, self.class.build_app(temporary_routes)
|
|
|
|
old_routes = SharedTestRoutes
|
|
|
|
silence_warnings { Object.const_set(:SharedTestRoutes, temporary_routes) }
|
2009-10-03 21:45:49 -04:00
|
|
|
|
|
|
|
yield temporary_routes
|
|
|
|
ensure
|
2010-02-24 19:01:03 -05:00
|
|
|
self.class.app = old_app
|
2014-11-05 10:38:02 -05:00
|
|
|
self.remove!
|
2010-02-24 19:01:03 -05:00
|
|
|
silence_warnings { Object.const_set(:SharedTestRoutes, old_routes) }
|
2009-10-03 21:45:49 -04:00
|
|
|
end
|
2010-06-27 14:35:31 -04:00
|
|
|
|
|
|
|
def with_autoload_path(path)
|
2010-08-14 01:13:00 -04:00
|
|
|
path = File.join(File.dirname(__FILE__), "fixtures", path)
|
2010-06-27 14:35:31 -04:00
|
|
|
if ActiveSupport::Dependencies.autoload_paths.include?(path)
|
|
|
|
yield
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
ActiveSupport::Dependencies.autoload_paths << path
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
ActiveSupport::Dependencies.autoload_paths.reject! {|p| p == path}
|
|
|
|
ActiveSupport::Dependencies.clear
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-06-15 14:44:45 -04:00
|
|
|
end
|
|
|
|
|
2009-09-19 13:10:41 -04:00
|
|
|
# Temporary base class
|
2010-09-24 20:15:52 -04:00
|
|
|
class Rack::TestCase < ActionDispatch::IntegrationTest
|
2009-09-19 13:10:41 -04:00
|
|
|
def self.testing(klass = nil)
|
|
|
|
if klass
|
|
|
|
@testing = "/#{klass.name.underscore}".sub!(/_controller$/, '')
|
|
|
|
else
|
|
|
|
@testing
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(thing, *args)
|
|
|
|
if thing.is_a?(Symbol)
|
|
|
|
super("#{self.class.testing}/#{thing}", *args)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_body(body)
|
2012-01-05 15:18:54 -05:00
|
|
|
assert_equal body, Array(response.body).join
|
2009-09-19 13:10:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def assert_status(code)
|
|
|
|
assert_equal code, response.status
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_response(body, status = 200, headers = {})
|
2012-01-05 15:18:54 -05:00
|
|
|
assert_body body
|
2009-09-19 13:10:41 -04:00
|
|
|
assert_status status
|
|
|
|
headers.each do |header, value|
|
|
|
|
assert_header header, value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_content_type(type)
|
|
|
|
assert_equal type, response.headers["Content-Type"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_header(name, value)
|
|
|
|
assert_equal value, response.headers[name]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
module ActionController
|
|
|
|
class Base
|
2010-09-24 20:24:55 -04:00
|
|
|
# This stub emulates the Railtie including the URL helpers from a Rails application
|
2014-12-02 08:39:59 -05:00
|
|
|
extend AbstractController::Railties::RoutesHelpers.with(SharedTestRoutes)
|
2012-06-01 11:42:33 -04:00
|
|
|
include SharedTestRoutes.mounted_helpers
|
2009-10-04 00:18:32 -04:00
|
|
|
|
2010-09-24 20:24:55 -04:00
|
|
|
self.view_paths = FIXTURE_LOAD_PATH
|
|
|
|
|
|
|
|
def self.test_routes(&block)
|
|
|
|
routes = ActionDispatch::Routing::RouteSet.new
|
|
|
|
routes.draw(&block)
|
|
|
|
include routes.url_helpers
|
|
|
|
end
|
|
|
|
end
|
2009-10-04 00:18:32 -04:00
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
class TestCase
|
2009-12-12 19:09:44 -05:00
|
|
|
include ActionDispatch::TestProcess
|
2012-08-09 17:30:26 -04:00
|
|
|
include ActionDispatch::SharedRoutes
|
2009-06-15 14:44:45 -04:00
|
|
|
end
|
|
|
|
end
|
2010-02-24 19:01:03 -05:00
|
|
|
|
2013-07-05 08:34:39 -04:00
|
|
|
|
2010-09-24 20:24:55 -04:00
|
|
|
class ::ApplicationController < ActionController::Base
|
|
|
|
end
|
|
|
|
|
2010-10-01 21:01:34 -04:00
|
|
|
class Workshop
|
|
|
|
extend ActiveModel::Naming
|
|
|
|
include ActiveModel::Conversion
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
def initialize(id)
|
|
|
|
@id = id
|
|
|
|
end
|
|
|
|
|
|
|
|
def persisted?
|
|
|
|
id.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
id.to_s
|
|
|
|
end
|
|
|
|
end
|
2010-10-01 21:05:59 -04:00
|
|
|
|
|
|
|
module ActionDispatch
|
2011-12-01 14:46:18 -05:00
|
|
|
class DebugExceptions
|
|
|
|
private
|
|
|
|
remove_method :stderr_logger
|
|
|
|
# Silence logger
|
|
|
|
def stderr_logger
|
|
|
|
nil
|
|
|
|
end
|
2010-10-01 21:05:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-23 13:18:36 -05:00
|
|
|
module ActionDispatch
|
|
|
|
module RoutingVerbs
|
2014-07-02 18:02:36 -04:00
|
|
|
def send_request(uri_or_host, method, path)
|
2012-01-23 13:18:36 -05:00
|
|
|
host = uri_or_host.host unless path
|
|
|
|
path ||= uri_or_host.path
|
|
|
|
|
|
|
|
params = {'PATH_INFO' => path,
|
2014-07-02 18:02:36 -04:00
|
|
|
'REQUEST_METHOD' => method,
|
2012-01-23 13:18:36 -05:00
|
|
|
'HTTP_HOST' => host}
|
|
|
|
|
2014-07-02 18:02:36 -04:00
|
|
|
routes.call(params)
|
|
|
|
end
|
|
|
|
|
2014-07-15 21:43:47 -04:00
|
|
|
def request_path_params(path, options = {})
|
|
|
|
method = options[:method] || 'GET'
|
2014-07-02 18:02:36 -04:00
|
|
|
resp = send_request URI('http://localhost' + path), method.to_s.upcase, nil
|
2014-07-15 18:24:23 -04:00
|
|
|
status = resp.first
|
2014-07-02 18:02:36 -04:00
|
|
|
if status == 404
|
|
|
|
raise ActionController::RoutingError, "No route matches #{path.inspect}"
|
|
|
|
end
|
|
|
|
controller.request.path_parameters
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri_or_host, path = nil)
|
|
|
|
send_request(uri_or_host, 'GET', path)[2].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def post(uri_or_host, path = nil)
|
|
|
|
send_request(uri_or_host, 'POST', path)[2].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def put(uri_or_host, path = nil)
|
|
|
|
send_request(uri_or_host, 'PUT', path)[2].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(uri_or_host, path = nil)
|
|
|
|
send_request(uri_or_host, 'DELETE', path)[2].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def patch(uri_or_host, path = nil)
|
|
|
|
send_request(uri_or_host, 'PATCH', path)[2].join
|
2012-01-23 13:18:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 10:34:16 -05:00
|
|
|
module RoutingTestHelpers
|
2014-07-02 18:55:25 -04:00
|
|
|
def url_for(set, options)
|
2014-07-17 14:21:06 -04:00
|
|
|
route_name = options.delete :use_route
|
|
|
|
set.url_for options.merge(:only_path => true), route_name
|
2011-11-30 10:34:16 -05:00
|
|
|
end
|
2014-07-02 18:02:36 -04:00
|
|
|
|
|
|
|
def make_set(strict = true)
|
|
|
|
tc = self
|
|
|
|
TestSet.new ->(c) { tc.controller = c }, strict
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestSet < ActionDispatch::Routing::RouteSet
|
|
|
|
attr_reader :strict
|
|
|
|
|
|
|
|
def initialize(block, strict = false)
|
|
|
|
@block = block
|
|
|
|
@strict = strict
|
|
|
|
super()
|
|
|
|
end
|
|
|
|
|
|
|
|
class Dispatcher < ActionDispatch::Routing::RouteSet::Dispatcher
|
|
|
|
def initialize(defaults, set, block)
|
|
|
|
super(defaults)
|
|
|
|
@block = block
|
|
|
|
@set = set
|
|
|
|
end
|
|
|
|
|
|
|
|
def controller(params, default_controller=true)
|
|
|
|
super(params, @set.strict)
|
|
|
|
end
|
|
|
|
|
|
|
|
def controller_reference(controller_param)
|
|
|
|
block = @block
|
|
|
|
set = @set
|
|
|
|
super if @set.strict
|
|
|
|
Class.new(ActionController::Base) {
|
|
|
|
include set.url_helpers
|
|
|
|
define_method(:process) { |name| block.call(self) }
|
|
|
|
def to_a; [200, {}, []]; end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def dispatcher defaults
|
|
|
|
TestSet::Dispatcher.new defaults, self, @block
|
|
|
|
end
|
|
|
|
end
|
2011-11-30 10:34:16 -05:00
|
|
|
end
|
2012-08-13 18:02:00 -04:00
|
|
|
|
|
|
|
class ResourcesController < ActionController::Base
|
|
|
|
def index() render :nothing => true end
|
|
|
|
alias_method :show, :index
|
|
|
|
end
|
|
|
|
|
|
|
|
class ThreadsController < ResourcesController; end
|
|
|
|
class MessagesController < ResourcesController; end
|
|
|
|
class CommentsController < ResourcesController; end
|
2012-08-22 10:27:42 -04:00
|
|
|
class ReviewsController < ResourcesController; end
|
2012-08-13 18:02:00 -04:00
|
|
|
class LogosController < ResourcesController; end
|
|
|
|
|
|
|
|
class AccountsController < ResourcesController; end
|
|
|
|
class AdminController < ResourcesController; end
|
|
|
|
class ProductsController < ResourcesController; end
|
|
|
|
class ImagesController < ResourcesController; end
|
|
|
|
class PreferencesController < ResourcesController; end
|
|
|
|
|
|
|
|
module Backoffice
|
|
|
|
class ProductsController < ResourcesController; end
|
|
|
|
class ImagesController < ResourcesController; end
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ProductsController < ResourcesController; end
|
|
|
|
class ImagesController < ResourcesController; end
|
|
|
|
end
|
|
|
|
end
|
2014-01-13 06:24:06 -05:00
|
|
|
|
|
|
|
# Skips the current run on Rubinius using Minitest::Assertions#skip
|
|
|
|
def rubinius_skip(message = '')
|
|
|
|
skip message if RUBY_ENGINE == 'rbx'
|
|
|
|
end
|
|
|
|
# Skips the current run on JRuby using Minitest::Assertions#skip
|
|
|
|
def jruby_skip(message = '')
|
|
|
|
skip message if defined?(JRUBY_VERSION)
|
|
|
|
end
|
2014-07-17 15:08:41 -04:00
|
|
|
|
2014-07-19 16:35:12 -04:00
|
|
|
require 'mocha/setup' # FIXME: stop using mocha
|
2014-07-19 17:17:13 -04:00
|
|
|
|
2014-07-17 15:08:41 -04:00
|
|
|
class ForkingExecutor
|
|
|
|
class Server
|
|
|
|
include DRb::DRbUndumped
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@queue = Queue.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def record reporter, result
|
2014-07-17 21:43:46 -04:00
|
|
|
reporter.record result
|
2014-07-17 15:08:41 -04:00
|
|
|
end
|
|
|
|
|
2014-07-17 17:43:58 -04:00
|
|
|
def << o
|
|
|
|
o[2] = DRbObject.new(o[2]) if o
|
|
|
|
@queue << o
|
|
|
|
end
|
2014-07-17 15:08:41 -04:00
|
|
|
def pop; @queue.pop; end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize size
|
|
|
|
@size = size
|
|
|
|
@queue = Server.new
|
2014-08-22 14:55:50 -04:00
|
|
|
file = File.join Dir.tmpdir, Dir::Tmpname.make_tmpname('rails-tests', 'fd')
|
2014-07-17 15:08:41 -04:00
|
|
|
@url = "drbunix://#{file}"
|
|
|
|
@pool = nil
|
|
|
|
DRb.start_service @url, @queue
|
|
|
|
end
|
|
|
|
|
|
|
|
def << work; @queue << work; end
|
|
|
|
|
|
|
|
def shutdown
|
|
|
|
pool = @size.times.map {
|
|
|
|
fork {
|
|
|
|
DRb.stop_service
|
|
|
|
queue = DRbObject.new_with_uri @url
|
|
|
|
while job = queue.pop
|
|
|
|
klass = job[0]
|
|
|
|
method = job[1]
|
|
|
|
reporter = job[2]
|
|
|
|
result = Minitest.run_one_method klass, method
|
2014-08-13 17:22:29 -04:00
|
|
|
if result.error?
|
|
|
|
translate_exceptions result
|
|
|
|
end
|
2014-07-17 15:08:41 -04:00
|
|
|
queue.record reporter, result
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@size.times { @queue << nil }
|
|
|
|
pool.each { |pid| Process.waitpid pid }
|
|
|
|
end
|
2014-08-13 17:22:29 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
def translate_exceptions(result)
|
|
|
|
result.failures.map! { |e|
|
|
|
|
begin
|
|
|
|
Marshal.dump e
|
|
|
|
e
|
|
|
|
rescue TypeError
|
|
|
|
ex = Exception.new e.message
|
|
|
|
ex.set_backtrace e.backtrace
|
|
|
|
Minitest::UnexpectedError.new ex
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2014-07-17 15:08:41 -04:00
|
|
|
end
|
|
|
|
|
2015-02-27 08:16:48 -05:00
|
|
|
if RUBY_ENGINE == "ruby" && PROCESS_COUNT > 0
|
2014-07-17 15:08:41 -04:00
|
|
|
# Use N processes (N defaults to 4)
|
2014-07-23 13:40:43 -04:00
|
|
|
Minitest.parallel_executor = ForkingExecutor.new(PROCESS_COUNT)
|
2014-07-17 15:08:41 -04:00
|
|
|
end
|