回答:
ヘルパーを呼び出すには、helper
オブジェクトを使用します。
$ ./script/console
>> helper.number_to_currency('123.45')
=> "R$ 123,45"
デフォルトで含まれていないヘルパー(たとえば、から削除helper :all
したためApplicationController
)を使用する場合は、ヘルパーを含めます。
>> include BogusHelper
>> helper.bogus
=> "bogus output"
コントローラの扱いについては、ニックの答えを引用します。
> 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
url_for
コンソールから呼び出す必要がありました。これを行うために私はやったapp.url_for(...)
NoMethodError: undefined method `protect_against_forgery?' for nil:NilClass
呼び出された関数定義protect_against_forgery?
コンソール内をそのリターンfalse
ActionDispatch::Integration::Session.include(Warden::Test::Helpers); Warden.test_mode! ; app.login_as(User.find(1), scope: :user)
。
スクリプト/コンソールからコントローラーアクションを呼び出し、応答オブジェクトを表示/操作する簡単な方法は次のとおりです。
> 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 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
コンソールからこれを行う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
、メソッドがオブジェクトにミックスされ、戻り値を表示できます。
メソッドがPOST
メソッドの場合:
app.post 'controller/action?parameter1=value1¶meter2=value2'
(ここでのパラメーターは、適用性に応じたものになります。)
そうでなければ、それがGET
メソッドであれば、
app.get 'controller/action'
app.methods.grep(/_path/)
:)
controler/action
可能性があり、例えば、あなたのルートに依存/users/all
してにマッピングApi::UsersController#index
:)
rake routes
。:)
これを行う別の方法は、Ruby on Railsデバッガーを使用することです。http://guides.rubyonrails.org/debugging_rails_applications.htmlに、デバッグに関するRuby on Railsガイドがあります。
基本的に、サーバーを-uオプションで起動します。
./script/server -u
そして、コントローラー、ヘルパーなどにアクセスしたいスクリプトにブレークポイントを挿入します。
class EventsController < ApplicationController
def index
debugger
end
end
そして、リクエストを作成してコードのその部分にヒットすると、サーバーコンソールはプロンプトを返し、そこでコマンドプロンプトからリクエストを作成したり、オブジェクトを表示したりできます。終了したら、「cont」と入力して実行を続けます。拡張デバッグのオプションもありますが、これで少なくとも開始できます。
例として精製所を使用して、認証された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
NameError: undefined local variable or method app for main:Object
ApplicationController.allow_forgery_protection = false
Ruby on Rails 3では、次のことを試してください。
session = ActionDispatch::Integration::Session.new(Rails.application)
session.get(url)
body = session.response.body
本文には、URLのHTMLが含まれます。
以前の答えはヘルパーの呼び出しですが、以下はコントローラーメソッドの呼び出しに役立ちます。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がコンソールにダンプされます。
コントローラーアクションまたはビュー内で、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コンソールでコントローラーオブジェクトをインスタンス化できます。
例えば、
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
def show response = @user.contributions end
をオーバーライドするにはどうすればよい@user
ですか?
独自のヘルパーを追加し、そのメソッドをコンソールで使用できるようにしたい場合は、次のようにします。
include YourHelperName
method_name(args)
になり、コンソールでそれらを呼び出すことができます。例:my_method
'app / helpers / my_helper.rb`に(メソッドを含む)MyHelperがあるとしたら、コンソールで次のようにします:
include MyHelper
my_helper.my_method
app.get
がわかります(スレッドエラーが発生します)。システムをフラッシュしてより多くのgetを実行する方法はありますか?