render_xml_test.rb 2.3 KB
Newer Older
1 2 3 4
require 'abstract_unit'
require 'controller/fake_models'
require 'pathname'

5 6 7
class RenderXmlTest < ActionController::TestCase
  class TestController < ActionController::Base
    protect_from_forgery
8

9 10 11
    def self.controller_path
      'test'
    end
12

13 14 15
    def render_with_location
      render :xml => "<hello/>", :location => "http://example.com", :status => 201
    end
16

17 18 19 20
    def render_with_object_location
      customer = Customer.new("Some guy", 1)
      render :xml => "<customer/>", :location => customer, :status => :created
    end
21

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    def render_with_to_xml
      to_xmlable = Class.new do
        def to_xml
          "<i-am-xml/>"
        end
      end.new

      render :xml => to_xmlable
    end

    def formatted_xml_erb
    end

    def render_xml_with_custom_content_type
      render :xml => "<blah/>", :content_type => "application/atomsvc+xml"
    end
38 39 40 41 42 43 44 45 46 47 48
  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"
49 50
  end

51 52 53 54 55 56 57 58 59
  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
60

61
  def test_rendering_with_object_location_should_set_header_with_url_for
62 63 64 65 66
    with_routing do |set|
      set.draw do |map|
        map.resources :customers
        map.connect ':controller/:action/:id'
      end
67

68 69 70
      get :render_with_object_location
      assert_equal "http://www.nextangle.com/customers/1", @response.headers["Location"]
    end
71
  end
72

73 74 75 76
  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
77

78 79 80 81
  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
82

83 84 85
  def test_should_use_implicit_content_type
    get :implicit_content_type, :format => 'atom'
    assert_equal Mime::ATOM, @response.content_type
86
  end
87
end