I'd like to 'fake' a 404 page in Rails. In PHP, I would just send a header with the error code as such:
header("HTTP/1.0 404 Not Found");
How is that done with Rails?
|
I'd like to 'fake' a 404 page in Rails. In PHP, I would just send a header with the error code as such:
How is that done with Rails? |
||||
|
|
|
Don't render 404 yourself, there's no reason to; Rails has this functionality built in already. If you want to show a 404 page, create a render_404 method (or "not_found" as I called it) in ApplicationController like this:
Rails also handles AbstractController::ActionNotFound, and ActiveRecord::RecordNotFound the same way. This does two things better: 1) It uses Rails' built in rescue_from handler to render the 404 page, and 2) it interrupts the execution of your code, letting you do nice things like:
without having to write ugly conditional statements. As a bonus, it's also super easy to handle in tests. For example, in an rspec integration test:
|
|||||||||||||||||||
|
HTTP 404 StatusTo return a 404 header, just use the
If you want to render the standard 404 page you can extract the feature in a method.
and call it in your action
If you want the action to render the error page and stop, simply use a return statement.
ActiveRecord and HTTP 404Also remember that Rails rescues some ActiveRecord errors, such as the It means you don't need to rescue this action yourself
You can simplify it by delegating to Rails the check. Simply use the bang version.
|
|||||||||||||||
|
|
The newly Selected answer submitted by Steven Soroka is close, but not complete. The test itself hides the fact that this is not returning a true 404 - it's returning a status of 200 - "success". The original answer was closer, but attempted to render the layout as if no failure had occurred. This fixes everything:
Here's a typical test set of mine for something I expect to return 404, using RSpec and Shoulda matchers:
This healthy paranoia allowed me to spot the content-type mismatch when everything else looked peachy :) I check for all these elements: assigned variables, response code, response content type, template rendered, layout rendered, flash messages. I'll skip the content type check on applications that are strictly html...sometimes. After all, "a skeptic checks ALL the drawers" :) http://dilbert.com/strips/comic/1998-01-20/ FYI: I don't recommend testing for things that are happening in the controller, ie "should_raise". What you care about is the output. My tests above allowed me to try various solutions, and the tests remain the same whether the solution is raising an exception, special rendering, etc. |
||||
|