vote up 0 vote down star

I have a number of controllers in my Ruby on Rails apps with a rescue handler at the end of the action that basically catches any unhandled errors and returns some kind of "user friendly" error. However, when I'm doing rake test I'd like to have those default rescue handlers disabled so I can see the full error & stack trace. Is there any automated way to do this?

Update to clarify: I have an action like this:

def foo
  # do some stuff...
rescue
  render :text => "Exception: #{$!}" # this could be any kind of custom render
end

Now when I functional test this, if the exception is raised then I'm going to get just a little bit of info about the exception, but what I'd like is for it to act as though there's no rescue handler there, so I get the full debug information.

flag

75% accept rate

4 Answers

vote up 0 vote down

I think the easiest thing to do is verify that the correct render was called-- or whatever was different from the regular, non-exceptional case.

link|flag
vote up 0 vote down

You shouldn't need to disable your rescue block. Use the assert_raise method (as suggested by Scott), and in the block, call the method that you expect an exception from.

For example:

def test_throws_exception
  assert_raise Exception do
    raise_if_true(true)
  end
end
link|flag
I'm not trying to assert an exception, I know all about how do do that and have done it many times. I'm trying to get full information about exceptions that occur when I don't expect them (including stack trace) but only when I'm in test mode. – sbwoodside May 13 at 23:26
Ah. Sorry. I misunderstood what you were trying to achieve. – Lucas May 14 at 0:01
vote up 0 vote down

Which method are you using? There are two rescue methods in ActionController.

I have this in my base controller:

def rescue_action_in_public(exception)
    response_code = response_code_for_rescue(exception)
    status = interpret_status(response_code)
    respond_to do |format|
        format.html { render_optional_error_file response_code}
        format.js { render :update, :status => status  do |page| page.redirect_to(:url => error_page_url(status)) end}
end

end

This only displays custom errors in production mode.

link|flag
Why does it only run in production mode? I don't see that. – sbwoodside May 13 at 5:23
vote up 0 vote down

Have you looked at using the assert_raise( exception1, exception2, ... ) { block } call and then printing the exception from the block?

link|flag

Your Answer

Get an OpenID
or

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