1

ネストされたリソースがあるカピバラ RSPEC テストで問題が発生しました。これが私が受け取るエラーです:

1) 写真ページの写真パスへのアクセス FactoryGirl がレコードを作成した後に写真にアクセスできます ←[31m失敗/エラー:←[0m ←[31m mountain_photo_path(山、写真) にアクセスします←[0m

 ←[31mActiveRecord::RecordNotFound:←[0m
   ←[31mCouldn't find Photo with id=1 [WHERE "photos"."mountain_id" = 1]←[0m

←[36m # C:in find'←[0m ←[36m # ./app/controllers/photos_controller.rb:14:inshow'←[0m ←[36m # ./spec/requests/photo_pages_spec.rb:34:in `ブロック (3 レベル) in '←[0m

私のネストされたルートは次のとおりです。

  resources :mountains do
    resources :photos
  end

そして、RSPEC テスト内で以下をテストしています。

require 'spec_helper'

describe "Photo pages" do
    let(:user) { FactoryGirl.create(:user)}
    let(:region) { FactoryGirl.create(:region)}
    let(:mountain) {FactoryGirl.create(:mountain)}
    let(:photo) {FactoryGirl.create(:photo)}

    before { sign_in user }

    describe "visit mountain path" do
        it "can be visited after FactoryGirl create" do
            visit mountain_path(mountain)
            page.should have_selector('h1', text: "Breck Test")
        end
    it "has the correct region associated to it" do
        visit mountain_path(mountain)
        page.should have_selector('h4', text: "Rockies")
    end
    end


    describe "visit photo path" do
        it "Photo can be visited after FactoryGirl create records" do
            visit mountain_photo_path(mountain, photo) 
            page.should have_selector('title', text: photo.name)
        end
    end

end

FactoryGirl はすべてのレコードを正常に作成していると思います。写真への添付は CarrierWave を介して行われ、デバッグ後、これも正しく読み込まれていると考えられます。

include ActionDispatch::TestProcess

FactoryGirl.define do
  factory :user do
    first_name 'Test'
    last_name 'User'
    email 'example@example.com'
    password 'password1'
    password_confirmation 'password1'
    # required if the Devise Confirmable module is used
    confirmed_at Time.now
  end
  factory :region do
    name 'Rockies'
  end
  factory :mountain do
    name 'Breck Test'
    region {|a| a.association(:region)}
    description 'This is my testing mountain only'
  end
  factory :photo do 
    name 'My Photo Test'
    description 'My lovely description'
    mountain {|a| a.association(:mountain)}
    image { fixture_file_upload(Rails.root + 'spec/fixtures/files/breck.jpg', "image/jpeg")}
  end
end

ここにいるグループの知恵に大いに感謝します。ご協力いただきありがとうございます。今日は、この rspec コードでイライラする数時間を過ごしました。将来はもっと簡単になることを願っています。

4

1 に答える 1

0

あなたの問題は、 を作成してから を作成することですmountainphoto、それらは関連していません!

代わりにこれを行います:

require 'spec_helper'

describe "Photo pages" do
  let(:user) { FactoryGirl.create(:user)}
  let(:region) { FactoryGirl.create(:region)}
  let(:mountain) { FactoryGirl.create(:mountain)}
  let(:photo)    { FactoryGirl.create(:photo, mountain: mountain) }

  before { sign_in user }

  describe "visit photo path" do
    it "Photo can be visited after FactoryGirl create records" do
      visit mountain_photo_path(photo.mountain, photo) 
      page.should have_selector('title', text: photo.name)
    end
  end
end
于 2013-04-04T19:36:39.133 に答える