rails6.0でインスタグラム風のアプリを作っています。
投稿に対するコメント機能を下記のようにminitestで書こうとしたところ、コメントを投稿する部分で「undefined method `user_id' for nil:NilClass」とエラーが出てしまいます。
ruby
1require 'test_helper' 2 3class CommentsTest < ActionDispatch::IntegrationTest 4 def setup 5 @user = users(:user1) 6 end 7 8 test "create comment" do 9 log_in_as @user 10 get new_micropost_path 11 content = "micropost content" 12 picture = fixture_file_upload('test/fixtures/test.jpg', 'image/jpg') 13 post microposts_path, params: { micropost: { content: content, picture: picture } } 14 @micropost = Micropost.find(@user.microposts.first.id) 15 get micropost_path(@micropost.id) 16 assert_difference "Comment.count", 1 do 17 post comments_path, params: { comment: { content: "comment" } } 18 end 19 end 20end
commentのparams内にuser_idやmicropost_idが必要なのか?と思ったりもしましたが、やはり同じようにエラーとなりました。
本番環境では正常に動作しているのでアソシエーションの部分がテストでうまく書けていないと思うのですが、どのようにすべきでしょうか?
Commentクラスのコントローラとアソシエーションは以下のとおりです。
ruby
1class CommentsController < ApplicationController 2 before_action :logged_in_user, only: [:create, :destroy] 3 before_action :correct_user, only: :destroy 4 5 def create 6 @comment = current_user.comments.build(comment_params) 7 @micropost = Micropost.find_by(id: params[:micropost_id]) 8 @comment.micropost = @micropost 9 if @comment.save 10 redirect_to @micropost 11 else 12 @user = User.find_by(id: @micropost.user_id) 13 render 'microposts/show' 14 end 15 end 16 17 def destroy 18 @micropost = @comment.micropost 19 @comment.destroy 20 redirect_to @micropost 21 end 22 23 private 24 25 def comment_params 26 params.require(:comment).permit(:content) 27 end 28 29 def correct_user 30 @comment = current_user.comments.find_by(id: params[:id]) 31 redirect_to root_url unless current_user == @comment.user 32 end 33end
ruby
1class Comment < ApplicationRecord 2 belongs_to :user 3 belongs_to :micropost 4 default_scope -> { order(created_at: :desc) } 5 validates :user_id, presence: true 6 validates :micropost_id, presence: true 7 validates :content, presence: true, length: { maximum: 140 } 8end
ruby
1class User < ApplicationRecord 2 has_many :microposts, dependent: :destroy 3 has_many :comments, dependent: :destroy 4...
ruby
1class Micropost < ApplicationRecord 2 belongs_to :user 3 has_many :comments, dependent: :destroy 4...
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。