0

そこにはかなりの数の確かなチュートリアルがあり、私はこれを過去に機能させるのにそれほど問題はありませんでした。しかし、何時間も試した後、私は何かが欠けているに違いありません。

標準のインストール手順を完了し、sporkサーバーを起動しました。

Using RSpec
Preloading Rails environment
Loading Spork.prefork block...
Spork is ready and listening on 8989!

よさそうだ。

次に、新しいタブに移動して、仕様を実行します。

$ rspec spec

このコマンドは、ほんの一瞬だけ実行した後は何も返しません。そこで、sporkサーバーに戻って、何が起こったのかを確認し、次の情報を取得します。

Using RSpec
Preloading Rails environment
Loading Spork.prefork block...
Spork is ready and listening on 8989!
Running tests with args ["--color", "spec"]...
Exception encountered: #<DRb::DRbConnError: druby://localhost:56736 - #<Errno::ECONNREFUSED: Connection refused - connect(2)>>
backtrace:
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:736:in `rescue in block in open'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:730:in `block in open'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:729:in `each'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:729:in `open'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1191:in `initialize'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1171:in `new'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1171:in `open'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1087:in `block in method_missing'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1105:in `with_friend'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1086:in `method_missing'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1074:in `respond_to?'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/run_strategy/forking.rb:10:in `block in run'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/forker.rb:21:in `block in initialize'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/forker.rb:18:in `fork'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/forker.rb:18:in `initialize'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/run_strategy/forking.rb:9:in `new'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/run_strategy/forking.rb:9:in `run'
/Users/briancody/.rvm/gems/ruby-1.9.3-p0@scholastica/gems/spork-0.9.0.rc9/lib/spork/server.rb:48:in `run'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1548:in `perform_without_block'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1508:in `perform'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1586:in `block (2 levels) in main_loop'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1582:in `loop'
/Users/briancody/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/drb/drb.rb:1582:in `block in main_loop'
Done.

何らかの理由で、drb接続に失敗していますか?私は狂ったようにグーグルで検索しましたが、そこには何も役に立たないようです。

いくつかの可能な手がかり

  • 56736スイートを実行しようとするたびに、ポート(この場合)が変更されます
  • ルビー1.9.2とルビー1.9.3の両方で同じ結果が得られます
  • Mac(ユキヒョウ)を使用していて、ファイアウォールが無効になっています
  • まったく別のマック(ユキヒョウも)で試してみましたが、同じ結果になりました。
  • 私は最新バージョンのキュウリ、rspec、およびスポークを使用しています。
  • キュウリのスポークもセットアップしましたが、同じように失敗しました。

ご覧のとおり、私はしばらくの間それを叩き続けてきました。私のプロジェクトはたくさんの宝石を使っていますが、スポークがないのでテストは本当にひどいものになります。助けてください...

アップデート

これが私のspec_helper

require 'spork'

Spork.prefork do
  ENV["RAILS_ENV"] ||= 'test'
  require File.expand_path("../../config/environment", __FILE__)
  require 'rspec/rails'
  require "email_spec"
  require 'webmock/rspec'
  require 'vcr'
  require 'database_cleaner'

  include Devise::TestHelpers
  include EmailSpec::Helpers
  include EmailSpec::Matchers

  # Stub all updates to search indexes
  class Profile
    def update_tank_indexes ; end
    def delete_tank_indexes ; end
  end
  class Journal
    def update_tank_indexes ; end
  end

  # Apparently rspec doesn't understand <tt>main_app</tt> so stub it out.
  def main_app ; self ; end


  # Requires supporting ruby files with custom matchers and macros, etc,
  # in spec/support/ and its subdirectories.
  Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}

  RSpec.configure do |config|

    config.mock_with :rspec

    # If you're not using ActiveRecord, or you'd prefer not to run each of your
    # examples within a transaction, remove the following line or assign false
    # instead of true.
    config.use_transactional_fixtures = true
    config.extend VCR::RSpec::Macros

    # Always clean the database after running describe/context blocks to ensure a
    # consistent state. This is especially important when using the <tt>rspec-set</tt>
    # method. This method creates setup object once -- and only once -- proir to
    # running an entire describe/context block. In this way, it's similar to using
    # <tt>before(:all)</tt> except that <tt>set</tt> is better because:
    #
    #   * It automatically reloads the object before each example, making it much
    #     safer than before(:all) which can cause bugs if you're not careful.
    #   * It's lazily evaluated.
    #
    # You can read more at:
    #
    #   * eggsonbread.com/2010/05/25/speed-up-your-specs-with-set/
    #   * github.com/pcreux/rspec-set
    #
    # Note: This is not part of default configuration. Be sure to retain this snippet
    # when upgrading.
    #
    DatabaseCleaner.strategy = :truncation
    config.before(:all) do
      DatabaseCleaner.clean
    end
    config.after(:suite) do
      DatabaseCleaner.clean
    end
  end

end

Spork.each_run do
  # This code will be run each time you run your specs.
end
4

2 に答える 2

3

この問題のチケットを開きましたが、過去3.5か月間は何も発生していません:https ://github.com/sporkrb/spork/issues/133

更新:私は解決策を見つけ、そのチケットにすべてを報告しました。tl; dr:'always_validate_ssl_certifitcates'のGemfileエントリを変更して。を含めます:require => false

于 2011-11-19T06:07:24.107 に答える
1

スポーク0.8.5にロールバックして、それが機能するかどうかを確認できますか?動作することを確認しました。

于 2011-11-07T06:15:02.177 に答える