2

私はRESTAPIをテストしていますが、問題は、ファクトリーガールを使用してビデオを作成し、2回目のテストの実行時にのみAPIから結果を取得することです。最初の実行後にビデオの作成をコメントアウトしても、2番目のビデオは作成されません。

これは、構成した場合にのみ機能します

config.use_transactional_fixtures = false

したがって、テストデータはデータベースに残ります。

マイスペックファイル

describe "API Version 1" do
  describe "Videos" do

let(:video) { FactoryGirl.create(:video) }
before { get api_v1_videos_path }

it "should work" do
  response.status.should be(200)
end

it "should return the video" do
    output = JSON.parse(response.body)
    output.should == video.title
end

end
end

最初の実行後のエラー

1) API Version 1 Videos should return the video
 Failure/Error: output.should == video.title
   expected: "Darknight"
        got: [] (using ==)
 # ./spec/requests/api/v1_spec.rb:15:in `block (3 levels) in <top (required)>'

2回目の実行後のエラー(エラーは発生しますが、結果が返されます)

1) API Version 1 Videos should return the video
 Failure/Error: output.should == video.title
   expected: "Darknight"
        got: [{"id"=>3, "title"=>"Darknight", "video"=>"thevideo.mp4", "stream"=>"playlist.m3u8", "poster"=>"/uploads/test/video/3_darknight/poster/testimage.jpg", "categories"=>[{"id"=>3, "title"=>"test category"}]}] (using ==)
   Diff:
   @@ -1,2 +1,7 @@
   -"Darknight"
   +[{"id"=>3,
   +  "title"=>"Darknight",
   +  "video"=>"thevideo.mp4",
   +  "stream"=>"playlist.m3u8",
   +  "poster"=>"/uploads/test/video/3_darknight/poster/testimage.jpg",
   +  "categories"=>[{"id"=>3, "title"=>"test category"}]}]
 # ./spec/requests/api/v1_spec.rb:15:in `block (3 levels) in <top (required)>'

ビデオが作成された後、rspecがAPIにアクセスしていないようですか?

4

1 に答える 1

1

以下の行を変更してください...

let(:video) { FactoryGirl.create(:video) }

let!(:video) { FactoryGirl.create(:video) }
于 2012-06-12T22:58:34.120 に答える