解決したいこと
rspec実行時、下記のエラーが出てテストが失敗になります。こちらのエラー解決方法についてお伺いしたいです。
ruby
1Failures: 2 1) User dependent: destoy destroys all posts when deleted 3 Failure/Error: 2.times { FactoryBot.create(:post, user: user) } 4 5 ActiveRecord::RecordInvalid: 6 バリデーションに失敗しました: Create userを入力してください
「Create userを入力してください」と出ていますが、
FactoryBotで作成したuserを使っているため、userは作成されていると考えておりました。
アソシエーションを伴うFactoryBotでのテストデータの作成方法が誤っているのではないかと
推測しています。
並行して「アソシエーションを伴うFactoryBotでのテストデータの作成方法」を調べているのですが、エラーの解消方法が見当たらず、お伺いしたい次第です。
現状
ログインユーザの情報を格納するuserモデルの単体テストを実施しようとしています。
<対象テストコード(models/user_spec.rb)>
ruby
1require 'rails_helper' 2 3RSpec.describe User, type: :model do 4 let(:user) { FactoryBot.create(:user) } 5 6 # ユーザID,メール,パスワードがあれば有効な状態であること 7 it "is valid with a email and password" do 8 expect(FactoryBot.build(:user)).to be_valid 9 end 10 11 # 削除の依存関係 12 describe "dependent: destoy" do 13 # 削除すると、紐づく店舗も全て削除されること 14 it "destroys all posts when deleted" do 15 2.times { FactoryBot.create(:post, user: user) } 16 expect { user.destroy }.to change(user.posts, :count).by(-2) 17 end 18 end 19end
テストデータ:FactoryBotの中身
factories/users.rb
ruby
1FactoryBot.define do 2 factory :user do 3 sequence(:email) { |n| "test#{n}@gmail.com" } 4 password { "passwd" } 5 end 6end
factories/posts.rb
ruby
1FactoryBot.define do 2 factory :post do 3 sequence(:title) { |n| "テスト投稿#{n}"} 4 description {"口コミのテストです"} 5 prefecture_code {"1"} 6 rest_type {"1"} 7 association :user 8 association :community 9 end 10end
modelの中身
userモデルでは、post(投稿)などの他のモデルとアソシエーションがあり、
userモデルのレコードが削除されると、それに紐づくpostモデルのレコードも削除されるようになっています。具体的なコードは以下です。
models/user.rb(抜粋)
ruby
1class User < ApplicationRecord 2 devise :database_authenticatable, :registerable, 3 :recoverable, :rememberable, :validatable, :timeoutable, authentication_keys: [:email] 4 validates :email, presence: true, uniqueness: true 5 validates :username, length: { maximum: 30 } 6 has_one_attached :image 7 8 has_many :posts, dependent: :destroy 9 has_many :likes, dependent: :destroy 10 has_many :comments , dependent: :destroy 11 has_many :belongings, dependent: :destroy 12 has_many :applies, dependent: :destroy 13 14 has_many :communities, through: :belongings # ユーザが所属しているコミュニティ 15 16 has_many :follower, class_name: "Relationship", foreign_key: "follower_id", dependent: :destroy # フォロー取得 17 has_many :followed, class_name: "Relationship", foreign_key: "followed_id", dependent: :destroy # フォロワー取得 18 has_many :following_user, through: :follower, source: :followed # 自分がフォローしている人 19 has_many :follower_user, through: :followed, source: :follower # 自分をフォローしている人 20end
post.rb(抜粋)
ruby
1class Post < ApplicationRecord 2 validates :title, presence: true, length: { maximum:30 } 3 validates :description, presence: true, length: { maximum:200 } 4 validates :prefecture_code, presence: true 5 validates :rest_type, presence: true 6 has_one_attached :image 7 8 belongs_to :user 9 belongs_to :community 10 has_many :likes, dependent: :destroy 11 has_many :comments, dependent: :destroy 12end
試したこと
①user_spec.rbの対象のテストケースの中でcreate userすべきかと考え、
以下のテストコードを記述しましたが、変わらず同じエラーが出ました。
ruby
1 # 削除の依存関係 2 describe "dependent: destoy" do 3 # 削除すると、紐づく店舗も全て削除されること 4 it "destroys all posts when deleted" do 5 post_user = FactoryBot.create(:user) 6 2.times { FactoryBot.create(:post, user: post_user) } 7 expect { post_user.destroy }.to change(post_user.posts, :count).by(-2) 8 end 9 end
②2.timesを辞めて、postは1回のみcreateするようにして-1されるかを見るように修正しても、
全く同じエラーが出るままでした。
③該当テストケースのitの中でPostをcreateする記述に変えると、下記のエラーが出るようになりました。
<user_spec.rb>
ruby
1 # 削除の依存関係 2 describe "dependent: destoy" do 3 # 削除すると、紐づく店舗も全て削除されること 4 it "destroys all posts when deleted" do 5 post_user = FactoryBot.create(:user) 6 Post.create(title: "1"*6, description:"1"*10, rest_type:"1", prefecture_code:"1", user_id:post_user.id) 7 expect { post_user.destroy }.to change(post_user.posts, :count).by(-1) 8 end
<エラー内容>
ruby
1 1) User dependent: destoy destroys all posts when deleted 2 Failure/Error: expect { post_user.destroy }.to change(post_user.posts, :count).by(-1) 3 expected `Post::ActiveRecord_Associations_CollectionProxy#count` to have changed by -1, but was changed by 0
⇒「ユーザを消しても、紐づく投稿が消えなかった」ということかと思いますが、
userのmodelには has_many :posts, dependent: :destroy
、postのモデルには belongs_to :user
と記述しています。
申し訳ありませんが、まだRspecを学習し始めたばかりなこともあり、
基本的な箇所で見逃している点等あるかもしれないです。
不明点や追加必要な情報ございましたら、ご教示いただけますと幸いです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー