Sha256: a668c4a2814241cb12d071e79461c3a11aa0e1321b9001c5e531110683503f8a

Contents?: true

Size: 1.33 KB

Versions: 7

Compression:

Stored size: 1.33 KB

Contents

require 'spec_helper'

describe "bundle 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
    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
      job = jobs.shift
      job.call
    end
    expect(result).to eq(:bar)
    expect(attempts).to eq(2)
  end

  it "raises the last error" do
    error    = Bundler::GemfileNotFound
    attempts = 0
    expect {
      Bundler::Retry.new(nil, nil, 3).attempt do
        attempts += 1
        raise error
      end
    }.to raise_error(error)
    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

7 entries across 7 versions & 1 rubygems

Version Path
bundler-1.5.3 spec/bundler/retry_spec.rb
bundler-1.6.0.pre.1 spec/bundler/retry_spec.rb
bundler-1.5.2 spec/bundler/retry_spec.rb
bundler-1.5.1 spec/bundler/retry_spec.rb
bundler-1.5.0 spec/bundler/retry_spec.rb
bundler-1.5.0.rc.2 spec/bundler/retry_spec.rb
bundler-1.5.0.rc.1 spec/bundler/retry_spec.rb