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

3
$:.unshift(File.dirname(__FILE__) + '/lib')
4
$:.unshift(File.dirname(__FILE__) + '/fixtures/helpers')
5
$:.unshift(File.dirname(__FILE__) + '/fixtures/alternate_helpers')
D
Initial  
David Heinemeier Hansson 已提交
6

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

D
Initial  
David Heinemeier Hansson 已提交
9
require 'test/unit'
J
Joshua Peek 已提交
10
require 'abstract_controller'
11
require 'action_controller'
J
Joshua Peek 已提交
12 13 14
require 'action_view'
require 'action_view/base'
require 'action_dispatch'
15 16
require 'fixture_template'
require 'active_support/dependencies'
17 18
require 'active_model'

19 20
begin
  require 'ruby-debug'
J
Jeremy Kemper 已提交
21
  Debugger.settings[:autoeval] = true
22
  Debugger.start
23 24 25
rescue LoadError
  # Debugging disabled. `gem install ruby-debug` to enable.
end
26

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

29
ActiveSupport::Dependencies.hook!
30

31 32 33
# Show backtraces for deprecated behavior for quicker cleanup.
ActiveSupport::Deprecation.debug = true

J
Joshua Peek 已提交
34 35
# Register danish language for testing
I18n.backend.store_translations 'da', {}
36
I18n.backend.store_translations 'pt-BR', {}
37
ORIGINAL_LOCALES = I18n.available_locales.map {|locale| locale.to_s }.sort
J
Joshua Peek 已提交
38

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

J
Joshua Peek 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
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 已提交
67 68 69 70 71 72 73 74 75
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|
76 77
        # FIXME: match ':controller(/:action(/:id))'
        map.connect ':controller/:action/:id'
C
Carlhuda 已提交
78 79
      end

80 81 82
      ActionController::IntegrationTest.app.router.draw do |map|
        # FIXME: match ':controller(/:action(/:id))'
        map.connect ':controller/:action/:id'
C
Carlhuda 已提交
83
      end
J
Joshua Peek 已提交
84 85 86 87
    end
  end
end

C
Carlhuda 已提交
88 89
class RoutedRackApp
  attr_reader :router
90
  alias routes router
C
Carlhuda 已提交
91 92 93 94 95 96 97 98 99 100 101

  def initialize(router, &blk)
    @router = router
    @stack = ActionDispatch::MiddlewareStack.new(&blk).build(@router)
  end

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

102
class ActionController::IntegrationTest < ActiveSupport::TestCase
103
  def self.build_app(routes = nil)
C
Carlhuda 已提交
104
    RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
105 106 107
      middleware.use "ActionDispatch::ShowExceptions"
      middleware.use "ActionDispatch::Callbacks"
      middleware.use "ActionDispatch::ParamsParser"
J
Joshua Peek 已提交
108
      middleware.use "ActionDispatch::Cookies"
J
Joshua Peek 已提交
109
      middleware.use "ActionDispatch::Flash"
110
      middleware.use "ActionDispatch::Head"
C
Carlhuda 已提交
111
    end
112 113 114 115
  end

  self.app = build_app

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
  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

136
  def with_routing(&block)
137
    temporary_routes = ActionDispatch::Routing::RouteSet.new
C
Carlhuda 已提交
138 139 140
    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) }
141 142 143

    yield temporary_routes
  ensure
C
Carlhuda 已提交
144 145
    self.class.app = old_app
    silence_warnings { Object.const_set(:SharedTestRoutes, old_routes) }
146
  end
147 148
end

J
Joshua Peek 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
# Temporary base class
class Rack::TestCase < ActionController::IntegrationTest
  setup do
    ActionController::Base.session_options[:key] = "abc"
    ActionController::Base.session_options[:secret] = ("*" * 30)
  end

  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

class ::ApplicationController < ActionController::Base
end

200 201 202 203
module ActionController
  class Base
    include ActionController::Testing
  end
204

205
  Base.view_paths = FIXTURE_LOAD_PATH
206

207
  class TestCase
J
Joshua Peek 已提交
208
    include ActionDispatch::TestProcess
209

C
Carlhuda 已提交
210 211 212 213
    setup do
      @router = SharedTestRoutes
    end

214 215 216
    def assert_template(options = {}, message = nil)
      validate_request!

217
      hax = @controller.view_context.instance_variable_get(:@_rendered)
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236

      case options
      when NilClass, String
        rendered = (hax[:template] || []).map { |t| t.identifier }
        msg = build_message(message,
                "expecting <?> but rendering with <?>",
                options, rendered.join(', '))
        assert_block(msg) do
          if options.nil?
            hax[:template].blank?
          else
            rendered.any? { |t| t.match(options) }
          end
        end
      when Hash
        if expected_partial = options[:partial]
          partials = hax[:partials]
          if expected_count = options[:count]
            found = partials.detect { |p, _| p.identifier.match(expected_partial) }
237
            actual_count = found.nil? ? 0 : found[1]
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
            msg = build_message(message,
                    "expecting ? to be rendered ? time(s) but rendered ? time(s)",
                     expected_partial, expected_count, actual_count)
            assert(actual_count == expected_count.to_i, msg)
          else
            msg = build_message(message,
                    "expecting partial <?> but action rendered <?>",
                    options[:partial], partials.keys)
            assert(partials.keys.any? { |p| p.identifier.match(expected_partial) }, msg)
          end
        else
          assert hax[:partials].empty?,
            "Expected no partials to be rendered"
        end
      end
    end
  end
end
C
Carlhuda 已提交
256

257
# This stub emulates the Railtie including the URL helpers from a Rails application
C
Carlhuda 已提交
258 259
module ActionController
  class Base
260
    include SharedTestRoutes.url_helpers
C
Carlhuda 已提交
261 262
  end
end