web-dev-qa-db-ja.com

「リンクするホストがありません!:Hostパラメータを指定してください」を解決するにはどうすればよいですか? (RoR)

私は RoRチュートリアル に従っていて、 リスト9.15 で立ち往生しています。

'bundle exec rspec spec /'の実行後に次のエラーが発生します。

1) Authentication authorization as wrong user submitting a PATCH request to the Users#update action 
     Failure/Error: specify { expect(response).to redirect_to(root_url) }
     ArgumentError:
       Missing Host to link to! Please provide the :Host parameter, set default_url_options[:Host], or set :only_path to true
     # ./spec/features/authentication_pages_spec.rb:79:in `block (5 levels) in <top (required)>'

私の認証テストコードは次のとおりです。

「spec_helper」が必要

describe "Authentication", type: :request do

  subject { page }


  describe "signin page" do
    before { visit signin_path }

    it { should have_content('Sign in') }
    it { should have_title('Sign in') }
  end

  describe "signin" do
    before { visit signin_path }

    describe "with invalid information" do
      before { click_button "Sign in" }

      it { should have_title('Sign in') }
      it { should have_selector('div.alert.alert-error', text: 'Invalid') }

      describe "after visiting another page" do
        before { click_link "Home" }
        it { should_not have_selector('div.alert.alert-error') }
      end

    end

    describe "with valid information" do
      let(:user) { FactoryGirl.create(:user) }
      before { sign_in user }

      #it { should have_title(user.name) }
      it { should have_link('Profile',     href: user_path(user)) }
      it { should have_link('Settings',    href: edit_user_path(user)) }
      it { should have_link('Sign out',    href: signout_path) }
      it { should_not have_link('Sign in', href: signin_path) }

      describe "followed by signout" do
        before { click_link "Sign out" }
        it { should have_link('Sign in') }
      end
    end
  end

  describe "authorization" do

    describe "for non-signed-in users" do
      let(:user) { FactoryGirl.create(:user) }

      describe "in the Users controller" do

        describe "visiting the edit page" do
          before { visit edit_user_path(user) }
          it { should have_title('Sign in') }
        end

        describe "submitting to the update action" do
          before { patch user_path(user) }
          specify { expect(response).to redirect_to(signin_path) }
        end
      end
    end

    describe "as wrong user" do
      let(:user) { FactoryGirl.create(:user) }
      let(:wrong_user) { FactoryGirl.create(:user, email: "[email protected]") }
      before { sign_in user, no_capybara: true }

      describe "visiting Users#edit page" do
        before { visit edit_user_path(wrong_user) }
        #it { should_not have_title(full_title('Edit user')) }
      end

      describe "submitting a PATCH request to the Users#update action" do
        before { patch user_path(wrong_user) }
        specify { expect(response).to redirect_to(root_url) }
      end
    end

  end
end

この問題を解決してテストに合格する方法がわかりません。 doどうやって解決しますか?誰かが何が悪いのか説明できますか? (チュートリアルによると、テストは合格するはずです)。

17
Sheldon

最後に私はちょうど使用しました:

root_path

の代わりに:

root_url
20
Sheldon

問題は、テスト環境にdefault_Hostを定義していないことである可能性があります。次のように、config/environments/test.rb内にdefault_Hostを定義します。

config.action_mailer.default_url_options = {:Host => "localhost:3000"}
62
Aman Garg

各環境(開発、テスト、本番)でdefault_urlを設定する必要があります。

これらの変更を行う必要があります。

    config/environments/development.rb
     config.action_mailer.default_url_options = 
      { :Host => 'your-Host-name' }  #if it is local then 'localhost:3000'

 config/environments/test.rb
      config.action_mailer.default_url_options = 
      { :Host => 'your-Host-name' }  #if it is local then 'localhost:3000'

  config/environments/development.rb
     config.action_mailer.default_url_options = 
      { :Host => 'your-Host-name' }  #if it is local then 'localhost:3000'
4

OPの例に示されているコントローラーテストのようなテストでは、このエラーを解決するために別の設定が必要です。 Kesha Antonov で言及代わりに、ルートのdefault_url_optionsを使用できます。 config/environments/test.rbの最後の行に(endの後に)次の設定を追加することにより、テストは指定されたホストを使用しますビルドURL:

Rails.application.routes.default_url_options[:Host] = 'lvh.me:3000'

OPが別の回答で述べたように、エラーがURL名前付きルートからのものである場合は、代わりにPathNamed Route に切り替えることができます。

メーラープレビューのデフォルトホストを設定する場合は、他の回答で言及されているaction_mailer.default_url_optionsが必要になります。

config.action_mailer.default_url_options = { :Host => "localhost:3000" }

action_mailer設定の詳細については、 Action Mailer API docsの「Generating URLs」を参照してください。

2
DBrown