0

次のような Goliath + Grape アプリをテストしようとしています。

require 'em-synchrony/em-mongo'
require 'yajl/json_gem'
require 'goliath'
require 'grape'

class API < Grape::API
  version 'v1', :using => :path
  format :json

  resource 'categories' do
    # http://0.0.0.0:9000/v1/categories/
    get "/" do
      coll = env.mongo.collection('categories') #Connection Pool from Goliath ENV
      coll.find({})
    end
  end
end

class App < Goliath::API
  def response(env)
    API.call(env)
  end
end

これら 2 つのクラスは、app.rb という 1 つのファイルにあります。ruby ./app.rb -sv完全に機能している goliath アプリを起動しhttp://0.0.0.0:9000/v1/categories/ますが、より複雑なエンドポイントを作成する前に rspec が必要です。とにかく私が得る仕様を実行する

未定義のローカル変数またはメソッド「app」

私は取り除くことができません:

$ bundle exec rspec spec/api_spec.rb
FFFF

Failures:

  1) App App GET /v1/categories get several categories of repositories by name
     Failure/Error: get "/v1/categories"
     NameError:
       undefined local variable or method `app' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1::Nested_1:0x993eec4>
     # ./spec/api_spec.rb:9:in `block (4 levels) in <top (required)>'

api_spec は次のようになります。

require 'spec_helper'

describe App do
  include Rack::Test::Methods

  describe App do
    describe 'GET /v1/categories' do
      it 'get several categories of repositories by name' do
        get "/v1/categories"
        last_response.status.should == 200
        JSON.parse(last_response.body)["name"].should == "Ruby Web Frameworks"
      end
    end
  end
end

アップデート :

app メソッドを spec/api_spec.rb に追加:

def app
    App
end

別の種類のエラーが発生します:

  1) App App GET /v1/categories get several categories of repositories by name
     Failure/Error: get "/v1/categories"
     NoMethodError:
       undefined method `call' for App:Class
     # ./spec/api_spec.rb:13:in `block (4 levels) in <top (required)>'

アップデート

app メソッドから呼び出される API クラスを spec/api_spec.rb 内に追加します。

def app
  API
end

mongoを取得undefined methodする:

Failures:

  1) App App GET /v1/categories get several categories of repositories by name
     Failure/Error: get "/v1/categories"
     NoMethodError:
       undefined method `mongo' for #<Hash:0xad5ea58>
     # ./app.rb:14:in `block (2 levels) in <class:API>'
     # ./spec/api_spec.rb:13:in `block (4 levels) in <top (required)>'

coll = env.mongo.collection('categories')API クラスの内部を参照してください

4

3 に答える 3

3

私はついにgoliathtest_helperを使用してそれを機能させることができました。これは追跡目的であり、他の誰かに役立つことを願っています。

spec / spec_helper.rbに、goliathテストヘルパーとすべての依存関係を追加します。私の場合 :

require 'em-synchrony/em-http'
require 'goliath/test_helper'
require 'yajl/json_gem'

Goliath.env = :test

RSpec.configure do |c|
  c.include Goliath::TestHelper, :example_group => {
    :file_path => /spec\//
  }
end

spec/app_spec.rb内

require 'spec_helper'
require File.join(File.dirname(__FILE__), '../', 'app')

describe App do
  def config_file
    File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'app.rb'))
  end

  let(:api_options) { { :config => config_file } }

  it 'renders ' do
    with_api(App, api_options) do
      get_request(:path => '/v1/categories') do |c|
        resp = JSON.parse(c.response)
        categories = resp.map{|r|r['name']}
        categories.to_s.should =~ /Ruby Web Frameworks/
      end
    end
  end
end

Goliathアプリケーションのディレクトリツリーは、次のようになります。

lsoave@ubuntu:~/rails/github/GGM$ ls -l 
total 48
-rw-rw-r-- 1 lsoave lsoave  483 Feb 25 23:06 app.rb
-rw-rw-r-- 1 lsoave lsoave 6321 Feb 25 23:06 categories.json
drwxrwxr-x 2 lsoave lsoave 4096 Feb 25 23:06 config
-rw-rw-r-- 1 lsoave lsoave  381 Feb 25 23:06 Gemfile
-rw-rw-r-- 1 lsoave lsoave 2293 Feb 25 23:06 Gemfile.lock
-rw-rw-r-- 1 lsoave lsoave   59 Feb 21 20:37 Procfile
-rw-rw-r-- 1 lsoave lsoave  123 Feb 25 23:06 Rakefile
-rw-rw-r-- 1 lsoave lsoave 7003 Feb 21 20:37 README.md
-rw-rw-r-- 1 lsoave lsoave  238 Feb 25 23:06 README.mongoimport
drwxrwxr-x 2 lsoave lsoave 4096 Feb 25 23:23 spec
lsoave@ubuntu:~/rails/github/GGM$ 

ここで、configおよびspecサブディレクトリは次のようになります。

lsoave@ubuntu:~/rails/github/GGM$ ls -l config spec
config:
total 4
-rw-rw-r-- 1 lsoave lsoave 870 Feb 25 23:06 app.rb

spec:
total 11
-rw-rw-r-- 1 lsoave lsoave  777 Feb 25 23:06 app_spec.rb
-rw-rw-r-- 1 lsoave lsoave  218 Feb 25 23:06 spec_helper.rb
lsoave@ubuntu:~/rails/github/GGM$ 

メインのゴリアテアプリは私の最初の投稿と同じです:

require 'em-synchrony/em-mongo'
require 'yajl/json_gem'
require 'goliath'
require 'grape'

class API < Grape::API
  version 'v1', :using => :path
  format :json

  resource 'categories' do
    # http://0.0.0.0:9000/v1/categories/
    get "/" do
      coll = env.mongo.collection('categories') #Connection Pool from Goliath ENV
      coll.find({})
    end
  end
end

class App < Goliath::API
  def response(env)
    API.call(env)
  end
end

結局、preattyは単純です。さらに深く知りたい場合は、https://github.com/lgs/GGMをご覧ください。

于 2013-02-25T22:36:51.843 に答える
0

アプリのクラスを指定するには、テストでメソッドを提供する必要があると思います

def app
  App
end

アップデート

代わりに API クラスを試してください

def app
  API 
end
于 2013-02-23T15:11:24.923 に答える
0

他の POST 例を追加します。

require 'spec_helper'

describe V1::API do
  it "login" do
    with_api V1::Login do


      post_request(path: "/v1/login", :head => {'authorization' => HTTP_BASIC_HEADER }, :body =>{mobile: 18600112233}) do |async|

        async.response_header.status.should == 201
        async.response.should == { mobile: '18600112233' }.to_json
      end
    end
  end

end
于 2014-03-16T07:59:08.537 に答える