2009-05-13 20:00:36 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'controller/fake_models'
|
|
|
|
require 'pathname'
|
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
class RenderXmlTest < ActionController::TestCase
|
2010-04-22 06:12:38 -04:00
|
|
|
class XmlRenderable
|
|
|
|
def to_xml(options)
|
|
|
|
options[:root] ||= "i-am-xml"
|
|
|
|
"<#{options[:root]}/>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
class TestController < ActionController::Base
|
|
|
|
protect_from_forgery
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def self.controller_path
|
|
|
|
'test'
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def render_with_location
|
|
|
|
render :xml => "<hello/>", :location => "http://example.com", :status => 201
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def render_with_object_location
|
|
|
|
customer = Customer.new("Some guy", 1)
|
|
|
|
render :xml => "<customer/>", :location => customer, :status => :created
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def render_with_to_xml
|
2010-04-22 06:12:38 -04:00
|
|
|
render :xml => XmlRenderable.new
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def formatted_xml_erb
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_xml_with_custom_content_type
|
|
|
|
render :xml => "<blah/>", :content_type => "application/atomsvc+xml"
|
|
|
|
end
|
2010-04-22 06:12:38 -04:00
|
|
|
|
|
|
|
def render_xml_with_custom_options
|
|
|
|
render :xml => XmlRenderable.new, :root => "i-am-THE-xml"
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
tests TestController
|
|
|
|
|
|
|
|
def setup
|
|
|
|
# enable a logger so that (e.g.) the benchmarking stuff runs, so we can get
|
|
|
|
# a more accurate simulation of what happens in "real life".
|
|
|
|
super
|
|
|
|
@controller.logger = Logger.new(nil)
|
|
|
|
|
|
|
|
@request.host = "www.nextangle.com"
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_rendering_with_location_should_set_header
|
|
|
|
get :render_with_location
|
|
|
|
assert_equal "http://example.com", @response.headers["Location"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_rendering_xml_should_call_to_xml_if_possible
|
|
|
|
get :render_with_to_xml
|
|
|
|
assert_equal "<i-am-xml/>", @response.body
|
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2010-04-22 06:12:38 -04:00
|
|
|
def test_rendering_xml_should_call_to_xml_with_extra_options
|
2010-04-24 05:48:47 -04:00
|
|
|
get :render_xml_with_custom_options
|
|
|
|
assert_equal "<i-am-THE-xml/>", @response.body
|
2010-04-22 06:12:38 -04:00
|
|
|
end
|
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_rendering_with_object_location_should_set_header_with_url_for
|
2009-08-16 22:14:26 -04:00
|
|
|
with_routing do |set|
|
|
|
|
set.draw do |map|
|
2009-12-08 17:52:26 -05:00
|
|
|
resources :customers
|
2010-02-28 17:39:01 -05:00
|
|
|
# match ':controller/:action'
|
|
|
|
map.connect ':controller/:action/:id'
|
2009-08-16 22:14:26 -04:00
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-08-16 22:14:26 -04:00
|
|
|
get :render_with_object_location
|
|
|
|
assert_equal "http://www.nextangle.com/customers/1", @response.headers["Location"]
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_should_render_formatted_xml_erb_template
|
|
|
|
get :formatted_xml_erb, :format => :xml
|
|
|
|
assert_equal '<test>passed formatted xml erb</test>', @response.body
|
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_should_render_xml_but_keep_custom_content_type
|
|
|
|
get :render_xml_with_custom_content_type
|
|
|
|
assert_equal "application/atomsvc+xml", @response.content_type
|
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_should_use_implicit_content_type
|
|
|
|
get :implicit_content_type, :format => 'atom'
|
|
|
|
assert_equal Mime::ATOM, @response.content_type
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|
2009-08-01 10:47:44 -04:00
|
|
|
end
|