Methods
R
S
T
Instance Public methods
render(*args)
# File actionpack/test/controller/mime_responds_test.rb, line 470
def render(*args)
  @action = args.first[:action] unless args.empty?
  @action ||= action_name

  response.body = "#{@action} - #{formats}"
end
setup()
# File actionpack/test/controller/mime_responds_test.rb, line 193
def setup
  super
  @request.host = "www.example.com"
  Mime::Type.register_alias("text/html", :iphone)
  Mime::Type.register("text/x-mobile", :mobile)
end
teardown()
# File actionpack/test/controller/mime_responds_test.rb, line 200
def teardown
  super
  Mime::Type.unregister(:iphone)
  Mime::Type.unregister(:mobile)
end
test_all()
# File actionpack/test/controller/mime_responds_test.rb, line 218
def test_all
  @request.accept = "*/*"
  get :js_or_html
  assert_equal 'HTML', @response.body # js is not part of all

  get :html_or_xml
  assert_equal 'HTML', @response.body

  get :just_xml
  assert_equal 'XML', @response.body
end
test_browser_check_with_any_any()
# File actionpack/test/controller/mime_responds_test.rb, line 408
def test_browser_check_with_any_any
  @request.accept = "application/json, application/xml"
  get :json_xml_or_html
  assert_equal 'JSON', @response.body

  @request.accept = "application/json, application/xml, */*"
  get :json_xml_or_html
  assert_equal 'HTML', @response.body
end
test_custom_constant()
# File actionpack/test/controller/mime_responds_test.rb, line 429
def test_custom_constant
  get :custom_constant_handling, :format => "mobile"
  assert_equal "text/x-mobile", @response.content_type
  assert_equal "Mobile", @response.body
end
test_custom_constant_handling_without_block()
# File actionpack/test/controller/mime_responds_test.rb, line 435
def test_custom_constant_handling_without_block
  get :custom_constant_handling_without_block, :format => "mobile"
  assert_equal "text/x-mobile", @response.content_type
  assert_equal "Mobile", @response.body
end
test_custom_types()
# File actionpack/test/controller/mime_responds_test.rb, line 341
def test_custom_types
  @request.accept = "application/crazy-xml"
  get :custom_type_handling
  assert_equal "application/crazy-xml", @response.content_type
  assert_equal 'Crazy XML', @response.body

  @request.accept = "text/html"
  get :custom_type_handling
  assert_equal "text/html", @response.content_type
  assert_equal 'HTML', @response.body
end
test_extension_synonyms()
# File actionpack/test/controller/mime_responds_test.rb, line 463
def test_extension_synonyms
  get :html_xml_or_rss, :format => "xhtml"
  assert_equal "HTML", @response.body
end
test_firefox_simulation()
# File actionpack/test/controller/mime_responds_test.rb, line 359
def test_firefox_simulation
  @request.accept = "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"
  get :html_or_xml
  assert_equal 'HTML', @response.body
end
test_forced_format()
# File actionpack/test/controller/mime_responds_test.rb, line 441
def test_forced_format
  get :html_xml_or_rss
  assert_equal "HTML", @response.body

  get :html_xml_or_rss, :format => "html"
  assert_equal "HTML", @response.body

  get :html_xml_or_rss, :format => "xml"
  assert_equal "XML", @response.body

  get :html_xml_or_rss, :format => "rss"
  assert_equal "RSS", @response.body
end
test_format_with_custom_response_type()
# File actionpack/test/controller/mime_responds_test.rb, line 485
def test_format_with_custom_response_type
  get :iphone_with_html_response_type
  assert_equal '<html><div id="html">Hello future from Firefox!</div></html>', @response.body

  get :iphone_with_html_response_type, :format => "iphone"
  assert_equal "text/html", @response.content_type
  assert_equal '<html><div id="iphone">Hello iPhone future from iPhone!</div></html>', @response.body
end
test_format_with_custom_response_type_and_request_headers()
# File actionpack/test/controller/mime_responds_test.rb, line 494
def test_format_with_custom_response_type_and_request_headers
  @request.accept = "text/iphone"
  get :iphone_with_html_response_type
  assert_equal '<html><div id="iphone">Hello iPhone future from iPhone!</div></html>', @response.body
  assert_equal "text/html", @response.content_type
end
test_handle_any()
# File actionpack/test/controller/mime_responds_test.rb, line 365
def test_handle_any
  @request.accept = "*/*"
  get :handle_any
  assert_equal 'HTML', @response.body

  @request.accept = "text/javascript"
  get :handle_any
  assert_equal 'Either JS or XML', @response.body

  @request.accept = "text/xml"
  get :handle_any
  assert_equal 'Either JS or XML', @response.body
end
test_handle_any_any()
# File actionpack/test/controller/mime_responds_test.rb, line 379
def test_handle_any_any
  @request.accept = "*/*"
  get :handle_any_any
  assert_equal 'HTML', @response.body
end
test_handle_any_any_explicit_html()
# File actionpack/test/controller/mime_responds_test.rb, line 390
def test_handle_any_any_explicit_html
  @request.accept = "text/html"
  get :handle_any_any
  assert_equal 'HTML', @response.body
end
test_handle_any_any_javascript()
# File actionpack/test/controller/mime_responds_test.rb, line 396
def test_handle_any_any_javascript
  @request.accept = "text/javascript"
  get :handle_any_any
  assert_equal 'Whatever you ask for, I got it', @response.body
end
test_handle_any_any_parameter_format()
# File actionpack/test/controller/mime_responds_test.rb, line 385
def test_handle_any_any_parameter_format
  get :handle_any_any, {:format=>'html'}
  assert_equal 'HTML', @response.body
end
test_handle_any_any_xml()
# File actionpack/test/controller/mime_responds_test.rb, line 402
def test_handle_any_any_xml
  @request.accept = "text/xml"
  get :handle_any_any
  assert_equal 'Whatever you ask for, I got it', @response.body
end
test_html()
# File actionpack/test/controller/mime_responds_test.rb, line 206
def test_html
  @request.accept = "text/html"
  get :js_or_html
  assert_equal 'HTML', @response.body

  get :html_or_xml
  assert_equal 'HTML', @response.body

  get :just_xml
  assert_response 406
end
test_html_type_with_layout()
# File actionpack/test/controller/mime_responds_test.rb, line 418
def test_html_type_with_layout
  @request.accept = "text/html"
  get :all_types_with_layout
  assert_equal '<html><div id="html">HTML for all_types_with_layout</div></html>', @response.body
end
test_internally_forced_format()
# File actionpack/test/controller/mime_responds_test.rb, line 455
def test_internally_forced_format
  get :forced_xml
  assert_equal "XML", @response.body

  get :forced_xml, :format => "html"
  assert_equal "XML", @response.body
end
test_invalid_format()
# File actionpack/test/controller/mime_responds_test.rb, line 501
def test_invalid_format
  get :using_defaults, :format => "invalidformat"
  assert_equal " ", @response.body
  assert_equal "text/html", @response.content_type
end
test_js_or_anything()
# File actionpack/test/controller/mime_responds_test.rb, line 281
def test_js_or_anything
  @request.accept = "text/javascript, */*"
  xhr :get, :js_or_html
  assert_equal 'JS', @response.body

  xhr :get, :html_or_xml
  assert_equal 'HTML', @response.body

  xhr :get, :just_xml
  assert_equal 'XML', @response.body
end
test_js_or_html()
# File actionpack/test/controller/mime_responds_test.rb, line 236
def test_js_or_html
  @request.accept = "text/javascript, text/html"
  xhr :get, :js_or_html
  assert_equal 'JS', @response.body

  @request.accept = "text/javascript, text/html"
  xhr :get, :html_or_xml
  assert_equal 'HTML', @response.body

  @request.accept = "text/javascript, text/html"
  xhr :get, :just_xml
  assert_response 406
