vote up 3 vote down star

Given a controller method like:

def show
    @model = Model.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.xml  { render :xml => model }
    end
  end

What's the best way to write an integration test that asserts that the return has the expected XML?

flag

4 Answers

vote up 2 vote down check

A combination of using the format and assert_select in an integration test works great:

class ProductsTest < ActionController::IntegrationTest
  def test_contents_of_xml
    get '/index/1.xml'
    assert_select 'product name', /widget/
  end
end

For more details check out assert_select in the Rails docs.

link|flag
vote up 2 vote down

This is the idiomatic way of testing the xml response from a controller.

class ProductsControllerTest < ActionController::TestCase
  def test_should_get_index_formatted_for_xml
    @request.env[‘HTTP_ACCEPT’] = ‘application/xml’
    get :index
    assert_response :success
  end
end
link|flag
That's a functional test, which I already have. Looking for an integration test. – Patrick Ritchie Sep 13 '08 at 15:06
vote up 0 vote down

Set the request objects accept header:

@request.accept = 'text/xml' # or 'application/xml' I forget which

Then you can assert the response body is equal to what you were expecting

assert_equal '<some>xml</some>', @response.body
link|flag
That part I know, looking for a A..Z integration test – Patrick Ritchie Sep 12 '08 at 19:52
vote up 0 vote down

These 2 answers are great, except that my results include the datetime fields, which are gong to be different in most circumstances, so the assert_equal fails. It appears that I will need to process the @response.body using an XML parser, and then compare the individual fields, the number of elements, etc. Or is there an easier way?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.