Sha256: 4eab2aa2cecbd7f93ff18470838b612e6fc86e259c3c136cf66a9ccf8132446e

Contents?: true

Size: 1.39 KB

Versions: 35

Compression:

Stored size: 1.39 KB

Contents

require 'spec_helper'

describe Bundler::Retry do
  it "return successful result if no errors" do
    attempts = 0
    result = Bundler::Retry.new(nil, nil, 3).attempt do
      attempts += 1
      :success
    end
    expect(result).to eq(:success)
    expect(attempts).to eq(1)
  end

  it "defaults to retrying twice" do
    attempts = 0
    expect {
      Bundler::Retry.new(nil).attempt do
        attempts += 1
        raise "nope"
      end
    }.to raise_error("nope")
    expect(attempts).to eq(3)
  end

  it "returns the first valid result" do
    jobs = [Proc.new{ raise "foo" }, Proc.new{ :bar }, Proc.new{ raise "foo" }]
    attempts = 0
    result = Bundler::Retry.new(nil, nil, 3).attempt do
      attempts += 1
      jobs.shift.call
    end
    expect(result).to eq(:bar)
    expect(attempts).to eq(2)
  end

  it "raises the last error" do
    errors = [StandardError, StandardError, StandardError, Bundler::GemfileNotFound]
    attempts = 0
    expect {
      Bundler::Retry.new(nil, nil, 3).attempt do
        attempts += 1
        raise errors.shift
      end
    }.to raise_error(Bundler::GemfileNotFound)
    expect(attempts).to eq(4)
  end

  it "raises exceptions" do
    error = Bundler::GemfileNotFound
    attempts = 0
    expect {
      Bundler::Retry.new(nil, error).attempt do
        attempts += 1
        raise error
      end
    }.to raise_error(error)
    expect(attempts).to eq(1)
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
bundler-1.7.15 spec/bundler/retry_spec.rb
bundler-1.7.14 spec/bundler/retry_spec.rb
bundler-1.7.13 spec/bundler/retry_spec.rb
bundler-1.7.12 spec/bundler/retry_spec.rb
bundler-1.7.11 spec/bundler/retry_spec.rb
bundler-1.7.10 spec/bundler/retry_spec.rb
bundler-1.7.9 spec/bundler/retry_spec.rb
bundler-1.7.8 spec/bundler/retry_spec.rb
bundler-1.7.7 spec/bundler/retry_spec.rb
bundler-1.7.6 spec/bundler/retry_spec.rb
bundler-1.6.9 spec/bundler/retry_spec.rb
bundler-1.7.5 spec/bundler/retry_spec.rb
bundler-1.6.8 spec/bundler/retry_spec.rb
bundler-1.7.4 spec/bundler/retry_spec.rb
bundler-1.6.7 spec/bundler/retry_spec.rb
bundler-1.7.3 spec/bundler/retry_spec.rb
bundler-1.6.6 spec/bundler/retry_spec.rb
bundler-1.7.2 spec/bundler/retry_spec.rb
bundler-1.7.1 spec/bundler/retry_spec.rb
bundler-1.7.1.pre.3 spec/bundler/retry_spec.rb