当我加载脚本/控制台时,有时我想使用控制器或视图助手方法的输出。

有没有办法:

模拟一个请求? 从控制器实例调用方法说请求? 测试助手方法,无论是通过所说的控制器实例或其他方式?


当前回答

从脚本/控制台和视图/操作响应对象调用控制器动作的简单方法是:

> app.get '/posts/1'
> response = app.response
# You now have a Ruby on Rails response object much like the integration tests

> response.body            # Get you the HTML
> response.cookies         # Hash of the cookies

# etc., etc.

app对象是ActionController::Integration::Session的实例

在我使用Ruby on Rails 2.1和2.3时,这是可行的,我没有尝试更早的版本。

其他回答

前面的答案是调用助手,但下面的答案将有助于调用控制器方法。我已经在Ruby on Rails 2.3.2上使用了这个功能。

首先将以下代码添加到.irbrc文件(可以在您的主目录中)

class Object
   def request(options = {})
     url=app.url_for(options)
     app.get(url)
     puts app.html_document.root.to_s
  end
end

然后在Ruby on Rails控制台中,您可以键入类似于……

request(:controller => :show, :action => :show_frontpage)

...HTML将被转储到控制台。

要调用helper,请使用helper对象:

$ ./script/console
>> helper.number_to_currency('123.45')
=> "R$ 123,45"

如果你想使用一个默认情况下没有包含的helper(比如,因为你从ApplicationController中删除了helper:all),只需要包含这个helper。

>> include BogusHelper
>> helper.bogus
=> "bogus output"

至于如何处理控制器,我引用Nick的回答:

get '/posts/1' > response = app.response #您现在有了一个rails响应对象,就像集成测试一样 >反应。body #给你HTML >反应。cookie #散列的cookie # etc, etc

在任何控制器动作或视图中,都可以通过调用console方法来调用控制台。

例如,在控制器中:

class PostsController < ApplicationController
  def new
    console
    @post = Post.new
  end
end

或在视图中:

<% console %>

<h2>New Post</h2>

这将在视图中呈现一个控制台。您不需要关心控制台调用的位置;它不会在调用时立即呈现,而是在HTML内容旁边呈现。

参见:http://guides.rubyonrails.org/debugging_rails_applications.html

在Ruby on Rails控制台中测试Helper方法的一种可能方法是:

Struct.new(:t).extend(YourHelper).your_method(*arg)

和重载做:

reload!; Struct.new(:t).extend(YourHelper).your_method(*arg)

从脚本/控制台和视图/操作响应对象调用控制器动作的简单方法是:

> app.get '/posts/1'
> response = app.response
# You now have a Ruby on Rails response object much like the integration tests

> response.body            # Get you the HTML
> response.cookies         # Hash of the cookies

# etc., etc.

app对象是ActionController::Integration::Session的实例

在我使用Ruby on Rails 2.1和2.3时,这是可行的,我没有尝试更早的版本。