前提・実現したいこと
現在ポートフォリオの作成に伴い、systemのテストを作成している最中なのですが
1点解決できないことがありますのでわかる方いましたらご回答よろしくお願い致します。
具体的にわからないことについてはタイトルにもある雨通りにはなりますがuser_idが
うまく渡せておらずエラーが発生している状況です。
どのようにuser_idを定義するのかがよくわからず解決できていません。
また、原因解決のために色々と調べているとcurrent_user.idがnilの場合はログインが
できていないとの記事を拝見しました。
しかし自分の中ではbeforeでログインを行なっていますがログインができていないことが
原因なのでしょうか?
どなたかよろしくお願い致します。
発生している問題・エラーメッセージ
Failure/Error: @cafe.user_id = current_user.id NoMethodError: undefined method `id' for nil:NilClass
該当のソースコード
require 'rails_helper' RSpec.describe Cafe, type: :system do let(:user) { create(:user) } let(:cafe) { create(:cafe) } describe 'Cafe CRUD' do describe 'カフェ新規登録' do context 'フォームの入力値が正常' do before { login(user) } it 'カフェの新規作成が成功' do visit new_cafe_path attach_file "cafe[image]", "#{Rails.root}/spec/factories/images/test.jpg" fill_in 'cafe[name]', with: 'testcafe' fill_in 'cafe[address]', with: '東京都渋谷区' fill_in 'cafe[number_seats]', with: 10 click_button 'カフェ登録' expect(current_path).to eq cafe_path expect(page).to have_content '登録しました' end end context 'カフェ名が未記入' do before { login(user) } it 'カフェの新規作成が失敗' do visit new_cafe_path attach_file "cafe[image]", "#{Rails.root}/spec/factories/images/test.jpg" fill_in 'cafe[name]', with: nil fill_in 'cafe[address]', with: '東京都渋谷区' fill_in 'cafe[number_seats]', with: 10 click_button 'カフェ登録' expect(current_path).to eq cafe_path expect(page).to have_content "カフェ名を入力してください" end end end describe 'カフェ編集' do context 'フォームの入力値が正常' do describe 'カフェ編集' do context 'フォームの入力値が正常' do before { login(user) } before { create(cafe) } it 'カフェの編集が成功' do visit edit_cafe_path(cafe) attach_file "cafe[image]", "#{Rails.root}/spec/factories/images/test.jpg" fill_in 'cafe[name]', with: 'test_a.cafe' fill_in 'cafe[address]', with: '東京都渋谷区' fill_in 'cafe[number_seats]', with: 10 click_link '更新する' expect(current_path).to eq cafe_path expect(page).to have_content '更新しました' end end end end context 'カフェ名未記入' do before { login(user) } before { create(cafe) } it 'カフェの編集が失敗' do visit edit_cafe_path(cafe) attach_file "cafe[image]", "#{Rails.root}/spec/factories/images/test.jpg" fill_in 'cafe[name]', with: nil fill_in 'cafe[address]', with: '東京都渋谷区' fill_in 'cafe[number_seats]', with: 10 click_link '更新する' expect(current_path).to eq cafe_path expect(page).to have_content "カフェ名を入力してください" end end end end end
module LoginModule def create(cafe) visit new_cafe_path attach_file "cafe[image]", "#{Rails.root}/spec/factories/images/test.jpg" fill_in 'cafe[name]', with: 'testcafe' fill_in 'cafe[address]', with: '東京都渋谷区' fill_in 'cafe[number_seats]', with: 10 click_button 'カフェ登録' end end
module LoginModule def login(user) visit login_path fill_in 'email', with: user.email fill_in 'password', with: 'password' within('.session_field_other') do click_button 'ログイン' end end end
試したこと
エラー内容からuser_idのidがnilということだと思いspec.rbに
fill_in 'cafe[user_id]', with: user.id
と記載し再度テストを実行しましたがエラーのままでした。
formに直接user_idとユーザーが入力するわけではないので
fill_inの書き方が違うのだろうなと思っています。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。