web-dev-qa-db-ja.com

Railsのコンソールからコントローラ/ビューメソッドを呼び出すにはどうすればいいですか?

script/consoleをロードするとき、ときどきコントローラまたはビューヘルパーメソッドの出力で遊びたいです。

方法はありますか?

  • リクエストをシミュレートする
  • リクエストに応じてコントローラインスタンスからメソッドを呼び出す?
  • 上記のコントローラインスタンスまたは別の方法で、ヘルパーメソッドをテストしますか?
423
kch

ヘルパーを呼び出すには、helperオブジェクトを使用します。

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

デフォルトでは含まれていないヘルパーを使用したい場合(たとえば、ApplicationControllerからhelper :allを削除したため)、ヘルパーを含めるだけです。

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

コントローラを扱うことに関しては、私は引用します Nick's answer:

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

> response.body            # get you the HTML
> response.cookies         # hash of the cookies

# etc, etc
467
kch

スクリプト/コンソールからコントローラのアクションを呼び出してレスポンスオブジェクトを表示/操作する簡単な方法は次のとおりです。

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

> response.body            # get you the HTML
> response.cookies         # hash of the cookies

# etc, etc

アプリオブジェクトは ActionController :: Integration :: Session のインスタンスです。

これはRails 2.1と2.3を使っている私のために働きます、私は以前のバージョンを試していませんでした。

142
Nick

コンソールからテストする必要がある場合(Rails 3.1と4.1でテスト済み):

コントローラアクションを呼び出す:

app.get '/'              
   app.response            
   app.response.headers  # => { "Content-Type"=>"text/html", ... }
   app.response.body     # => "<!DOCTYPE html>\n<html>\n\n<head>\n..." 

ApplicationControllerメソッド:

foo = ActionController::Base::ApplicationController.new
foo.public_methods(true||false).sort
foo.some_method 

ルートヘルパー:

app.myresource_path     # => "/myresource" 
app.myresource_url      # => "http://www.example.com/myresource"

ヘルパーを表示:

foo = ActionView::Base.new

foo.javascript_include_tag 'myscript' #=> "<script src=\"/javascripts/myscript.js\"></script>"

helper.link_to "foo", "bar" #=> "<a href=\"bar\">foo</a>"

ActionController::Base.helpers.image_tag('logo.png')  #=> "<img alt=\"Logo\" src=\"/images/logo.png\" />"

レンダリング:

views = Rails::Application::Configuration.new(Rails.root).paths["app/views"]
views_helper = ActionView::Base.new views
views_helper.render 'myview/mytemplate'
views_helper.render file: 'myview/_mypartial', locals: {my_var: "display:block;"}
views_helper.assets_prefix  #=> '/assets'

ActiveSupportメソッド:

require 'active_support/all'
1.week.ago
=> 2013-08-31 10:07:26 -0300
a = {'a'=>123}
a.symbolize_keys
=> {:a=>123}

Libモジュール

> require 'my_utils'
 => true 
> include MyUtils
 => Object 
> MyUtils.say "hi"
evaluate: hi
 => true 
102

これは、コンソールからこれを実行する1つの方法です。

>> foo = ActionView::Base.new
=> #<ActionView::Base:0x2aaab0ac2af8 @assigns_added=nil, @assigns={}, @helpers=#<ActionView::Base::ProxyModule:0x2aaab0ac2a58>, @controller=nil, @view_paths=[]>

>> foo.extend YourHelperModule
=> #<ActionView::Base:0x2aaab0ac2af8 @assigns_added=nil, @assigns={}, @helpers=#<ActionView::Base::ProxyModule:0x2aaab0ac2a58>, @controller=nil, @view_paths=[]>

>> foo.your_helper_method(args)
=> "<html>created by your helper</html>"

ActionView::Baseの新しいインスタンスを作成すると、ヘルパーが使用する可能性のある通常のビューメソッドにアクセスできるようになります。それからYourHelperModuleを拡張すると、そのメソッドがオブジェクトに混在して戻り値を表示できるようになります。

73
Gordon Wilson

これを行うもう1つの方法は、Railsデバッガを使用することです。デバッグについてのRailsガイドがあります http://guides.rubyonrails.org/debugging_Rails_applications.html

基本的には、-uオプションを付けてサーバーを起動します。

./script/server -u

そして、コントローラ/ヘルパー/ etcにアクセスしたい場所にスクリプトにブレークポイントを挿入します。

class EventsController < ApplicationController
  def index
    debugger
  end
end

