2017-09-22 2 views
0

다형성 설명 작성 동작을 테스트하려고하는데 rspec에서 경로 일치 오류가 발생하지 않습니다.Rspec 경로가 다형성과 일치하지 않습니다.

class CommentsController < ApplicationController 
    before_action :authenticate_user! 

    def create 
    @comment = @commentable.comments.new(comment_params) 
    @comment.user_id = current_user.id 
    @comment.save 
    redirect_to :back, notice: "Your comment was successfully posted." 
    end 

    private 
    def comment_params 
    params.require(:comment).permit(:body) 
    end 
end 

는 RSpec에 내가 테스트를 위해이 방법을 사용하고

describe "POST #create" do 
    context "with valid attributes" do 
     before do 
     @project = FactoryGirl.create(:project) 
     @comment_attr = FactoryGirl.build(:comment).attributes 
     end 

     it "creates a new comment" do 
     expect{ 
      post :create, params: { project_id: @project, comment: @comment_attr } 
     }.to change(Comment, :count).by(1) 
     end 
    end 
    end 

내 다른 컨트롤러에서 동작을 만들고 거기에 좋은 모든이지만, 여기에 몇 가지 이유가에서 오류가 발생합니다. 나는 내 오류가 줄을 어디 params 전달 작업을 게시 할 수 있지만 오류가 표시되지 않습니다 생각합니다.

UPDATE

resources :projects do 
    resources :comments, module: :projects 
    resources :tasks do 
     resources :comments, module: :tasks 
    end 
    end 

UPDATE 2

Failure/Error: post :create, params: { project_id: @project, commentable: @project, comment: @comment_attr }

ActionController::UrlGenerationError: No route matches {:action=>"create", :comment=>{"id"=>nil, "commentable_type"=>nil, "commentable_id"=>nil, "user_id"=>nil, "body"=>"MyText", "created_at"=>nil, "updated_at"=>nil, "attachment"=>nil}, :commentable=>#, :controller=>"comments", :project_id=>#}

+0

컨트롤러에'@ commentable '을 (를) 설정하는 것은 무엇입니까? 'routes.rb'를 보면 나머지 발췌 한 테스트 파일 외에도 도움이 될 것입니다. –

+0

@ JimVanFleet이 내 질문을 경로로 업데이트했습니다. Commentable 프로젝트 또는 작업이지만 commentable 프로젝트 때 대/소문자를 테스트하려고합니다. –

+1

나는 당신의 의도를 이해하지만 위의 내용을 토대로'@ commentable'은'nil'입니다. 그것은'ApplicationController'에서 도우미입니까? 테스트 로그 또는 500에서 404를 얻고 있습니까? –

답변

0

나는 컨트롤러 네임 스페이스는 사용자가 정의하는 경로와 일치하지 않는 것이라고 생각합니다. 컨트롤러는 중첩되지 않고 (CommentsController) 해당 경로가 중첩되고 모듈 projects 내부에도 정의됩니다. 경로를 중첩하면 ActionDispatch가 찾고있는 컨트롤러에 영향을 미치지 않습니다. 그러나 경로 모듈을 정의하면 모듈 네임 스페이스 내부에 컨트롤러가 있어야합니다. 귀하의 경우에는 Projects::CommentsControllerTasks::CommentsController이됩니다. 자세한 내용은 "2.6 Controller Namespaces and Routing" of "Rails Routing from the Outside In"을 참조하십시오.

새로운 레일스 프로젝트에 경로를 추가하고 rails routes을 실행했습니다. 출력은 다음과 같습니다

       Prefix Verb URI Pattern     Controller#Action 
    project_comments GET /projects/:project_id/comments(.:format) projects/comments#index 
         POST /projects/:project_id/comments(.:format) projects/comments#create 
         ... 

당신은 그에 중 프로젝트/작업 공간에서 내부에 노선

resources :projects do 
    resources :comments 
    resources :tasks do 
    resources :comments 
    end 
end 

또는 둥지에서 컨트롤러 모듈 정의를 제거 할 수 있습니다. 귀하의 의견에 다형성을 원한다면 첫 번째 옵션을 사용하는 것이 좋습니다.