abstract_unit.rb 7.7 KB
Newer Older
1
require File.expand_path('../../../load_paths', __FILE__)
2

3 4 5 6 7 8
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)

9
$:.unshift(File.dirname(__FILE__) + '/lib')
10
$:.unshift(File.dirname(__FILE__) + '/fixtures/helpers')
11
$:.unshift(File.dirname(__FILE__) + '/fixtures/alternate_helpers')
D
Initial  
David Heinemeier Hansson 已提交
12

J
Joshua Peek 已提交
13 14
ENV['TMPDIR'] = File.join(File.dirname(__FILE__), 'tmp')

15 16 17 18
if defined?(Encoding.default_internal)
  Encoding.default_internal = "UTF-8"
end

D
Initial  
David Heinemeier Hansson 已提交
19
require 'test/unit'
J
Joshua Peek 已提交
20
require 'abstract_controller'
21
require 'action_controller'
J
Joshua Peek 已提交
22
require 'action_view'
23
require 'action_view/testing/resolvers'
J
Joshua Peek 已提交
24
require 'action_dispatch'
25
require 'active_support/dependencies'
26
require 'active_model'
N
Neeraj Singh 已提交
27 28 29
require 'active_record'
require 'action_controller/caching'
require 'action_controller/caching/sweeping'
30

31 32
begin
  require 'ruby-debug'
J
Jeremy Kemper 已提交
33
  Debugger.settings[:autoeval] = true
34
  Debugger.start
35 36 37
rescue LoadError
  # Debugging disabled. `gem install ruby-debug` to enable.
end
38

J
Joshua Peek 已提交
39 40
require 'pp' # require 'pp' early to prevent hidden_methods from not picking up the pretty-print methods until too late

41
ActiveSupport::Dependencies.hook!
42

43 44 45
# Show backtraces for deprecated behavior for quicker cleanup.
ActiveSupport::Deprecation.debug = true

J
Joshua Peek 已提交
46 47
# Register danish language for testing
I18n.backend.store_translations 'da', {}
48
I18n.backend.store_translations 'pt-BR', {}
49
ORIGINAL_LOCALES = I18n.available_locales.map {|locale| locale.to_s }.sort
J
Joshua Peek 已提交
50

Y
Yehuda Katz + Carl Lerche 已提交
51
FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures')
52
FIXTURES = Pathname.new(FIXTURE_LOAD_PATH)
53

54 55 56 57 58 59 60 61 62 63 64 65 66
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

67 68 69 70 71 72 73 74 75 76 77 78
module RenderERBUtils
  def render_erb(string)
    template = ActionView::Template.new(
      string.strip,
      "test template",
      ActionView::Template::Handlers::ERB,
      {})

    template.render(self, {}).strip
  end
end

J
Joshua Peek 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
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

C
Carlhuda 已提交
104 105 106 107 108 109 110 111 112
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|
113 114
        # FIXME: match ':controller(/:action(/:id))'
        map.connect ':controller/:action/:id'
C
Carlhuda 已提交
115 116
      end

J
Joshua Peek 已提交
117
      ActionController::IntegrationTest.app.routes.draw do |map|
118 119
        # FIXME: match ':controller(/:action(/:id))'
        map.connect ':controller/:action/:id'
C
Carlhuda 已提交
120
      end
J
Joshua Peek 已提交
121 122 123 124
    end
  end
end

C
Carlhuda 已提交
125
class RoutedRackApp
J
Joshua Peek 已提交
126
  attr_reader :routes
C
Carlhuda 已提交
127

J
Joshua Peek 已提交
128 129 130
  def initialize(routes, &blk)
    @routes = routes
    @stack = ActionDispatch::MiddlewareStack.new(&blk).build(@routes)
C
Carlhuda 已提交
131 132 133 134 135 136 137
  end

  def call(env)
    @stack.call(env)
  end
end

138 139 140 141
class BasicController
  attr_accessor :request

  def config
142
    @config ||= ActiveSupport::InheritableOptions.new(ActionController::Base.config).tap do |config|
143 144 145 146 147 148 149 150 151 152
      # 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

153 154 155 156 157 158
class ActionDispatch::IntegrationTest < ActiveSupport::TestCase
  setup do
    @routes = SharedTestRoutes
  end
end

159
class ActionController::IntegrationTest < ActiveSupport::TestCase
160
  def self.build_app(routes = nil)
C
Carlhuda 已提交
161
    RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
162 163 164
      middleware.use "ActionDispatch::ShowExceptions"
      middleware.use "ActionDispatch::Callbacks"
      middleware.use "ActionDispatch::ParamsParser"
J
Joshua Peek 已提交
165
      middleware.use "ActionDispatch::Cookies"
J
Joshua Peek 已提交
166
      middleware.use "ActionDispatch::Flash"
167
      middleware.use "ActionDispatch::Head"
168
      yield(middleware) if block_given?
C
Carlhuda 已提交
169
    end
170 171 172 173
  end

  self.app = build_app

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
  class StubDispatcher
    def self.new(*args)
      lambda { |env|
        params = env['action_dispatch.request.path_parameters']
        controller, action = params[:controller], params[:action]
        [200, {'Content-Type' => 'text/html'}, ["#{controller}##{action}"]]
      }
    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

194
  def with_routing(&block)
195
    temporary_routes = ActionDispatch::Routing::RouteSet.new
C
Carlhuda 已提交
196 197 198
    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) }
199 200 201

    yield temporary_routes
  ensure
C
Carlhuda 已提交
202 203
    self.class.app = old_app
    silence_warnings { Object.const_set(:SharedTestRoutes, old_routes) }
204
  end
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

  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
220 221
end

J
Joshua Peek 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
# 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

265 266 267 268 269 270 271 272
class ActionController::Base
  def self.test_routes(&block)
    router = ActionDispatch::Routing::RouteSet.new
    router.draw(&block)
    include router.url_helpers
  end
end

J
Joshua Peek 已提交
273 274 275
class ::ApplicationController < ActionController::Base
end

C
Carlhuda 已提交
276 277 278 279 280
module ActionView
  class TestCase
    # Must repeat the setup because AV::TestCase is a duplication
    # of AC::TestCase
    setup do
J
Joshua Peek 已提交
281
      @routes = SharedTestRoutes
C
Carlhuda 已提交
282 283 284 285
    end
  end
end

286 287 288 289
module ActionController
  class Base
    include ActionController::Testing
  end
290

291
  Base.view_paths = FIXTURE_LOAD_PATH
292

293
  class TestCase
J
Joshua Peek 已提交
294
    include ActionDispatch::TestProcess
295

C
Carlhuda 已提交
296
    setup do
J
Joshua Peek 已提交
297
      @routes = SharedTestRoutes
C
Carlhuda 已提交
298
    end
299 300
  end
end
C
Carlhuda 已提交
301

302
# This stub emulates the Railtie including the URL helpers from a Rails application
C
Carlhuda 已提交
303 304
module ActionController
  class Base
305
    include SharedTestRoutes.url_helpers
C
Carlhuda 已提交
306
  end
307
end