Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 372 down vote accepted

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:

def not_found
  raise ActionController::RoutingError.new('Not Found')
end

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:

  user = User.find_by_email(params[:email]) || not_found
  user.do_something!

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:

lambda {
  visit '/something/you/want/to/404'
}.should raise_error(ActionController::RoutingError)
share|improve this answer
The selected answer didn't work for me but this one did. – Jason Swett Mar 2 '11 at 2:48
1  
This is now the selected answer :) – yuval Aug 14 '11 at 0:07
58  
+1 for adding example test code! – bantic Aug 18 '11 at 16:47
2  
There is a reason to do it yourself. If your application hijacks all of the routes from the root. It's bad design, but sometimes un-avoidable. – ablemike Oct 3 '11 at 13:54
1  
This approach also lets you use the ActiveRecord bang finders (find!, find_by_...!, etc.), which all raise an ActiveRecord::RecordNotFound exception if no record is found (triggering the rescue_from handler). – gjvis Jun 18 '12 at 17:59
show 11 more comments

HTTP 404 Status

To return a 404 header, just use the :status option for the render method.

def action
  # here the code

  render :status => 404
end

If you want to render the standard 404 page you can extract the feature in a method.

def render_404
  respond_to do |format|
    format.html { render :file => "#{Rails.root}/public/404", :layout => false, :status => :not_found }
    format.xml  { head :not_found }
    format.any  { head :not_found }
  end
end

and call it in your action

def action
  # here the code

  render_404
end

If you want the action to render the error page and stop, simply use a return statement.

def action
  render_404 and return if params[:something].blank?

  # here the code that will never be executed
end

ActiveRecord and HTTP 404

Also remember that Rails rescues some ActiveRecord errors, such as the ActiveRecord::RecordNotFound displaying the 404 error page.

It means you don't need to rescue this action yourself

def show
  user = User.find(params[:id])
end

User.find raises an ActiveRecord::RecordNotFound when the user doesn't exist. This is a very powerful feature. Look at the following code

def show
  user = User.find_by_email(params[:email]) || raise("not found")
  # ...
end

You can simplify it by delegating to Rails the check. Simply use the bang version.

def show
  user = User.find_by_email!(params[:email])
  # ...
end
share|improve this answer
whoa cool! thank you very much! – yuval Mar 5 '10 at 10:04
4  
There's a big problem with this solution; it will still run the code in the template. So if you have a simple, restful structure and someone enters an ID that doesn't exist, your template will be looking for the object which doesn't exist. – jcalvert Jul 2 '11 at 14:45
4  
As mentioned before, this is not the correct answer. Try Steven's. – Pablo Marambio Jul 7 '11 at 18:57
Changed the selected answer to reflect the better practice. Thanks for the comments, guys! – yuval Aug 14 '11 at 0:08
Voted up, because the "render :file ... :status => :not_found" line is very helpful for the corner case where I handle another exception, but want to serve a 404 header. – richardsun Oct 7 '11 at 15:27
show 3 more comments

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:

render :text => 'Not Found', :status => '404'

Here's a typical test set of mine for something I expect to return 404, using RSpec and Shoulda matchers:

describe "user view" do
  before do
    get :show, :id => 'nonsense'
  end

  it { should_not assign_to :user }

  it { should respond_with :not_found }
  it { should respond_with_content_type :html }

  it { should_not render_template :show }
  it { should_not render_with_layout }

  it { should_not set_the_flash }
end

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.

share|improve this answer
really like this answer, especially with regards to the testing of the output and not the methods called in the controller… – xentek Mar 28 at 20:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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