解決
このgist form Steven Harman のおかげで、うまくいきました。devise_mail_helpers.rb
module Features
module MailHelpers
def last_email
ActionMailer::Base.deliveries[0]
end
# Can be used like:
# extract_token_from_email(:reset_password)
def extract_token_from_email(token_name)
mail_body = last_email.body.to_s
mail_body[/#{token_name.to_s}_token=([^"]+)/, 1]
end
end
end
devise_mail_helpers.rb
機能仕様と同じフォルダーにファイルを追加して、この仕様を作成しました。
require 'devise_mail_helpers.rb'
include Features
include MailHelpers
describe "PasswordResets" do
it "emails user when requesting password reset" do
user = FactoryGirl.create(:user)
visit root_url
find("#login_link").click
click_link "Forgot your password?"
fill_in "Email", :with => user.email
click_button "Send instructions"
current_path.should eq('/users/sign_in')
page.should have_content("You will receive an email with instructions about how to reset your password in a few minutes.")
last_email.to.should include(user.email)
token = extract_token_from_email(:reset_password) # Here I call the MailHelper form above
visit edit_password_url(reset_password_token: token)
fill_in "user_password", :with => "foobar"
fill_in "user_password_confirmation", :with => "foobar1"
find('.signup_firm').find(".submit").click
page.should have_content("Password confirmation doesn't match Password")
end
end
これにより仕様が処理され、ブラウザーで機能するようにするには、以下の Dave の回答を参照してください。
元の質問
Rails 4 アプリで、devise を 3.1 にアップグレードして実行したrails s
ところ、次のようになりました。
`raise_no_secret_key': Devise.secret_key was not set.
Please add the following to your Devise initializer: (RuntimeError)
config.secret_key = '--secret--'
デバイス初期化子に秘密鍵を追加しました。
この後、パスワードをリセットしようとすると、次のエラーが表示されます
Reset password token is invalid
メールで送信されるトークンが正しくないようです。他のすべてが機能しています。私は暖かいナイフトラフバターのようにログインおよびログアウトします.
アップデート
reset_password_token
ここで、機能仕様からの Here の暗号化を使用する必要があると思います。
user = FactoryGirl.create(:user,
:reset_password_token => "something",
:reset_password_sent_at => 1.hour.ago)
visit edit_password_url(user, :reset_password_token =>
user.reset_password_token)
fill_in "user_password", :with => "foobar"
click_button "Change my password"
page.should have_content("Password confirmation doesn't match Password")
発生したエラーは次のとおりです。
Failure/Error: page.should have_content
("Password confirmation doesn't match Password")
expected to find text "Password confirmation doesn't match Password" in
"Reset password token is invalid"
私が欠けているものについてのアイデアはありますか?