1

我有一个大型应用程序,通过 rspec 进行了超过一千次测试。

我们刚刚选择重定向任何页面,例如:

/
/foo
/foo/4/bar/34
...

至 :

/en
/en/foo
/fr/foo/4/bar/34 
....

所以我在 application.rb 中做了一个前置过滤器,如下所示:

if params[:locale].blank?
  headers["Status"] = "301 Moved Permanently"
  redirect_to request.env['REQUEST_URI'].sub!(%r(^(http.?://[^/]*)?(.*))) { "#{$1}/#{I18n.locale}#{$2}" }
end

它工作得很好但是......它打破了我的很多测试,例如:

  it "should return 404" do
    Video.should_receive(:failed_encodings).and_return([])
    get :last_failed_encoding
    response.status.should == "404 Not Found"
  end

要修复此测试,我应该这样做:

    get :last_failed_encoding, :locale => "en"

但是……说真的,我不想一一解决我所有的测试……

我试图使语言环境成为这样的默认参数:

class ActionController::TestCase
  alias_method(:old_get, :get) unless method_defined?(:old_get)
  def get(path, parameters = {}, headers = nil)
    parameters.merge({:locale => "fr"}) if parameters[:locale].blank?
    old_get(path, parameters, headers)
  end  
end

...但无法完成这项工作...有什么想法吗?

4

1 回答 1

0

如果不是之前为什么不定义这个语言环境?

在您的 applicationController 中:

params[:locale] = i18n.locale if params[:locale].blank?

在您的应用程序具有本地定义和未来链接之后可能会很好。

于 2010-04-06T15:26:09.540 回答