3

Yehuda Katz の著書Rails 3 in Actionの第 13 章で提供されているTicketeeの例に従って、Ruby プロジェクト用の JSON API を作成しようとしています。353 ページで説明されている RSpec テストを私の環境に合わせたものを次に示します。

# /spec/api/v1/farms_spec.rb # Reduced to the minimum code.
require "spec_helper"
include ApiHelper # not sure if I need this

describe "/api/v1/farms", type: :api do
    context "farms viewable by this user" do
        let(:url) { "/api/v1/farms" }
        it "json" do
            get "#{url}.json"
            assert last_response.ok?
        end
    end
end

テストを実行すると、次の出力が得られます...

$ rspec spec/api/v1/farms_spec.rb
No DRb server is running. Running in local process instead ...
Run options: include {:focus=>true}

All examples were filtered out; ignoring {:focus=>true}
  1) /api/v1/farms farms viewable by this user json
     Failure/Error: assert last_response.ok?
     Rack::Test::Error:
       No response yet. Request a page first.
     # ./spec/api/v1/farms_spec.rb:30:in `block (3 levels) in <top (required)>'

Finished in 2.29 seconds
1 example, 1 failure

これが私が使用するヘルパーモジュールです...

# /support/api/helper.rb
module ApiHelper
    include Rack::Test::Methods

    def app
        Rails.application
    end
end

RSpec.configure do |config|
    config.include ApiHelper, type: :api
end

: この質問はRspec と Rack::Test を使用した REST-API 応答のテストに似ています。

4

1 に答える 1

5

Rspec-railstype: :apiは describe ブロックのパラメーターを無視しているようで、 /spec/api 内のすべてのスペックをリクエスト スペックとして扱います(こちらの章のリクエスト スペックを参照)。多分型パラメータは非推奨ですか?まだドキュメントが見つかりません..

type: :requestの代わりに使用すると、あなたの例を機能させることができますtype: :api。app-method もデフォルトで RequestExampleGroup に含まれているため削除しました。

# /support/api/helper.rb
module ApiHelper
    include Rack::Test::Methods
end

RSpec.configure do |config|
    config.include ApiHelper, type: :request
end

そして仕様:

#/spec/api/v1/farms_spec.rb 
require "spec_helper"

describe "/api/v1/farms" do
    context "farms viewable by this user" do
        let(:url) { "/api/v1/farms" }
        it "json" do
            get "#{url}.json"
            assert last_response.ok?
        end
    end
end
于 2012-12-23T23:13:43.613 に答える