6

我定义了以下过滤器:

# application_controller.rb
class ApplicationController < ActionController::Base
  before_filter :find_account

  private

    def find_account
      @current_account = Account.find_by_subdomain!(request.subdomains.first)
    end
end

在我的测试中:

# users_controller_test.rb
class UsersControllerTest < ActionController::TestCase
  setup do
    @request.host = "test.myapp.local"
  end
  # ...
end

现在test被定义为一个虚拟帐户的子域,我在所有请求之前使用factory_girl. 但是,这是抛出一个 nil 对象错误,说 @request 是 nil。删除设置块会导致我的所有测试都失败,因为 find_account 找不到帐户并因此引发RecordNotFound错误。

我究竟做错了什么?

4

1 回答 1

4

尝试这个:

@request.env['HTTP_HOST'] = 'test.myapp.local'
于 2011-01-03T21:02:20.777 回答