2010-02-23 20:31:17 -05:00
|
|
|
require File.expand_path('../../../load_paths', __FILE__)
|
2009-11-10 00:28:36 -05:00
|
|
|
|
2010-02-28 19:25:02 -05:00
|
|
|
lib = File.expand_path("#{File.dirname(__FILE__)}/../lib")
|
|
|
|
$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib)
|
|
|
|
|
|
|
|
activemodel_path = File.expand_path('../../../activemodel/lib', __FILE__)
|
|
|
|
$:.unshift(activemodel_path) if File.directory?(activemodel_path) && !$:.include?(activemodel_path)
|
|
|
|
|
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
|
|
|
|
2009-08-13 22:02:49 -04:00
|
|
|
ENV['TMPDIR'] = File.join(File.dirname(__FILE__), 'tmp')
|
|
|
|
|
2010-05-17 11:41:54 -04:00
|
|
|
if defined?(Encoding.default_internal)
|
|
|
|
Encoding.default_internal = "UTF-8"
|
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
require 'test/unit'
|
2009-09-19 13:10:41 -04:00
|
|
|
require 'abstract_controller'
|
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'
|
|
|
|
require 'action_controller/caching/sweeping'
|
2009-12-16 12:56:51 -05:00
|
|
|
|
2007-05-27 20:00:07 -04:00
|
|
|
begin
|
|
|
|
require 'ruby-debug'
|
2008-11-29 19:55:02 -05:00
|
|
|
Debugger.settings[:autoeval] = true
|
2008-11-19 22:14:52 -05:00
|
|
|
Debugger.start
|
2007-05-27 20:00:07 -04:00
|
|
|
rescue LoadError
|
|
|
|
# Debugging disabled. `gem install ruby-debug` to enable.
|
|
|
|
end
|
2007-05-27 12:38:02 -04: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
|
|
|
|
end
|
|
|
|
|
2010-07-01 18:29:20 -04:00
|
|
|
# Monkey patch the old routes initialization to be silenced.
|
2010-06-28 06:23:41 -04:00
|
|
|
class ActionDispatch::Routing::DeprecatedMapper
|
|
|
|
def initialize_with_silencer(*args)
|
|
|
|
ActiveSupport::Deprecation.silence { initialize_without_silencer(*args) }
|
|
|
|
end
|
|
|
|
alias_method_chain :initialize, :silencer
|
|
|
|
end
|
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
ActiveSupport::Dependencies.hook!
|
2009-05-20 19:52:56 -04:00
|
|
|
|
2006-09-03 23:38:13 -04:00
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
|
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-05-14 20:25:10 -04:00
|
|
|
ORIGINAL_LOCALES = I18n.available_locales.map {|locale| locale.to_s }.sort
|
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-10-03 23:02:51 -04:00
|
|
|
FIXTURES = Pathname.new(FIXTURE_LOAD_PATH)
|
2009-06-15 14:44:45 -04:00
|
|
|
|
2010-03-19 21:04:00 -04:00
|
|
|
module RackTestUtils
|
|
|
|
def body_to_string(body)
|
|
|
|
if body.respond_to?(:each)
|
|
|
|
str = ""
|
|
|
|
body.each {|s| str << s }
|
|
|
|
str
|
|
|
|
else
|
|
|
|
body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
extend self
|
|
|
|
end
|
|
|
|
|
2010-04-03 05:30:06 -04:00
|
|
|
module RenderERBUtils
|
|
|
|
def render_erb(string)
|
|
|
|
template = ActionView::Template.new(
|
|
|
|
string.strip,
|
|
|
|
"test template",
|
|
|
|
ActionView::Template::Handlers::ERB,
|
|
|
|
{})
|
|
|
|
|
|
|
|
template.render(self, {}).strip
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-04 00:55:35 -04:00
|
|
|
module SetupOnce
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
cattr_accessor :setup_once_block
|
|
|
|
self.setup_once_block = nil
|
|
|
|
|
|
|
|
setup :run_setup_once
|
|
|
|
end
|
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
def setup_once(&block)
|
|
|
|
self.setup_once_block = block
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def run_setup_once
|
|
|
|
if self.setup_once_block
|
|
|
|
self.setup_once_block.call
|
|
|
|
self.setup_once_block = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-02-24 19:01:03 -05:00
|
|
|
SharedTestRoutes = ActionDispatch::Routing::RouteSet.new
|
|
|
|
|
|
|
|
module ActiveSupport
|
|
|
|
class TestCase
|
|
|
|
include SetupOnce
|
|
|
|
# Hold off drawing routes until all the possible controller classes
|
|
|
|
# have been loaded.
|
|
|
|
setup_once do
|
|
|
|
SharedTestRoutes.draw do |map|
|
2010-02-28 17:39:01 -05:00
|
|
|
# FIXME: match ':controller(/:action(/:id))'
|
|
|
|
map.connect ':controller/:action/:id'
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
|
|
|
|
2010-03-30 15:05:42 -04:00
|
|
|
ActionController::IntegrationTest.app.routes.draw do |map|
|
2010-02-28 17:39:01 -05:00
|
|
|
# FIXME: match ':controller(/:action(/:id))'
|
|
|
|
map.connect ':controller/:action/:id'
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2009-10-04 00:55:35 -04:00
|
|
|
end
|
|
|
|
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-03-03 20:36:08 -05:00
|
|
|
class BasicController
|
|
|
|
attr_accessor :request
|
|
|
|
|
|
|
|
def config
|
2010-03-03 22:45:08 -05:00
|
|
|
@config ||= ActiveSupport::InheritableOptions.new(ActionController::Base.config).tap do |config|
|
2010-03-03 20:36:08 -05:00
|
|
|
# VIEW TODO: View tests should not require a controller
|
|
|
|
public_dir = File.expand_path("../fixtures/public", __FILE__)
|
|
|
|
config.assets_dir = public_dir
|
|
|
|
config.javascripts_dir = "#{public_dir}/javascripts"
|
|
|
|
config.stylesheets_dir = "#{public_dir}/stylesheets"
|
|
|
|
config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-24 18:17:30 -04:00
|
|
|
class ActionDispatch::IntegrationTest < ActiveSupport::TestCase
|
|
|
|
setup do
|
|
|
|
@routes = SharedTestRoutes
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-26 22:38:48 -04:00
|
|
|
class ActionController::IntegrationTest < ActiveSupport::TestCase
|
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|
|
2009-10-03 21:45:49 -04:00
|
|
|
middleware.use "ActionDispatch::ShowExceptions"
|
|
|
|
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"
|
2010-01-15 13:35:18 -05:00
|
|
|
middleware.use "ActionDispatch::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
|
|
|
|
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)
|
|
|
|
path = File.join(File.dirname(__FILE__), "fixtures", path)
|
|
|
|
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
|
|
|
|
class Rack::TestCase < ActionController::IntegrationTest
|
|
|
|
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)
|
|
|
|
assert_equal body, Array.wrap(response.body).join
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_status(code)
|
|
|
|
assert_equal code, response.status
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_response(body, status = 200, headers = {})
|
|
|
|
assert_body body
|
|
|
|
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
|
|
|
|
|
2010-04-03 05:30:06 -04:00
|
|
|
class ActionController::Base
|
|
|
|
def self.test_routes(&block)
|
2010-07-01 18:29:20 -04:00
|
|
|
routes = ActionDispatch::Routing::RouteSet.new
|
|
|
|
routes.draw(&block)
|
|
|
|
include routes.url_helpers
|
2010-04-03 05:30:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-19 13:10:41 -04:00
|
|
|
class ::ApplicationController < ActionController::Base
|
|
|
|
end
|
|
|
|
|
2010-03-02 17:40:59 -05:00
|
|
|
module ActionView
|
|
|
|
class TestCase
|
|
|
|
# Must repeat the setup because AV::TestCase is a duplication
|
|
|
|
# of AC::TestCase
|
|
|
|
setup do
|
2010-03-30 15:05:42 -04:00
|
|
|
@routes = SharedTestRoutes
|
2010-03-02 17:40:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
module ActionController
|
|
|
|
class Base
|
|
|
|
include ActionController::Testing
|
|
|
|
end
|
2009-10-04 00:18:32 -04:00
|
|
|
|
2009-06-15 14:44:45 -04:00
|
|
|
Base.view_paths = FIXTURE_LOAD_PATH
|
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
|
2009-08-16 22:14:26 -04:00
|
|
|
|
2010-02-24 19:01:03 -05:00
|
|
|
setup do
|
2010-03-30 15:05:42 -04:00
|
|
|
@routes = SharedTestRoutes
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2009-06-15 14:44:45 -04:00
|
|
|
end
|
|
|
|
end
|
2010-02-24 19:01:03 -05:00
|
|
|
|
2010-02-26 18:40:36 -05:00
|
|
|
# This stub emulates the Railtie including the URL helpers from a Rails application
|
2010-02-24 19:01:03 -05:00
|
|
|
module ActionController
|
|
|
|
class Base
|
2010-02-26 18:40:36 -05:00
|
|
|
include SharedTestRoutes.url_helpers
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2010-04-24 18:17:30 -04:00
|
|
|
end
|