###現状
request specでsouvenirs/show
ページにアクセスできるかをテストしたところ、Couldn't find with 'id'=
が発生しました。
###コード
エラーコード
Failures: 1) Souvenir GET #show souvenirの投稿が存在するとき リクエストの成功 Failure/Error: @souvenir = Souvenir.find(params[:id]) ActiveRecord::RecordNotFound: Couldn't find Souvenir with 'id'=1002 # ./app/controllers/souvenirs_controller.rb:50:in `set_souvenir_params' # ./spec/requests/souvenirs/show_request_spec.rb:12:in `block (4 levels) in <top (required)>' Finished in 9.78 seconds (files took 1.4 seconds to load) 1 example, 1 failure
モデル
SouvenirModel
1class Souvenir < ApplicationRecord 2 belongs_to :user 3 mount_uploader :picture ,PictureUploader 4 validates:name, presence: true,length: {maximum:70} 5 validates:comment, presence: true,length: {maximum:250} 6 validates:spot, presence: true 7 validates:price, presence: true 8 validates:genre, presence: true 9 validate :picture_size 10 11 private 12 13 def picture_size 14 if picture.size > 5.megabytes 15 errors.add(:picture, "should be less than 5MB") 16 end 17 end 18 19 def souvenir_params 20 params.require(:souvenirs).permit(:name, :spot, :price, :genre, :picture, :comment) 21 end 22 23 24end 25
コントローラー
SouvenirController
1class SouvenirsController < ApplicationController 2 3 before_action :set_souvenir_params, only: [:show, :edit, :update, :destroy] 4 5 def show 6 end 7 8 private 9 10 def set_souvenir_params 11 @souvenir = Souvenir.find(params[:id]) 12 end 13end
request spec
RequestSpec
1RSpec.describe 'Souvenir', type: :request do 2 3 describe "GET #show" do 4 let(:souvenir) { FactoryBot.build_stubbed(:souvenir) } 5 6 context 'souvenirの投稿が存在するとき' do 7 8 it 'リクエストの成功' do 9 #byebug 10 get souvenir_url souvenir.id 11 expect(request.status).to eq 200 12 end 13 end 14 end 15end 16
factories
SouvenirFactory
1FactoryBot.define do 2 3 factory :souvenir, class: Souvenir do 4 name {"MyString"} 5 spot {"MyString"} 6 price {1} 7 picture {"MyString"} 8 genre {"MyString"} 9 comment {"MyString"} 10 user #souvenirと一対多の関係を持つuserが存在します 11 end 12 end
UserFactory
1FactoryBot.define do 2 3 factory :user, class: User do 4 name { "MyString" } 5 email { "MyString@gmail.com" } 6 password {"MyString"} 7 password_confirmation {"MyString"} 8 9 trait :failure do 10 name {' '} 11 end 12 13 end 14 end
###試したこと
RequestSpec中にsouvenirインスタンスが生成されたことはdebuggerで確認できました。
(byebug) souvenir #<Souvenir id: 1002, name: "MyString", spot: "MyString", price: 1, good: nil, picture: nil, genre: "MyString", comment: "MyString", created_at: "2019-12-07 05:45:00", updated_at: "2019-12-07 05:45:00", user_id: 1001>
テスト中のモデルの生成にbuild_stubbed
を使っていることで、showアクションに上手くidが渡せていのかと考えています。が、解決は出来ていません。
ご回答いただければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/07 06:11
2019/12/07 06:11
2019/12/07 06:13
2019/12/07 06:29