そして、あなたがリクエストをしてコードのその部分を打つと、サーバコンソールはプロンプトを返すでしょう。そこでコマンドプロンプトからリクエストをしたりオブジェクトを見たりすることができます。終了したら、実行を続けるために 'cont'を入力してください。拡張デバッグのためのオプションもありますが、これは少なくとも始められるはずです。

15
Dan McNevin

MethodがPOST methodの場合

app.post 'controller/action?parameter1=value1&parameter2=value2'

[ここでのパラメータはあなたの適用性によるものになります]

そうでなければGETメソッドであれば

app.get 'controller/action'
14

例としてRefineryを使用して、認証されたPOST要求を作成する方法は次のとおりです。

# Start Rails console
Rails console
# Get the login form
app.get '/community_members/sign_in'
# View the session
app.session.to_hash
# Copy the CSRF token "_csrf_token" and place it in the login request.
# Log in from the console to create a session
app.post '/community_members/login', {"authenticity_token"=>"gT7G17RNFaWUDLC6PJGapwHk/OEyYfI1V8yrlg0lHpM=",  "refinery_user[login]"=>'chloe', 'refinery_user[password]'=>'test'}
# View the session to verify CSRF token is the same
app.session.to_hash
# Copy the CSRF token "_csrf_token" and place it in the request. It's best to edit this in Notepad++
app.post '/refinery/blog/posts', {"authenticity_token"=>"gT7G17RNFaWUDLC6PJGapwHk/OEyYfI1V8yrlg0lHpM=", "switch_locale"=>"en", "post"=>{"title"=>"Test", "homepage"=>"0", "featured"=>"0", "magazine"=>"0", "refinery_category_ids"=>["1282"], "body"=>"Tests do a body good.", "custom_teaser"=>"", "draft"=>"0", "tag_list"=>"", "published_at(1i)"=>"2014", "published_at(2i)"=>"5", "published_at(3i)"=>"27", "published_at(4i)"=>"21", "published_at(5i)"=>"20", "custom_url"=>"", "source_url_title"=>"", "source_url"=>"", "user_id"=>"56", "browser_title"=>"", "meta_description"=>""}, "continue_editing"=>"false", "locale"=>:en}

エラーが発生した場合も、これらが役に立つことがあります。

app.cookies.to_hash
app.flash.to_hash
app.response # long, raw, HTML
12
Chloe

以下のようにRailsコンソールでメソッドにアクセスできます。

controller.method_name
helper.method_name
10
Jyothu

Rails 3では、これを試してください。

session = ActionDispatch::Integration::Session.new(Rails.application)
session.get(url)
body = session.response.body

ボディはURLのHTMLを含みます。

Rails 3のモデルからのルーティングとレンダリング(ディスパッチ)の仕方

8
Tbabs

以前の答えはヘルパーを呼び出していますが、以下はコントローラメソッドを呼び出すのに役立ちます。私はこれを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

それからRailsコンソールで次のように入力できます。

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

...そしてhtmlはコンソールにダンプされます。

7
David Knight

任意のコントローラアクションまたはビューの中で、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

3

RailsコンソールでHelperメソッドをテストするための1つの方法があります。

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

とリロードして行う

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

2
dux

コントローラの場合は、Railsコンソールでコントローラオブジェクトをインスタンス化できます。

例えば、

class CustomPagesController < ApplicationController

  def index
    @customs = CustomPage.all
  end

  def get_number
    puts "Got the Number"
  end

  protected

  def get_private_number
    puts 'Got private Number'
  end

end

custom = CustomPagesController.new
2.1.5 :011 > custom = CustomPagesController.new
 => #<CustomPagesController:0xb594f77c @_action_has_layout=true, @_routes=nil, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=nil, @_response=nil> 
2.1.5 :014 > custom.get_number
Got the Number
 => nil

# For calling private or protected methods,
2.1.5 :048 > custom.send(:get_private_number)
Got private Number
 => nil
2
Dyaniyal Nadar

あなた自身のヘルパーを追加していて、それをコンソールで利用可能にしたい場合は、次のようにします。

  1. コンソールでinclude YourHelperNameを実行
  2. あなたのヘルパーメソッドはconsoleで利用可能になりました。コンソールでmethod_name(args)を呼び出してそれらを使用してください。

例: 'app/helpers/my_helper.rb`に(メソッドmy_methodを使って)MyHelperがあるとしたら、コンソールで次のようにします。

  1. include MyHelper
  2. my_helper.my_method
1
display_name