I am using lvh.me:3000 which redirects to localhost, and allows me to have wildcards like:

test.lvh.me:3000

In my application_controller, I make sure there is a subdomain in the url, and looking the subdomain in the database also.

If there is no subdomain, I redirect to an error page.

Because of this, my rspec controller tests are failing because the tests don't have a subdomain.

How can I make the get 'index' calls to use a subdomain that I know exists in the test db?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

To get around this I do the following:

# spec/support/spec_helper_methods.rb
def require_subdomain
  @subdomain = # however you establish subdomains in you app
  controller.expects(:current_subdomain).returns(@subdomain)
  @request.host = "#{@subdomain}.test.host"
end

and then in my specs:

describe UsersController do

  describe "GET /users/new" do

    before do
      require_subdomain
    end

  end

end

Note - I'm using Mocha here, hence the expects() and returns() methods.

In my controller, I ask for current_subdomain() and raise a 404 if there isn't one

link|improve this answer
could this be done w/o mocha? i'm using rspec and factory_girl right now. – Blankman May 19 '11 at 17:34
feedback

Your Answer

 
or
required, but never shown

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