end
test_json_or_yaml()
# File actionpack/test/controller/mime_responds_test.rb, line 260
def test_json_or_yaml
  xhr :get, :json_or_yaml
  assert_equal 'JSON', @response.body

  get :json_or_yaml, :format => 'json'
  assert_equal 'JSON', @response.body

  get :json_or_yaml, :format => 'yaml'
  assert_equal 'YAML', @response.body

  { 'YAML' => %w(text/yaml),
    'JSON' => %w(application/json text/x-json)
  }.each do |body, content_types|
    content_types.each do |content_type|
      @request.accept = content_type
      get :json_or_yaml
      assert_equal body, @response.body
    end
  end
end
test_json_or_yaml_with_leading_star_star()
# File actionpack/test/controller/mime_responds_test.rb, line 250
def test_json_or_yaml_with_leading_star_star
  @request.accept = "*/*, application/json"
  get :json_xml_or_html
  assert_equal 'HTML', @response.body

  @request.accept = "*/* , application/json"
  get :json_xml_or_html
  assert_equal 'HTML', @response.body
end
test_render_action_for_html()
# File actionpack/test/controller/mime_responds_test.rb, line 468
def test_render_action_for_html
  @controller.instance_eval do
    def render(*args)
      @action = args.first[:action] unless args.empty?
      @action ||= action_name

      response.body = "#{@action} - #{formats}"
    end
  end

  get :using_defaults
  assert_equal "using_defaults - #{[:html].to_s}", @response.body

  get :using_defaults, :format => "xml"
  assert_equal "using_defaults - #{[:xml].to_s}", @response.body
end
test_synonyms()
# File actionpack/test/controller/mime_responds_test.rb, line 331
def test_synonyms
  @request.accept = "application/javascript"
  get :js_or_html
  assert_equal 'JS', @response.body

  @request.accept = "application/x-xml"
  get :html_xml_or_rss
  assert_equal "XML", @response.body
end
test_using_defaults()
# File actionpack/test/controller/mime_responds_test.rb, line 293
def test_using_defaults
  @request.accept = "*/*"
  get :using_defaults
  assert_equal "text/html", @response.content_type
  assert_equal 'Hello world!', @response.body

  @request.accept = "application/xml"
  get :using_defaults
  assert_equal "application/xml", @response.content_type
  assert_equal "<p>Hello world!</p>\n", @response.body
end
test_using_defaults_with_type_list()
# File actionpack/test/controller/mime_responds_test.rb, line 305
def test_using_defaults_with_type_list
  @request.accept = "*/*"
  get :using_defaults_with_type_list
  assert_equal "text/html", @response.content_type
  assert_equal 'Hello world!', @response.body

  @request.accept = "application/xml"
  get :using_defaults_with_type_list
  assert_equal "application/xml", @response.content_type
  assert_equal "<p>Hello world!</p>\n", @response.body
end
test_with_atom_content_type()
# File actionpack/test/controller/mime_responds_test.rb, line 317
def test_with_atom_content_type
  @request.accept = ""
  @request.env["CONTENT_TYPE"] = "application/atom+xml"
  xhr :get, :made_for_content_type
  assert_equal "ATOM", @response.body
end
test_with_rss_content_type()
# File actionpack/test/controller/mime_responds_test.rb, line 324
def test_with_rss_content_type
  @request.accept = ""
  @request.env["CONTENT_TYPE"] = "application/rss+xml"
  xhr :get, :made_for_content_type
  assert_equal "RSS", @response.body
end
test_xhr()
# File actionpack/test/controller/mime_responds_test.rb, line 424
def test_xhr
  xhr :get, :js_or_html
  assert_equal 'JS', @response.body
end
test_xhtml_alias()
# File actionpack/test/controller/mime_responds_test.rb, line 353
def test_xhtml_alias
  @request.accept = "application/xhtml+xml,application/xml"
  get :html_or_xml
  assert_equal 'HTML', @response.body
end
test_xml()
# File actionpack/test/controller/mime_responds_test.rb, line 230
def test_xml
  @request.accept = "application/xml"
  get :html_xml_or_rss
  assert_equal 'XML', @response.body
end