summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-01-24 01:09:36 +0900
committerHomu <homu@barosl.com>2016-01-24 01:09:36 +0900
commitc193510e1be0f344dff6335d1bb00510c2d81cb1 (patch)
treeccf8a67ef09dedf0d9cecefaefe5c0f8aa9dd081
parenta2d40cdde33186ab3bdd42c5080321ae89218a7b (diff)
parent51ad73ac640925e59d532e4bf40aaf08dc477f12 (diff)
downloadbundler-c193510e1be0f344dff6335d1bb00510c2d81cb1.tar.gz
Auto merge of #4228 - RochesterinNYC:add-unit-tests-for-fetcher-base, r=segiddins
Add unit tests for abstract `Bundler::Fetcher::Base` class
-rw-r--r--spec/bundler/fetcher/base_spec.rb78
1 files changed, 78 insertions, 0 deletions
diff --git a/spec/bundler/fetcher/base_spec.rb b/spec/bundler/fetcher/base_spec.rb
new file mode 100644
index 0000000000..539d73b207
--- /dev/null
+++ b/spec/bundler/fetcher/base_spec.rb
@@ -0,0 +1,78 @@
+require "spec_helper"
+
+describe Bundler::Fetcher::Base do
+ let(:downloader) { double(:downloader) }
+ let(:remote) { double(:remote) }
+ let(:display_uri) { "http://sample_uri.com" }
+
+ class TestClass < described_class; end
+
+ subject { TestClass.new(downloader, remote, display_uri) }
+
+ describe "#initialize" do
+ context "with the abstract Base class" do
+ it "should raise an error" do
+ expect { described_class.new(downloader, remote, display_uri) }.to raise_error(RuntimeError, "Abstract class")
+ end
+ end
+
+ context "with a class that inherits the Base class" do
+ it "should set the passed attributes" do
+ expect(subject.downloader).to eq(downloader)
+ expect(subject.remote).to eq(remote)
+ expect(subject.display_uri).to eq("http://sample_uri.com")
+ end
+ end
+ end
+
+ describe "#remote_uri" do
+ let(:remote_uri_obj) { double(:remote_uri_obj) }
+
+ before { allow(remote).to receive(:uri).and_return(remote_uri_obj) }
+
+ it "should return the remote's uri" do
+ expect(subject.remote_uri).to eq(remote_uri_obj)
+ end
+ end
+
+ describe "#fetch_uri" do
+ let(:remote_uri_obj) { URI("http://rubygems.org") }
+
+ before { allow(subject).to receive(:remote_uri).and_return(remote_uri_obj) }
+
+ context "when the remote uri's host is rubygems.org" do
+ it "should create a copy of the remote uri with bundler.rubygems.org as the host" do
+ fetched_uri = subject.fetch_uri
+ expect(fetched_uri.host).to eq("bundler.rubygems.org")
+ expect(fetched_uri).to_not be(remote_uri_obj)
+ end
+ end
+
+ context "when the remote uri's host is not rubygems.org" do
+ let(:remote_uri_obj) { URI("http://otherhost.org") }
+
+ it "should return the remote uri" do
+ expect(subject.fetch_uri).to eq(URI("http://otherhost.org"))
+ end
+ end
+
+ it "memoizes the fetched uri" do
+ expect(remote_uri_obj).to receive(:host).once
+ 2.times { subject.fetch_uri }
+ end
+ end
+
+ describe "#api_available?" do
+ before { allow(subject).to receive(:api_fetcher?).and_return(false) }
+
+ it "should return whether the api is available" do
+ expect(subject.api_available?).to eq(false)
+ end
+ end
+
+ describe "#api_fetcher?" do
+ it "should return false" do
+ expect(subject.api_fetcher?).to be_falsey
+ end
+ end
+end