9

geocoder gem を使用していますが、このコードをどのファイルに貼り付ける必要があるかわかりません。教えて頂けますか ?

4

4 に答える 4

16

そのコードは、使用しているテスト フレームワークの SETUP 部分にある必要があります。

rspec を使用している場合は、次の場所に移動する必要があります。

describe Something do
 before(:all) do 
  Geocoder.configure(:lookup => :test)

  Geocoder::Lookup::Test.add_stub(
  "New York, NY", [
    {
      'latitude'     => 40.7143528,
      'longitude'    => -74.0059731,
      'address'      => 'New York, NY, USA',
      'state'        => 'New York',
      'state_code'   => 'NY',
      'country'      => 'United States',
      'country_code' => 'US'
    }
   ]
  )
 end
end
于 2013-09-05T15:15:16.967 に答える
11

Since you did not state your test framework, I'll give a specific answer.

I am using Cucumber and Rspec. While all of the above is true from @DevDude and @malandrina, here is a more complete tip for where the code can go, and how to also add entries for reverse geocoding (lat/lon --> address):

Put your stubs in the spec folder. I created an array of arrays so that I could add multiple "lookups" to be stubbed out:

spec/support/geocoder_stubs.rb
addresses = {
  "230 West 43rd St., New York City, NY 10036" => {
      'latitude' => 40.7573862,
      'longitude' => -73.9881256,
      'address' => '230 West 43rd St., New York City, NY 10036',
      'city' => 'New York City',
      'state' => 'New York',
      'state_code' => 'NY',
      'country' => 'United States',
      'country_code' => 'US'
  },
  [40.75747130000001, -73.9877319] => {
      'latitude' => 40.75747130000001,
      'longitude' => -73.9877319,
      'address' => '229 West 43rd St., New York City, NY 10036',
      'city' => 'New York City',
      'state' => 'New York',
      'state_code' => 'NY',
      'country' => 'United States',
      'country_code' => 'US'
  },
  "Worthington, OH" => {
    'latitude' => 40.09846115112305,
    'longitude' => -83.01747131347656,
    'address' => 'Worthington, OH',
    'city' => 'Worthington',
    'state' => 'Ohio',
    'state_code' => 'OH',
    'country' => 'United States',
    'country_code' => 'US'
  },
}

Geocoder.configure(:lookup => :test)
addresses.each { |lookup, results| Geocoder::Lookup::Test.add_stub(lookup, [results]) }

Reference your stubs in the Cucumber support folder:

features/support/env.rb
require Rails.root.join("spec/support/geocoder_stubs")

Hope this helps!

于 2014-12-30T01:20:05.223 に答える
3

このコード/config/initializers/geocoder.rbを の条件付きで入れていますRails.env.test?。@devDude が言及した上記のアプローチを試してみましたが、うまくいきましたが、誤って rspec テストからジオコーディングの実際の呼び出しが行われることを望んでいませんでした (多くのファイルでこれに依存する多くの仕様がありました) +このアプローチは、あらゆる種類のテスト フレームワーク (testunit や mintests、キュウリでも) で機能します。

これが私の/config/initializers/geocoder.rbファイルの外観です。

if Rails.env.test?
  Geocoder.configure(:lookup => :test)
  # Particular Look up
  Geocoder::Lookup::Test.add_stub(
    "New York, NY", [
      {
        'latitude'     => 40.7143528,
        'longitude'    => -74.0059731,
        'address'      => 'New York, NY, USA',
        'state'        => 'New York',
        'state_code'   => 'NY',
        'country'      => 'United States',
        'country_code' => 'US'
      }
    ]
  )
  #default stub
  Geocoder::Lookup::Test.set_default_stub(
    [
      {
        'latitude'     => 40.7143528,
        'longitude'    => -74.0059731,
        'address'      => 'New York, NY, USA',
        'state'        => 'New York',
        'state_code'   => 'NY',
        'country'      => 'United States',
        'country_code' => 'US'
      }
    ]
  )  
else
  Geocoder.configure(
    :timeout      => 3,           # geocoding service timeout (secs)
    :lookup       => :google,     # name of geocoding service (symbol)
    :language     => :en,         # ISO-639 language code
    :units     => :mi,       # :km for kilometers or :mi for miles
    :distances => :linear    # :spherical or :linear
  )
end
于 2016-01-24T09:06:14.083 に答える