I am using rSpec for testing my application. In my application controller I have a method like so:

def set_current_account
  @current_account ||= Account.find_by_subdomain(request.subdomains.first)
end

Is it possible to set the request.subdomain in my spec? Maybe in the before block? I am new to rSpec so any advice on this would be great thanks.

Eef

link|improve this question

feedback

2 Answers

up vote 19 down vote accepted

I figured out how to sort this issue.

In my before block in my specs I simply added:

before(:each) do
  @request.host = "#{mock_subdomain}.example.com"
end

This setups up the request.subdomains.first to be the value of the mock_subdomain.

Hope someone finds this useful as its not explained very well anywhere else on the net.

link|improve this answer
2  
one small tip - request is available as a method as well as an instance variable. It's probably better to access it via the method, to keep a little distance between you and the underlying RSpec code. – pat Aug 3 '10 at 5:04
May I ask how it is done the method way? – lulalala May 14 at 6:12
feedback

In rails 3 everything I tried to manually set the host didn't work, but looking the code I noticed how nicely they parsed the path you pass to the request helpers like get. Sure enough if your controller goes and fetches the user mentioned in the subdomain and stores it as @king_of_the_castle

it "fetches the user of the subomain" do
  get "http://#{mock_subdomain}.example.com/rest_of_the_path"
  assigns[:king_of_the_castle].should eql(User.find_by_name mock_subdomain)
end
link|improve this answer
Whether or not this is the official way to do it in Rails 3, adding the host directly to the path as demonstrated by ilpoldo worked for me. – Jeff Poulton Nov 14 '11 at 23:54
feedback

Your Answer

 
or
required, but never shown

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